You are here

public static function YamlFormExcludedColumns::getYamlFormExcludedHeader in YAML Form 8

Get header for the excluded tableselect element.

Return value

array An array container the header for the excluded tableselect element.

Overrides YamlFormExcludedBase::getYamlFormExcludedHeader

File

src/Element/YamlFormExcludedColumns.php, line 15

Class

YamlFormExcludedColumns
Provides a form element for form excluded columns (submission field and elements).

Namespace

Drupal\yamlform\Element

Code

public static function getYamlFormExcludedHeader() {
  return [
    t('Title'),
    t('Name'),
    t('Date type/Element type'),
  ];
}