public function FieldController::fieldList in Display Suite 8.4
Same name and namespace in other branches
- 8.2 src/Controller/FieldController.php \Drupal\ds\Controller\FieldController::fieldList()
- 8.3 src/Controller/FieldController.php \Drupal\ds\Controller\FieldController::fieldList()
Builds a list of fields.
1 string reference to 'FieldController::fieldList'
File
- src/
Controller/ FieldController.php, line 58
Class
- FieldController
- Route controller fields.
Namespace
Drupal\ds\ControllerCode
public function fieldList() {
$custom_fields = $this->storage
->listAll('ds.field.');
if (!empty($custom_fields)) {
$rows = [];
foreach ($custom_fields as $config) {
$field_value = $this
->config($config)
->get();
$row = [];
$row[] = [
'data' => [
'#plain_text' => $field_value['label'],
],
];
$row[] = isset($field_value['type_label']) ? $field_value['type_label'] : $this
->t('Unknown');
$row[] = $field_value['id'];
$row[] = ucwords(str_replace('_', ' ', implode(', ', $field_value['entities'])));
$operations = [];
$operations['edit'] = [
'title' => $this
->t('Edit'),
'url' => new Url('ds.manage_field', [
'field_key' => $field_value['id'],
]),
];
$operations['delete'] = [
'title' => $this
->t('Delete'),
'url' => new Url('ds.delete_field', [
'field_key' => $field_value['id'],
]),
];
$this->moduleHandler
->alter('ds_field_operations', $operations, $field_value);
$row[] = [
'data' => [
'#type' => 'operations',
'#subtype' => 'ds',
'#links' => $operations,
],
];
$rows[] = $row;
}
$build = [
'#theme' => 'table',
'#header' => [
'Label',
'Type',
'Machine name',
'Entities',
'Operations',
],
'#rows' => $rows,
];
}
else {
$build = [
'#markup' => $this
->t('No custom fields have been defined.'),
];
}
return $build;
}