public function UIkitAccordion::getInfo in UIkit Components 8.3
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/ UIkitAccordion.php, line 55 
Class
- UIkitAccordion
- Provides a render element for the Accordion component.
Namespace
Drupal\uikit_components\ElementCode
public function getInfo() {
  $class = get_class($this);
  return [
    '#items' => [],
    '#component_options' => [],
    '#attributes' => new Attribute(),
    '#pre_render' => [
      [
        $class,
        'preRenderUIkitAccordion',
      ],
    ],
    '#theme_wrappers' => [
      'uikit_accordion',
    ],
  ];
}