getAdditionalBefore method

The getAdditionalBefore method is used to retrieve set of values that loaded through loadCss method with $utype value equal to "before".

Basic Usage

Here is the basic usage for getAdditionalBefore method from SENE_Controller class.

$this->getAdditionalBefore(): void

Parameters

This method does not require any parameter.

Example Usage

Usually this method called inside a layout file. Here is the basic example for getAdditionalBefore method that implemented on col-1.php layout file.

<!DOCTYPE html>
<html>
<head>
  ...
  <?php $this->getAdditionalBefore(); ?>
  ...
</head>
<body>
  ...
</body>
</html>