You are here

function scheduled_publish_help in Scheduled Publish 8.2

Same name and namespace in other branches
  1. 8.3 scheduled_publish.module \scheduled_publish_help()
  2. 8 scheduled_publish.module \scheduled_publish_help()

Implements hook_help().

File

./scheduled_publish.module, line 16
Contains scheduled_publish.module.

Code

function scheduled_publish_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the scheduled_publish module.
    case 'help.page.scheduled_publish':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module allows the user to create a scheduler for content moderation') . '</p>';
      return $output;
    default:
  }
}