Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

UpdateRouteSubscriber.php

Namespace

Drupal\update\Routing

File

core/modules/update/src/Routing/UpdateRouteSubscriber.php

View source
<?php

declare (strict_types=1);
namespace Drupal\update\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Drupal\Core\Site\Settings;
use Symfony\Component\Routing\RouteCollection;

/**
 * Route subscriber for Update module routes.
 */
class UpdateRouteSubscriber extends RouteSubscriberBase {
    
    /**
     * Constructs a new UpdateRouteSubscriber.
     */
    public function __construct(Settings $settings) {
    }
    
    /**
     * {@inheritdoc}
     */
    protected function alterRoutes(RouteCollection $collection) {
        if ($this->settings
            ->get('allow_authorize_operations', TRUE)) {
            return;
        }
        $routes = [
            'update.report_update',
            'update.module_update',
            'update.theme_update',
            'update.confirmation_page',
        ];
        foreach ($routes as $route) {
            $route = $collection->get($route);
            $route->setRequirement('_access', 'FALSE');
        }
    }

}

Classes

Title Deprecated Summary
UpdateRouteSubscriber Route subscriber for Update module routes.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal