You are here

public function FeedbackMessageTypeListBuilder::buildHeader in Feedback 3.x

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListBuilder::buildHeader

See also

\Drupal\Core\Entity\EntityListBuilder::render()

File

src/FeedbackMessageTypeListBuilder.php, line 16

Class

FeedbackMessageTypeListBuilder
Provides a listing of Feedback message type entities.

Namespace

Drupal\feedback

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Feedback message type');
  $header['id'] = $this
    ->t('Machine name');
  return $header + parent::buildHeader();
}