public function ContainerInfoController::serviceList in Devel 8
Same name and namespace in other branches
- 8.3 src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::serviceList()
- 8.2 src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::serviceList()
- 4.x src/Controller/ContainerInfoController.php \Drupal\devel\Controller\ContainerInfoController::serviceList()
Builds the services overview page.
Return value
array A render array as expected by the renderer.
1 string reference to 'ContainerInfoController::serviceList'
File
- src/
Controller/ ContainerInfoController.php, line 65
Class
- ContainerInfoController
- Provides route responses for the container info pages.
Namespace
Drupal\devel\ControllerCode
public function serviceList() {
$headers = [
$this
->t('ID'),
$this
->t('Class'),
$this
->t('Alias'),
$this
->t('Operations'),
];
$rows = [];
if ($container = $this->kernel
->getCachedContainerDefinition()) {
foreach ($container['services'] as $service_id => $definition) {
$service = unserialize($definition);
$row['id'] = [
'data' => $service_id,
'class' => 'table-filter-text-source',
];
$row['class'] = [
'data' => isset($service['class']) ? $service['class'] : '',
'class' => 'table-filter-text-source',
];
$row['alias'] = [
'data' => array_search($service_id, $container['aliases']) ?: '',
'class' => 'table-filter-text-source',
];
$row['operations']['data'] = [
'#type' => 'operations',
'#links' => [
'devel' => [
'title' => $this
->t('Devel'),
'url' => Url::fromRoute('devel.container_info.service.detail', [
'service_id' => $service_id,
]),
],
],
];
$rows[$service_id] = $row;
}
ksort($rows);
}
$output['#attached']['library'][] = 'system/drupal.system.modules';
$output['filters'] = [
'#type' => 'container',
'#attributes' => [
'class' => [
'table-filter',
'js-show',
],
],
];
$output['filters']['text'] = [
'#type' => 'search',
'#title' => $this
->t('Search'),
'#size' => 30,
'#placeholder' => $this
->t('Enter service id, alias or class'),
'#attributes' => [
'class' => [
'table-filter-text',
],
'data-table' => '.devel-filter-text',
'autocomplete' => 'off',
'title' => $this
->t('Enter a part of the service id, service alias or class to filter by.'),
],
];
$output['services'] = [
'#type' => 'table',
'#header' => $headers,
'#rows' => $rows,
'#empty' => $this
->t('No services found.'),
'#sticky' => TRUE,
'#attributes' => [
'class' => [
'devel-service-list',
'devel-filter-text',
],
],
];
return $output;
}