RouteSubscriber.php in Open Social 10.2.x
Same filename in this branch
- 10.2.x modules/custom/social_language/src/Routing/RouteSubscriber.php
- 10.2.x modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_private_message/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_content_block/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_post/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_group/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_topic/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_user/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_event/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_content_report/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_core/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_comment/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_post/modules/social_post_album/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_group/modules/social_group_default_route/src/RouteSubscriber/RouteSubscriber.php
- 10.2.x modules/social_features/social_group/modules/social_group_invite/src/Routing/RouteSubscriber.php
- 10.2.x modules/social_features/social_event/modules/social_event_managers/src/EventSubscriber/RouteSubscriber.php
- 10.2.x modules/social_features/social_event/modules/social_event_invite/src/Routing/RouteSubscriber.php
Same filename and directory in other branches
- 8.9 modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
- 8.8 modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
- 10.3.x modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
- 10.0.x modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
- 10.1.x modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.php
Namespace
Drupal\social_ajax_comments\RoutingFile
modules/custom/social_ajax_comments/src/Routing/RouteSubscriber.phpView source
<?php
namespace Drupal\social_ajax_comments\Routing;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
/**
* Listens to the dynamic route events.
*/
class RouteSubscriber extends RouteSubscriberBase {
/**
* {@inheritdoc}
*/
public function alterRoutes(RouteCollection $collection) {
// Replace "ajax_comments.cancel" with our implementation.
// We need this custom implementation because we need to remove and invoke
// additional ajax commands due to our theme.
if ($route = $collection
->get('ajax_comments.cancel')) {
$defaults = $route
->getDefaults();
$defaults['_controller'] = '\\Drupal\\social_ajax_comments\\Controller\\AjaxCommentsController::socialCancel';
$route
->setDefaults($defaults);
}
// Replace "ajax_comments.add" with our implementation.
// We need this custom implementation because we don't use reply on a reply
// the same way as comments do. We use reply on a reply by using the normal
// add form with a mention. Therefor we need to override the message display
// so ajax comments understands where to put the status message.
if ($route = $collection
->get('ajax_comments.add')) {
$defaults = $route
->getDefaults();
$defaults['_controller'] = '\\Drupal\\social_ajax_comments\\Controller\\AjaxCommentsController::socialAdd';
$route
->setDefaults($defaults);
}
}
}
Classes
Name | Description |
---|---|
RouteSubscriber | Listens to the dynamic route events. |