function MenuActiveTrail::lazyLoadItself

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/ProxyClass/Menu/MenuActiveTrail.php \Drupal\Core\ProxyClass\Menu\MenuActiveTrail::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

core/lib/Drupal/Core/ProxyClass/Menu/MenuActiveTrail.php, line 61

Class

MenuActiveTrail
Provides a proxy class for <a href="/api/drupal/core%21lib%21Drupal%21Core%21Menu%21MenuActiveTrail.php/class/MenuActiveTrail/11.x" title="Provides the default implementation of the active menu trail service." class="local">\Drupal\Core\Menu\MenuActiveTrail</a>.

Namespace

Drupal\Core\ProxyClass\Menu

Code

protected function lazyLoadItself() {
    if (!isset($this->service)) {
        $this->service = $this->container
            ->get($this->drupalProxyOriginalServiceId);
    }
    return $this->service;
}

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