You are here

public function AppCredentialElement::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/AppCredentialElement.php, line 35

Class

AppCredentialElement
Provides an app credential element.

Namespace

Drupal\apigee_edge\Element

Code

public function getInfo() {
  return [
    '#credential' => NULL,
    '#app' => NULL,
    '#theme' => 'app_credential',
  ];
}