bootstrap-8.x-3.23/src/Plugin/Prerender/PrerenderInterface.php
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); }