public function Tabs::getInfo in Field Group: Easy Responsive Tabs to Accordion 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/ Tabs.php, line 18
Class
- Tabs
- Provides a render element for tabs.
Namespace
Drupal\field_group_easy_responsive_tabs\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#type' => 'field_group_easy_responsive_tabs',
'#theme_wrappers' => [
'field_group_easy_responsive_tabs',
],
'#process' => [
[
$class,
'processTabs',
],
],
];
}