You are here

interface PrerenderInterface in Express 8

Defines the interface for an object oriented preprocess plugin.

Hierarchy

Expanded class hierarchy of PrerenderInterface

All classes that implement PrerenderInterface

File

themes/contrib/bootstrap/src/Plugin/Prerender/PrerenderInterface.php, line 14
Contains \Drupal\bootstrap\Plugin\Prerender\PrerenderInterface.

Namespace

Drupal\bootstrap\Plugin\Prerender
View source
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);

}

Members

Namesort descending Modifiers Type Description Overrides
PrerenderInterface::preRender public static function Pre-render render array element callback. 1