public function BillingScheduleListBuilder::buildHeader in Commerce Recurring Framework 8
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/
BillingScheduleListBuilder.php, line 16
Class
- BillingScheduleListBuilder
- Defines the list builder for billing schedules.
Namespace
Drupal\commerce_recurringCode
public function buildHeader() {
$header['label'] = $this
->t('Billing schedule');
$header['type'] = $this
->t('Type');
return $header + parent::buildHeader();
}