onlyone-8.x-1.x-dev/src/Routing/RouteSubscriber.php
src/Routing/RouteSubscriber.php
<?php
namespace Drupal\onlyone\Routing;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Menu\LocalActionManager;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
/**
* Defines the RouteSubscriber class for the OnlyOne module.
*
* Implements a route subscriber to alter routes
* based on configuration settings.
*/
class RouteSubscriber extends RouteSubscriberBase {
/**
* The config factory.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* The local action manager instance.
*
* @var \Drupal\Core\Menu\LocalActionManager
*/
protected $localActionManager;
/**
* Constructor.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory.
* @param \Drupal\Core\Menu\LocalActionManager $local_action_manager
* The local action manager instance.
*/
public function __construct(ConfigFactoryInterface $config_factory, LocalActionManager $local_action_manager) {
$this->configFactory = $config_factory;
$this->localActionManager = $local_action_manager;
}
/**
* {@inheritdoc}
*/
protected function alterRoutes(RouteCollection $collection) {
// Cleaning the action link cache.
$this->localActionManager->clearCachedDefinitions();
// Removing the onlyone.add_page route if is not needed and exists.
if (!$this->configFactory->get('onlyone.settings')->get('onlyone_new_menu_entry') && $collection->get('onlyone.add_page')) {
$collection->remove('onlyone.add_page');
}
}
}
