c1197c03bfbb56e89db5f083aebe2723a6be19f9
[yaffs-website] / web / themes / contrib / bootstrap / src / Plugin / Prerender / PrerenderInterface.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\bootstrap\Plugin\Prerender\PrerenderInterface.
5  */
6
7 namespace Drupal\bootstrap\Plugin\Prerender;
8
9 /**
10  * Defines the interface for an object oriented preprocess plugin.
11  *
12  * @ingroup plugins_prerender
13  */
14 interface PrerenderInterface {
15
16   /**
17    * Pre-render render array element callback.
18    *
19    * @param array $element
20    *   The render array element.
21    *
22    * @return array
23    *   The modified render array element.
24    */
25   public static function preRender(array $element);
26
27 }