RouteSubscriber.php in Book access 1.x
Namespace
Drupal\book_access\RoutingFile
src/Routing/RouteSubscriber.phpView source
<?php
/**
* @file
* Contains \Drupal\book_access\Routing\RouteSubscriber.
*/
namespace Drupal\book_access\Routing;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
/**
* Listens to dynamic route events.
*/
class RouteSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
public function alterRoutes(RouteCollection $collection) {
/**
* @FIXME
* Parts of your hook_menu_alter() logic should be moved in here. You should NOT
* use this method to define new routes -- read the documentation at
* https://www.drupal.org/node/2122201 to learn how to define dynamic routes --
* but to alter existing ones.
*/
}
}
Classes
Name | Description |
---|---|
RouteSubscriber | Listens to dynamic route events. |