You are here

function workspace_help in Workspace 8

Same name and namespace in other branches
  1. 8.2 workspace.module \workspace_help()
  2. 5 workspace.module \workspace_help()
  3. 6 workspace.module \workspace_help()
  4. 7 workspace.module \workspace_help()

Implements hook_help().

File

./workspace.module, line 189

Code

function workspace_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.workspace':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The <a href="@link">Workspace module</a> Provides the ability to have multiple workspaces on a single site to facilitate things like full-site preview and content staging.', [
        '@link' => 'https://www.drupal.org/project/workspace',
      ]) . '</p>';
      return $output;
  }
}