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

Breadcrumb

  1. Drupal Core 11.1.x

AccessCheckInterface.php

Namespace

Drupal\Core\Access

File

core/lib/Drupal/Core/Access/AccessCheckInterface.php

View source
<?php

namespace Drupal\Core\Access;

use Symfony\Component\Routing\Route;
use Drupal\Core\Routing\Access\AccessInterface as RoutingAccessInterface;

/**
 * An access check service determines access rules for particular routes.
 */
interface AccessCheckInterface extends RoutingAccessInterface {
    
    /**
     * Declares whether the access check applies to a specific route or not.
     *
     * @param \Symfony\Component\Routing\Route $route
     *   The route to consider attaching to.
     *
     * @return bool
     *   TRUE if this access checker applies to this route.
     */
    public function applies(Route $route);

}

Interfaces

Title Deprecated Summary
AccessCheckInterface An access check service determines access rules for particular routes.

API Navigation

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