TeamAppDevelRouteFixerSubscriber.php in Apigee Edge 8
Namespace
Drupal\apigee_edge_teams\RoutingFile
modules/apigee_edge_teams/src/Routing/TeamAppDevelRouteFixerSubscriber.phpView source
<?php
/**
* Copyright 2018 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
namespace Drupal\apigee_edge_teams\Routing;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
/**
* Fixes the entity routes generated by the Devel module.
*
* TeamAppByNameRouteAlterSubscriber adds another changes if needed.
*
* @see apigee_edge_teams_entity_type_alter()
* @see \Drupal\apigee_edge_teams\Routing\TeamAppByNameRouteAlterSubscriber
*/
final class TeamAppDevelRouteFixerSubscriber extends RouteSubscriberBase {
/**
* The module handler service.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
private $moduleHandler;
/**
* TeamAppDevelRouteFixerSubscriber constructor.
*
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler service.
*/
public function __construct(ModuleHandlerInterface $module_handler) {
$this->moduleHandler = $module_handler;
}
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
if ($this->moduleHandler
->moduleExists('devel')) {
foreach ($collection as $id => $route) {
if (strpos($id, 'entity.team_app.devel') === 0) {
$route
->setOption('_devel_entity_type_id', 'app');
}
}
}
}
}
Classes
Name | Description |
---|---|
TeamAppDevelRouteFixerSubscriber | Fixes the entity routes generated by the Devel module. |