You are here

interface PreprocessInterface in Express 8

Defines the interface for an object oriented preprocess plugin.

Hierarchy

Expanded class hierarchy of PreprocessInterface

All classes that implement PreprocessInterface

File

themes/contrib/bootstrap/src/Plugin/Preprocess/PreprocessInterface.php, line 14
Contains \Drupal\bootstrap\Plugin\Preprocess\PreprocessInterface.

Namespace

Drupal\bootstrap\Plugin\Preprocess
View source
interface PreprocessInterface {

  /**
   * Preprocess theme hook variables.
   *
   * @param array $variables
   *   The variables array, passed by reference (modify in place).
   * @param string $hook
   *   The name of the theme hook.
   * @param array $info
   *   The theme hook info array.
   */
  public function preprocess(array &$variables, $hook, array $info);

}

Members

Namesort descending Modifiers Type Description Overrides
PreprocessInterface::preprocess public function Preprocess theme hook variables. 1