You are here

public function Table::getTranslatableProperties in YAML Form 8

Get translatable properties.

Return value

array An associative array containing translatable element properties.

Overrides YamlFormElementBase::getTranslatableProperties

File

src/Plugin/YamlFormElement/Table.php, line 38

Class

Table
Provides a 'table' element.

Namespace

Drupal\yamlform\Plugin\YamlFormElement

Code

public function getTranslatableProperties() {
  return array_merge(parent::getTranslatableProperties(), [
    'header',
  ]);
}