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

Breadcrumb

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

function PathMatcher::getFrontPagePath

Gets the current front page path.

Return value

string The front page path.

2 calls to PathMatcher::getFrontPagePath()
PathMatcher::isFrontPage in core/lib/Drupal/Core/Path/PathMatcher.php
Checks if the current page is the front page.
PathMatcher::matchPath in core/lib/Drupal/Core/Path/PathMatcher.php
Checks if a path matches any pattern in a set of patterns.

File

core/lib/Drupal/Core/Path/PathMatcher.php, line 111

Class

PathMatcher
Provides a path matcher.

Namespace

Drupal\Core\Path

Code

protected function getFrontPagePath() {
    // Lazy-load front page config.
    if (!isset($this->frontPage)) {
        $this->frontPage = $this->configFactory
            ->get('system.site')
            ->get('page.front');
    }
    return $this->frontPage;
}

API Navigation

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