public function StatusPropertyElement::getInfo in Apigee Edge 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/ StatusPropertyElement.php, line 55  
Class
- StatusPropertyElement
 - Provides a status property element.
 
Namespace
Drupal\apigee_edge\ElementCode
public function getInfo() {
  $class = get_class($this);
  return [
    '#theme' => 'status_property',
    '#value' => '',
    '#indicator_status' => '',
    '#pre_render' => [
      [
        $class,
        'preRenderStatusProperty',
      ],
    ],
  ];
}