You are here

public function CaptchaPointListBuilder::buildHeader in CAPTCHA 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/Entity/Controller/CaptchaPointListBuilder.php, line 16

Class

CaptchaPointListBuilder
Builds the list of capture points for the captcha point form.

Namespace

Drupal\captcha\Entity\Controller

Code

public function buildHeader() {
  $header['form_id'] = $this
    ->t('Captcha Point form ID');
  $header['captcha_type'] = $this
    ->t('Captcha Point challenge type');
  return $header + parent::buildHeader();
}