ConfigPagesRoutes.php in Config Pages 8.3
File
src/Routing/ConfigPagesRoutes.php
View source
<?php
namespace Drupal\config_pages\Routing;
use Drupal\config_pages\Entity\ConfigPagesType;
use Symfony\Component\Routing\Route;
class ConfigPagesRoutes {
public function routes() {
$routes = [];
$types = ConfigPagesType::loadMultiple();
foreach ($types as $cp_type) {
$bundle = $cp_type
->id();
$label = $cp_type
->get('label');
$menu = $cp_type
->get('menu');
$path = isset($menu['path']) ? $menu['path'] : '';
if (!$path) {
$path = '/admin/structure/config_pages/' . $cp_type
->id();
}
$routes['config_pages.' . $bundle] = new Route($path, [
'_controller' => '\\Drupal\\config_pages\\Controller\\ConfigPagesController::classInit',
'config_pages_type' => $bundle,
'_title_callback' => '\\Drupal\\config_pages\\Controller\\ConfigPagesController::getPageTitle',
'label' => $label,
], [
'_permission' => 'edit config_pages entity+edit ' . $cp_type
->id() . ' config page entity',
], [
'_admin_route' => TRUE,
]);
}
return $routes;
}
}