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; /** * Defines an interface for tour items. * * @see \Drupal\tour\Annotation\Tip * @see \Drupal\tour\TipPluginBase * @see \Drupal\tour\TipPluginManager * @see plugin_api */ interface TipPluginInterface { /** * Returns id of the tip. * * @return string * The id of the tip. */ public function id(); /** * Returns label of the tip. * * @return string * The label of the tip. */ public function getLabel(); /** * Returns weight of the tip. * * @return string * The weight of the tip. */ public function getWeight(); /** * Returns an array of attributes for the tip wrapper. * * @return array * An array of classes and values. */ public function getAttributes(); /** * Used for returning values by key. * * @var string * Key of the value. * * @return string * Value of the key. */ public function get($key); /** * Used for returning values by key. * * @var string * Key of the value. * * @var string * Value of the key. */ public function set($key, $value); /** * Returns a renderable array. * * @return array * A renderable array. */ public function getOutput(); }