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/workflows/src/ |
Upload File : |
<?php namespace Drupal\workflows; /** * An interface for state value objects. * * @see \Drupal\workflows\WorkflowTypeInterface::decorateState() * * @internal * The workflow system is currently experimental and should only be leveraged * by experimental modules and development releases of contributed modules. */ interface StateInterface { /** * Gets the state's ID. * * @return string * The state's ID. */ public function id(); /** * Gets the state's label. * * @return string * The state's label. */ public function label(); /** * Gets the state's weight. * * @return int * The state's weight. */ public function weight(); /** * Determines if the state can transition to the provided state ID. * * @param $to_state_id * The state to transition to. * * @return bool * TRUE if the state can transition to the provided state ID. FALSE, if not. */ public function canTransitionTo($to_state_id); /** * Gets the Transition object for the provided state ID. * * @param $to_state_id * The state to transition to. * * @return \Drupal\workflows\TransitionInterface * The Transition object for the provided state ID. * * @throws \InvalidArgumentException() * Exception thrown when the provided state ID can not be transitioned to. */ public function getTransitionTo($to_state_id); /** * Gets all the possible transition objects for the state. * * @return \Drupal\workflows\TransitionInterface[] * All the possible transition objects for the state. */ public function getTransitions(); }