function PathMatcher::getFrontPagePath

Same name in other branches
  1. 9 core/lib/Drupal/Core/Path/PathMatcher.php \Drupal\Core\Path\PathMatcher::getFrontPagePath()
  2. 8.9.x core/lib/Drupal/Core/Path/PathMatcher.php \Drupal\Core\Path\PathMatcher::getFrontPagePath()
  3. 11.x core/lib/Drupal/Core/Path/PathMatcher.php \Drupal\Core\Path\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
PathMatcher::matchPath in core/lib/Drupal/Core/Path/PathMatcher.php

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.