function RulesComponentListBuilder::buildHeader
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\ControllerCode
public function buildHeader() {
$header['label'] = $this->t('Rules Component');
$header['plugin'] = $this->t('Type');
$header['description'] = $this->t('Description');
return $header + parent::buildHeader();
}