You are here

public function Rev::getInfo in Workspace 8

Returns the element properties for this element.

Return value

array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.

Overrides ElementInterface::getInfo

File

src/Element/Rev.php, line 17

Class

Rev
Provides a render element for a items in a revision tree.

Namespace

Drupal\workspace\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#pre_render' => [
      [
        $class,
        'preRenderRev',
      ],
    ],
  ];
}