ControllerInterface.php in Render cache 7.2
File
src/RenderCache/Controller/ControllerInterface.php
View source
<?php
namespace Drupal\render_cache\RenderCache\Controller;
interface ControllerInterface {
public function getContext();
public function setContext(array $context);
public function view(array $objects);
public function viewPlaceholders(array $objects);
public static function renderPlaceholders(array $args);
}
Interfaces
Name |
Description |
ControllerInterface |
Interface to describe how RenderCache controller plugin objects are implemented. |