You are here

pm_sub_task.module in Drupal PM (Project Management) 4.x

Contains pm_sub_task.module.

File

modules/pm_sub_task/pm_sub_task.module
View source
<?php

/**
 * @file
 * Contains pm_sub_task.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function pm_sub_task_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the pm_sub_task module.
    case 'help.page.pm_sub_task':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('PM Sub Task') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
pm_sub_task_help Implements hook_help().