RouteTestSubscriber.php in Zircon Profile 8
Same filename and directory in other branches
Contains \Drupal\router_test\RouteTestSubscriber.
Namespace
Drupal\router_testFile
core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.phpView source
<?php
/**
* @file
* Contains \Drupal\router_test\RouteTestSubscriber.
*/
namespace Drupal\router_test;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
/**
* Listens to the dynamic route event and add a test route.
*/
class RouteTestSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
$route = $collection
->get('router_test.6');
// Change controller method from test1 to test5.
$route
->setDefault('_controller', '\\Drupal\\router_test\\TestControllers::test5');
}
}
Classes
Name | Description |
---|---|
RouteTestSubscriber | Listens to the dynamic route event and add a test route. |