public function CategoryListController::buildHeader

Overrides Drupal\Core\Entity\EntityListController::buildHeader().

Overrides EntityListController::buildHeader

File

drupal/core/modules/contact/lib/Drupal/contact/CategoryListController.php, line 50

Class

CategoryListController
Provides a listing of contact categories.

Namespace

Drupal\contact

Code

public function buildHeader() {
  $row['category'] = t('Category');
  $row['recipients'] = t('Recipients');
  $row['selected'] = t('Selected');
  $row['operations'] = t('Operations');
  return $row;
}