varbase_core-8.x-8.18/modules/varbase_update_helper/src/Routing/RouteSubscriber.php
modules/varbase_update_helper/src/Routing/RouteSubscriber.php
<?php
namespace Drupal\varbase_update_helper\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) {
if ($route = $collection->get('checklistapi.checklists.update_helper_checklist')) {
$route->setDefault('_title', 'Varbase update instructions');
}
// Always deny access to '/admin/config/development/update-helper/clear'.
if ($route = $collection->get('checklistapi.checklists.update_helper_checklist.clear')) {
$route->setRequirement('_access', 'FALSE');
}
}
}
