interface PreprocessInterface in Express 8
Defines the interface for an object oriented preprocess plugin.
Hierarchy
- interface \Drupal\bootstrap\Plugin\Preprocess\PreprocessInterface
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\PreprocessView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PreprocessInterface:: |
public | function | Preprocess theme hook variables. | 1 |