function LocalTaskManager::getTitle
Gets the title for a local task.
Parameters
\Drupal\Core\Menu\LocalTaskInterface $local_task: A local task plugin instance to get the title for.
Return value
string The localized title.
Overrides LocalTaskManagerInterface::getTitle
1 call to LocalTaskManager::getTitle()
- LocalTaskManager::getTasksBuild in core/lib/ Drupal/ Core/ Menu/ LocalTaskManager.php 
- Gets the render array for all local tasks.
File
- 
              core/lib/ Drupal/ Core/ Menu/ LocalTaskManager.php, line 170 
Class
- LocalTaskManager
- Provides the default local task manager using YML as primary definition.
Namespace
Drupal\Core\MenuCode
public function getTitle(LocalTaskInterface $local_task) {
  $controller = [
    $local_task,
    'getTitle',
  ];
  $request = $this->requestStack
    ->getCurrentRequest();
  $arguments = $this->argumentResolver
    ->getArguments($request, $controller);
  return call_user_func_array($controller, $arguments);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
