You are here

public function LanguageConfiguration::getInfo in Commerce Invoice 8.2

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/LanguageConfiguration.php, line 20

Class

LanguageConfiguration
Defines an element for language configuration.

Namespace

Drupal\commerce_invoice\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#tree' => TRUE,
    '#process' => [
      [
        $class,
        'processLanguageConfiguration',
      ],
    ],
  ];
}