PathMatcher::getFrontPagePath

protected PathMatcher::getFrontPagePath()

Gets the current front page path.

Return value

string The front page path.

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;
}
doc_Drupal
2016-10-29 09:33:27
Comments
Leave a Comment

Please login to continue.