Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Preprocess / PreprocessInterface.php
1 <?php
2
3 namespace Drupal\bootstrap\Plugin\Preprocess;
4
5 /**
6  * Defines the interface for an object oriented preprocess plugin.
7  *
8  * @ingroup plugins_preprocess
9  */
10 interface PreprocessInterface {
11
12   /**
13    * Preprocess theme hook variables.
14    *
15    * @param array $variables
16    *   The variables array, passed by reference (modify in place).
17    * @param string $hook
18    *   The name of the theme hook.
19    * @param array $info
20    *   The theme hook info array.
21    */
22   public function preprocess(array &$variables, $hook, array $info);
23
24 }