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

Breadcrumb

  1. Drupal Core 11.1.x

RouteSubscriber.php

Same filename in this branch
  1. 11.1.x core/modules/block_content/src/Routing/RouteSubscriber.php
  2. 11.1.x core/modules/node/src/Routing/RouteSubscriber.php
  3. 11.1.x core/modules/field_ui/src/Routing/RouteSubscriber.php
  4. 11.1.x core/modules/views/src/EventSubscriber/RouteSubscriber.php
  5. 11.1.x core/modules/workspaces_ui/src/Routing/RouteSubscriber.php
  6. 11.1.x core/modules/config_translation/src/Routing/RouteSubscriber.php

Namespace

Drupal\media_library\Routing

File

core/modules/media_library/src/Routing/RouteSubscriber.php

View source
<?php

namespace Drupal\media_library\Routing;

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

/**
 * Subscriber for media library routes.
 *
 * @internal
 *   Tagged services are internal.
 */
class RouteSubscriber extends RouteSubscriberBase {
    
    /**
     * {@inheritdoc}
     */
    protected function alterRoutes(RouteCollection $collection) {
        // Add the media library UI access checks to the widget displays of the
        // media library view.
        if ($route = $collection->get('view.media_library.widget')) {
            $route->addRequirements([
                '_custom_access' => 'media_library.ui_builder:checkAccess',
            ]);
        }
        if ($route = $collection->get('view.media_library.widget_table')) {
            $route->addRequirements([
                '_custom_access' => 'media_library.ui_builder:checkAccess',
            ]);
        }
    }

}

Classes

Title Deprecated Summary
RouteSubscriber Subscriber for media library routes.

API Navigation

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