
| Current Path : /var/www/html1/bebop-gmuend.de1/core/lib/Drupal/Core/Menu/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/bebop-gmuend.de1/core/lib/Drupal/Core/Menu/LocalActionInterface.php |
<?php
namespace Drupal\Core\Menu;
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Defines an interface for menu local actions.
*/
interface LocalActionInterface {
/**
* Get the route name from the settings.
*
* @return string
* The name of the route this action links to.
*/
public function getRouteName();
/**
* Returns the route parameters needed to render a link for the local action.
*
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match.
*
* @return array
* An array of parameter names and values.
*/
public function getRouteParameters(RouteMatchInterface $route_match);
/**
* Returns the weight for the local action.
*
* @return int
*/
public function getWeight();
/**
* Returns options for rendering a link for the local action.
*
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match.
*
* @return array
* An associative array of options.
*/
public function getOptions(RouteMatchInterface $route_match);
/**
* Returns the localized title to be shown for this action.
*
* Subclasses may add optional arguments like NodeInterface $node = NULL that
* will be supplied by the ControllerResolver.
*
* @return string
* The title to be shown for this action.
*
* @see \Drupal\Core\Menu\LocalActionManager::getTitle()
*/
public function getTitle();
}