
| Current Path : /var/www/html1/testsite/web/themes/contrib/bootstrap/src/Plugin/Preprocess/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //var/www/html1/testsite/web/themes/contrib/bootstrap/src/Plugin/Preprocess/PreprocessInterface.php |
<?php
namespace Drupal\bootstrap\Plugin\Preprocess;
/**
* Defines the interface for an object oriented preprocess plugin.
*
* @ingroup plugins_preprocess
*/
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);
}