class RouteSubscriber in RNG - Events and Registrations 8.2
Same name in this branch
- 8.2 src/Routing/RouteSubscriber.php \Drupal\rng\Routing\RouteSubscriber
- 8.2 rng_debug/src/Routing/RouteSubscriber.php \Drupal\rng_debug\Routing\RouteSubscriber
Same name and namespace in other branches
- 8 src/Routing/RouteSubscriber.php \Drupal\rng\Routing\RouteSubscriber
- 3.x src/Routing/RouteSubscriber.php \Drupal\rng\Routing\RouteSubscriber
Dynamic RNG routes.
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\rng\Routing\RouteSubscriber
Expanded class hierarchy of RouteSubscriber
1 string reference to 'RouteSubscriber'
1 service uses RouteSubscriber
File
- src/
Routing/ RouteSubscriber.php, line 14
Namespace
Drupal\rng\RoutingView source
class RouteSubscriber extends RouteSubscriberBase {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityManagerInterface
*/
protected $entityManager;
/**
* The RNG event manager.
*
* @var \Drupal\rng\EventManagerInterface
*/
protected $eventManager;
/**
* Constructs a RouteSubscriber object.
*
* @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
* The entity manager.
* @param \Drupal\rng\EventManagerInterface $event_manager
* The RNG event manager.
*/
public function __construct(EntityManagerInterface $entity_manager, EventManagerInterface $event_manager) {
$this->entityManager = $entity_manager;
$this->eventManager = $event_manager;
}
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
$event_types = $this->eventManager
->getEventTypes();
foreach (array_keys($event_types) as $entity_type) {
$definition = $this->entityManager
->getDefinition($entity_type);
if ($canonical_path = $definition
->getLinkTemplate('canonical')) {
$manage_requirements = [
'_entity_access' => $entity_type . '.manage event',
'_entity_is_event' => 'TRUE',
];
$options = [];
// Option will invoke EntityConverter ParamConverter to upcast the
// entity in $canonical_path.
$options['parameters'][$entity_type]['type'] = 'entity:' . $entity_type;
$options_register = $options;
// Register tabs are not administrative.
$options['_admin_route'] = 'TRUE';
// Manage Event.
$route = new Route($canonical_path . '/event', [
'_form' => '\\Drupal\\rng\\Form\\EventSettingsForm',
'_title' => 'Manage event',
// Tell controller which parameter the event entity is stored.
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.event", $route);
// Access.
$route = new Route($canonical_path . '/event/access', [
'_form' => '\\Drupal\\rng\\Form\\EventAccessForm',
'_title' => 'Access',
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.access", $route);
// Reset access to default.
$route = new Route($canonical_path . '/event/access/reset', [
'_form' => '\\Drupal\\rng\\Form\\EventAccessResetForm',
'_title' => 'Reset access to default',
'event' => $entity_type,
], $manage_requirements + [
'_event_rule_reset' => 'TRUE',
], $options);
$collection
->add("rng.event.{$entity_type}.access.reset", $route);
// Messages.
$route = new Route($canonical_path . '/event/messages', [
'_form' => '\\Drupal\\rng\\Form\\MessageListForm',
'_title' => 'Messages',
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.messages", $route);
// Message add.
$route = new Route($canonical_path . '/event/messages/add', [
'_form' => '\\Drupal\\rng\\Form\\MessageActionForm',
'_title' => 'Add message',
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.messages.add", $route);
// Group list.
$route = new Route($canonical_path . '/event/groups', [
'_controller' => '\\Drupal\\rng\\Controller\\GroupController::listing',
'_title' => 'Groups',
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.group.list", $route);
// Group add.
$route = new Route($canonical_path . '/event/groups/add', [
'_controller' => '\\Drupal\\rng\\Controller\\GroupController::groupAdd',
'_title' => 'Add group',
'event' => $entity_type,
], $manage_requirements, $options);
$collection
->add("rng.event.{$entity_type}.group.add", $route);
// Register.
$route = new Route($canonical_path . '/register', [
'_controller' => '\\Drupal\\rng\\Controller\\RegistrationController::registrationAddPage',
'_title' => 'Register',
'event' => $entity_type,
], [
'_registration_add_access' => 'TRUE',
], $options_register);
$collection
->add("rng.event.{$entity_type}.register.type_list", $route);
// Register w/ Registration Type.
$options_register['parameters']['registration_type']['type'] = 'entity:registration_type';
$route = new Route($canonical_path . '/register/{registration_type}', [
'_controller' => '\\Drupal\\rng\\Controller\\RegistrationController::registrationAdd',
'_title_callback' => '\\Drupal\\rng\\Controller\\RegistrationController::addPageTitle',
'event' => $entity_type,
], [
'_registration_add_access' => 'TRUE',
], $options_register);
$collection
->add("rng.event.{$entity_type}.register", $route);
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
protected | property | The entity type manager. | |
RouteSubscriber:: |
protected | property | The RNG event manager. | |
RouteSubscriber:: |
protected | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
RouteSubscriber:: |
public | function | Constructs a RouteSubscriber object. | |
RouteSubscriberBase:: |
public static | function | Returns an array of event names this subscriber wants to listen to. | 5 |
RouteSubscriberBase:: |
public | function | Delegates the route altering to self::alterRoutes(). | 1 |