You are here

function content_type_groups_help in Content type groups 7.2

Same name and namespace in other branches
  1. 7 content_type_groups.module \content_type_groups_help()

Implements hook_help().

File

./content_type_groups.module, line 17
Module file for the Content type groups module.

Code

function content_type_groups_help($path, $arg) {
  if ($path == 'admin/help#content_type_groups') {
    $output = '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t("The Content type groups module allows you to create groups of content types for reference in forms and views") . '</p>';
    $output .= '<p>' . t("The module provides a configuration screen allowing administrators to define an unlimited amount of content type groups") . '</p>';
    return $output;
  }
}