You are here

PrerenderInterface.php in Express 8

File

themes/contrib/bootstrap/src/Plugin/Prerender/PrerenderInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\bootstrap\Plugin\Prerender\PrerenderInterface.
 */
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);

}

Interfaces

Namesort descending Description
PrerenderInterface Defines the interface for an object oriented preprocess plugin.