X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fworkflows%2Fworkflows.module;fp=web%2Fcore%2Fmodules%2Fworkflows%2Fworkflows.module;h=a22cadff97d24228c7eea0446cf36ec93c28ca57;hp=096fd92e0e6f9bb5b57d629e306d7201a19cd90d;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/workflows/workflows.module b/web/core/modules/workflows/workflows.module index 096fd92e0..a22cadff9 100644 --- a/web/core/modules/workflows/workflows.module +++ b/web/core/modules/workflows/workflows.module @@ -2,7 +2,7 @@ /** * @file - * Provides hook implementations for the Workflow UI module. + * Provides hook implementations for the Workflows module. */ use Drupal\Core\Routing\RouteMatchInterface; @@ -12,11 +12,16 @@ use Drupal\Core\Routing\RouteMatchInterface; */ function workflows_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { - // Main module help for the Workflow UI module. case 'help.page.workflows': $output = ''; $output .= '

' . t('About') . '

'; $output .= '

' . t('The Workflows module provides a UI and an API for creating workflows content. This lets site admins define workflows and their states, and then define transitions between those states. For more information, see the online documentation for the Workflows module.', [':workflow' => 'https://www.drupal.org/documentation/modules/workflows']) . '

'; + $output .= '

' . t('Workflow') . '

'; + $output .= '

' . t('A collection of states and transitions between those states.') . '

'; + $output .= '

' . t('State') . '

'; + $output .= '

' . t('A particular condition that something is in at a specific time. The usage of the state is determined by a module that harnesses the Workflows module. For example, Content Moderation allows a state to be used for moderation of content by assigning a given state to a content item.') . '

'; + $output .= '

' . t('Transition') . '

'; + $output .= '

' . t('The process of changing from one state to another. A transition can occur from multiple states, but only to one state.') . '

'; return $output; } }