You are here

public static function WebformExcludedColumns::getWebformExcludedHeader in Webform 6.x

Same name and namespace in other branches
  1. 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\Element

Code

public static function getWebformExcludedHeader() {
  return [
    'title' => t('Title'),
    'name' => t('Name'),
    'type' => t('Date type/Element type'),
  ];
}