public static function YamlFormExcludedBase::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.
1 call to YamlFormExcludedBase::getYamlFormExcludedHeader()
- YamlFormExcludedBase::processYamlFormExcluded in src/
Element/ YamlFormExcludedBase.php - Processes a form elements form element.
1 method overrides YamlFormExcludedBase::getYamlFormExcludedHeader()
- YamlFormExcludedColumns::getYamlFormExcludedHeader in src/
Element/ YamlFormExcludedColumns.php - Get header for the excluded tableselect element.
File
- src/
Element/ YamlFormExcludedBase.php, line 120
Class
- YamlFormExcludedBase
- Provides a base form element for form excluded elements and columns.
Namespace
Drupal\yamlform\ElementCode
public static function getYamlFormExcludedHeader() {
return [
t('Title'),
t('Name'),
t('Type'),
];
}