public LocalActionManager::getTitle(LocalActionInterface $local_action)
Gets the title for a local action.
Parameters
\Drupal\Core\Menu\LocalActionInterface $local_action: An object to get the title from.
Return value
string The title (already localized).
Throws
\BadMethodCallException If the plugin does not implement the getTitle() method.
Overrides LocalActionManagerInterface::getTitle
File
- core/lib/Drupal/Core/Menu/LocalActionManager.php, line 151
Class
- LocalActionManager
- Provides the default local action manager using YML as primary definition.
Namespace
Drupal\Core\Menu
Code
1 2 3 4 5 | public function getTitle(LocalActionInterface $local_action ) { $controller = array ( $local_action , 'getTitle' ); $arguments = $this ->controllerResolver->getArguments( $this ->requestStack->getCurrentRequest(), $controller ); return call_user_func_array( $controller , $arguments ); } |
Please login to continue.