Mercurial > hg > isophonics-drupal-site
comparison core/modules/workflows/src/TransitionInterface.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
15 | 15 |
16 /** | 16 /** |
17 * The key of the transition plugin form. | 17 * The key of the transition plugin form. |
18 */ | 18 */ |
19 const PLUGIN_FORM_KEY = 'transition'; | 19 const PLUGIN_FORM_KEY = 'transition'; |
20 | |
21 /** | |
22 * The transition direction from. | |
23 */ | |
24 const DIRECTION_FROM = 'from'; | |
25 | |
26 /** | |
27 * The transition direction to. | |
28 */ | |
29 const DIRECTION_TO = 'to'; | |
20 | 30 |
21 /** | 31 /** |
22 * Gets the transition's ID. | 32 * Gets the transition's ID. |
23 * | 33 * |
24 * @return string | 34 * @return string |