You are here

public function Tablefield::getInfo in TableField 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/Tablefield.php, line 20

Class

Tablefield
Provides a form element for tabular data.

Namespace

Drupal\tablefield\Element

Code

public function getInfo() {
  $class = get_class($this);
  return [
    '#input' => TRUE,
    '#cols' => 5,
    '#rows' => 5,
    '#lock' => FALSE,
    '#locked_cells' => [],
    '#input_type' => 'textfield',
    '#rebuild' => FALSE,
    '#import' => FALSE,
    '#process' => [
      [
        $class,
        'processTablefield',
      ],
    ],
    '#theme_wrappers' => [
      'form_element',
    ],
    '#addrow' => FALSE,
    '#add_row' => 0,
  ];
}