You are here

public function PostListBuilder::buildHeader in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  2. 8 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  3. 8.2 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  4. 8.3 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  5. 8.4 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  6. 8.5 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  7. 8.6 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  8. 8.7 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  9. 8.8 modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  10. 10.3.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  11. 10.0.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()
  12. 10.1.x modules/social_features/social_post/src/PostListBuilder.php \Drupal\social_post\PostListBuilder::buildHeader()

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

modules/social_features/social_post/src/PostListBuilder.php, line 18

Class

PostListBuilder
Defines a class to build a listing of Post entities.

Namespace

Drupal\social_post

Code

public function buildHeader() {
  $header = [];
  $header['id'] = $this
    ->t('Post ID');
  $header['post'] = $this
    ->t('Post');
  $header['author'] = $this
    ->t('Author');
  $header['created'] = $this
    ->t('Created');
  $header['status'] = $this
    ->t('Status');
  return $header + parent::buildHeader();
}