public static function WebformExcludedColumns::getWebformExcludedHeader in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Element/WebformExcludedColumns.php \Drupal\webform\Element\WebformExcludedColumns::getWebformExcludedHeader()
Get header for the excluded tableselect element.
Return value
array An array container the header for the excluded tableselect element.
Overrides WebformExcludedBase::getWebformExcludedHeader
File
- src/
Element/ WebformExcludedColumns.php, line 17
Class
- WebformExcludedColumns
- Provides a webform element for webform excluded columns (submission field and elements).
Namespace
Drupal\webform\ElementCode
public static function getWebformExcludedHeader() {
return [
'title' => t('Title'),
'name' => t('Name'),
'type' => t('Date type/Element type'),
];
}