workflows.module

Same filename in other branches
  1. 9 core/modules/workflows/workflows.module
  2. 8.9.x core/modules/workflows/workflows.module
  3. 10 core/modules/workflows/workflows.module

Provides hook implementations for the Workflows module.

File

core/modules/workflows/workflows.module

View source
<?php


/**
 * @file
 * Provides hook implementations for the Workflows module.
 */
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Url;

/**
 * Implements hook_help().
 */
function workflows_help($route_name, RouteMatchInterface $route_match) {
    switch ($route_name) {
        case 'help.page.workflows':
            $content_moderation_url = NULL;
            if (\Drupal::moduleHandler()->moduleExists('content_moderation')) {
                $content_moderation_url = Url::fromRoute('help.page', [
                    'name' => 'content_moderation',
                ])->toString();
            }
            $output = '<h2>' . t('About') . '</h2>';
            if ($content_moderation_url) {
                $output .= '<p>' . t('The Workflows module provides an API and an interface to create workflows with transitions between different states (for example publication or user status). These have to be provided by other modules such as the <a href=":moderation">Content Moderation module</a>. For more information, see the <a href=":workflow">online documentation for the Workflows module</a>.', [
                    ':moderation' => $content_moderation_url,
                    ':workflow' => 'https://www.drupal.org/documentation/modules/workflows',
                ]) . '</p>';
            }
            else {
                $output .= '<p>' . t('The Workflows module provides an API and an interface to create workflows with transitions between different states (for example publication or user status). These have to be provided by other modules such as the Content Moderation module. For more information, see the <a href=":workflow">online documentation for the Workflows module</a>.', [
                    ':workflow' => 'https://www.drupal.org/documentation/modules/workflows',
                ]) . '</p>';
            }
            $output .= '<h3>' . t('Uses') . '</h3>';
            $output .= '<dl>';
            $output .= '<dt>' . t('Adding workflows') . '</dt>';
            if ($content_moderation_url) {
                $output .= '<dd>' . t('You can <em>only</em> add workflows on the <a href=":workflows">Workflows page</a>, after you have installed a module that leverages the API such as the <a href=":moderation">Content Moderation module</a>.', [
                    ':moderation' => $content_moderation_url,
                    ':workflows' => Url::fromRoute('entity.workflow.collection')->toString(),
                ]) . '</dd>';
            }
            else {
                $output .= '<dd>' . t('You can <em>only</em> add workflows on the <a href=":workflows">Workflows page</a>, after you have installed a module that leverages the API such as the Content Moderation module.', [
                    ':workflow' => 'https://www.drupal.org/documentation/modules/workflows',
                ]) . '</dd>';
            }
            $output .= '<dt>' . t('Adding states') . '<dt>';
            $output .= '<dd>' . t('A workflow requires at least two states. States can be added when you add or edit a workflow on the <a href=":workflows">Workflows page</a>.', [
                ':workflows' => Url::fromRoute('entity.workflow.collection')->toString(),
            ]) . '</dd>';
            $output .= '<dt>' . t('Adding transitions') . '</dt>';
            $output .= '<dd>' . t('A transition defines in which state an item can be save as next. It has one destination state, but can have several states <em>from</em> which the transition can be applied. Transitions can be added when you add or edit a workflow on the <a href=":workflows">Workflows page</a>.', [
                ':workflows' => Url::fromRoute('entity.workflow.collection')->toString(),
            ]) . '</dd>';
            $output .= '<dt>' . t('Configuring workflows further') . '</dt>';
            $output .= '<dd>' . t('Depending on the installed workflow type, additional configuration can be available in the edit form of a workflow.') . '</dd>';
            $output .= '<dl>';
            return $output;
    }
}

Functions

Title Deprecated Summary
workflows_help Implements hook_help().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.