getAdditionalAfter method

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

Basic Usage

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

$this->getAdditionalAfter(): 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 getAdditionalAfter method that implemented on col-1.php layout file.

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