function LocalTaskManager::getDiscovery
Overrides DefaultPluginManager::getDiscovery
File
- 
              core/
lib/ Drupal/ Core/ Menu/ LocalTaskManager.php, line 147  
Class
- LocalTaskManager
 - Provides the default local task manager using YML as primary definition.
 
Namespace
Drupal\Core\MenuCode
protected function getDiscovery() {
  if (!isset($this->discovery)) {
    $yaml_discovery = new YamlDiscovery('links.task', $this->moduleHandler
      ->getModuleDirectories());
    $yaml_discovery->addTranslatableProperty('title', 'title_context');
    $this->discovery = new ContainerDerivativeDiscoveryDecorator($yaml_discovery);
  }
  return $this->discovery;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.