You are here

public function ListImportables::buildHeader in Default Content 8

1 call to ListImportables::buildHeader()
ListImportables::render in src/ListImportables.php

File

src/ListImportables.php, line 22
Contains \Drupal\defaultcontent\ListImportables.

Class

ListImportables
Converts a node to a config entity

Namespace

Drupal\defaultcontent

Code

public function buildHeader() {
  $row = [
    'language' => $this
      ->t('Language'),
    'module' => $this
      ->t('Module'),
    'uuid' => $this
      ->t('Uuid'),
    'type' => $this
      ->t('Content type id'),
    'title' => $this
      ->t('Title'),
  ];
  return $row;
}