class RouteSubscriber in Smart Date 8.2
Same name and namespace in other branches
- 3.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
- 3.0.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
- 3.1.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
- 3.2.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
- 3.3.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
- 3.4.x src/Routing/RouteSubscriber.php \Drupal\smart_date\Routing\RouteSubscriber
Hierarchy
- class \Drupal\Core\Routing\RouteSubscriberBase implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- class \Drupal\smart_date\Routing\RouteSubscriber
Expanded class hierarchy of RouteSubscriber
1 string reference to 'RouteSubscriber'
1 service uses RouteSubscriber
File
- src/
Routing/ RouteSubscriber.php, line 8
Namespace
Drupal\smart_date\RoutingView source
class RouteSubscriber extends RouteSubscriberBase {
protected function alterRoutes(RouteCollection $collection) {
if ($route = $collection
->get('fullcalendar_view.update_event')) {
$route
->setDefault('_controller', "\\Drupal\\smart_date\\Controller\\FullCalendarController::updateEvent");
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RouteSubscriber:: |
protected | function |
Alters existing routes for a specific collection. Overrides RouteSubscriberBase:: |
|
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 |