You are here

public function RulesComponentListBuilder::buildHeader in Rules 8.3

Building the header and content lines for the contact list.

Calling the parent::buildHeader() adds a column for the possible actions and inserts the 'edit' and 'delete' links as defined for the entity type.

Overrides EntityListBuilder::buildHeader

File

src/Controller/RulesComponentListBuilder.php, line 63

Class

RulesComponentListBuilder
Defines a class to build a listing of RulesComponentConfig entities.

Namespace

Drupal\rules\Controller

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Rules Component');
  $header['plugin'] = $this
    ->t('Type');
  $header['description'] = $this
    ->t('Description');
  return $header + parent::buildHeader();
}