bootstrap3-1.0.1/src/Plugin/Prerender/PrerenderInterface.php
src/Plugin/Prerender/PrerenderInterface.php
<?php
namespace Drupal\bootstrap3\Plugin\Prerender;
/**
* Defines the interface for an object oriented preprocess plugin.
*
* @ingroup plugins_prerender
*/
interface PrerenderInterface {
/**
* Pre-render render array element callback.
*
* @param array $element
* The render array element.
*
* @return array
* The modified render array element.
*/
public static function preRender(array $element);
}
