You are here

public function PardotContactFormMapListBuilder::buildHeader in Pardot Integration 8

Builds the header row for the entity listing.

Return value

array A render array structure of header strings.

Overrides EntityListBuilder::buildHeader

File

src/Controller/PardotContactFormMapListBuilder.php, line 23

Class

PardotContactFormMapListBuilder
Provides a listing of Pardot Contact Form Map entities.

Namespace

Drupal\pardot\Controller

Code

public function buildHeader() {
  $header['label'] = $this
    ->t('Map Label');
  $header['contact_form_id'] = $this
    ->t('Contact Form ID');
  return $header + parent::buildHeader();
}