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

Breadcrumb

  1. Drupal Core 11.1.x
  2. AdminContext.php

function AdminContext::isAdminRoute

Determines whether the active route is an admin one.

Parameters

\Symfony\Component\Routing\Route $route: (optional) The route to determine whether it is an admin one. Per default this falls back to the route object on the active request.

Return value

bool Returns TRUE if the route is an admin one, otherwise FALSE.

File

core/lib/Drupal/Core/Routing/AdminContext.php, line 39

Class

AdminContext
Provides a helper class to determine whether the route is an admin one.

Namespace

Drupal\Core\Routing

Code

public function isAdminRoute(?Route $route = NULL) {
    if (!$route) {
        $route = $this->routeMatch
            ->getRouteObject();
        if (!$route) {
            return FALSE;
        }
    }
    return (bool) $route->getOption('_admin_route');
}

API Navigation

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