public function ListImportables::buildHeader in Default Content 8
1 call to ListImportables::buildHeader()
File
- src/
ListImportables.php, line 22 - Contains \Drupal\defaultcontent\ListImportables.
Class
- ListImportables
- Converts a node to a config entity
Namespace
Drupal\defaultcontentCode
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;
}