public function BlockListController::listing in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/block/src/Controller/BlockListController.php \Drupal\block\Controller\BlockListController::listing()
Shows the block administration page.
Parameters
string|null $theme: Theme key of block list.
\Symfony\Component\HttpFoundation\Request $request: The current request.
Return value
array A render array as expected by drupal_render().
Overrides EntityListController::listing
1 string reference to 'BlockListController::listing'
- block.routing.yml in core/
modules/ block/ block.routing.yml - core/modules/block/block.routing.yml
File
- core/
modules/ block/ src/ Controller/ BlockListController.php, line 58 - Contains \Drupal\block\Controller\BlockListController.
Class
- BlockListController
- Defines a controller to list blocks.
Namespace
Drupal\block\ControllerCode
public function listing($theme = NULL, Request $request = NULL) {
$theme = $theme ?: $this
->config('system.theme')
->get('default');
if (!$this->themeHandler
->hasUi($theme)) {
throw new NotFoundHttpException();
}
return $this
->entityManager()
->getListBuilder('block')
->render($theme, $request);
}