hospital_management-8.x-1.x-dev/web/themes/bootstrap/src/Plugin/Prerender/PrerenderInterface.php
web/themes/bootstrap/src/Plugin/Prerender/PrerenderInterface.php
<?php
namespace Drupal\bootstrap\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);
}
