View source
<?php
namespace Drupal\ds\Controller;
use Drupal\Core\Config\StorageInterface;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
class FieldController extends ControllerBase implements ContainerInjectionInterface {
protected $storage;
protected $moduleHandler;
public function __construct(StorageInterface $storage, ModuleHandlerInterface $module_handler) {
$this->storage = $storage;
$this->moduleHandler = $module_handler;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('config.storage'), $container
->get('module_handler'));
}
public function fieldList() {
$custom_fields = $this->storage
->listAll('ds.field.');
if (!empty($custom_fields)) {
$rows = array();
foreach ($custom_fields as $config) {
$field_value = $this
->config($config)
->get();
$row = array();
$row[] = array(
'data' => array(
'#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 = array();
$operations['edit'] = array(
'title' => $this
->t('Edit'),
'url' => new Url('ds.manage_field', array(
'field_key' => $field_value['id'],
)),
);
$operations['delete'] = array(
'title' => $this
->t('Delete'),
'url' => new Url('ds.delete_field', array(
'field_key' => $field_value['id'],
)),
);
$this->moduleHandler
->alter('ds_field_operations', $operations, $field_value);
$row[] = array(
'data' => array(
'#type' => 'operations',
'#subtype' => 'ds',
'#links' => $operations,
),
);
$rows[] = $row;
}
$build = array(
'#theme' => 'table',
'#header' => array(
'Label',
'Type',
'Machine name',
'Entities',
'Operations',
),
'#rows' => $rows,
);
}
else {
$build = array(
'#markup' => $this
->t('No custom fields have been defined.'),
);
}
return $build;
}
public function manageRedirect($field_key) {
$config = $this
->config('ds.field.' . $field_key);
if ($field = $config
->get()) {
$url = new Url('ds.manage_' . $field['type'] . '_field', array(
'field_key' => $field_key,
));
if ($url
->toString()) {
return new RedirectResponse($url
->toString());
}
}
drupal_set_message($this
->t('Field not found'));
$url = new Url('ds.fields_list');
return new RedirectResponse($url
->toString());
}
}