You are here

function cmf_help in Content Management Filter 5

Same name and namespace in other branches
  1. 6.2 cmf.module \cmf_help()
  2. 6 cmf.module \cmf_help()
  3. 7 cmf.module \cmf_help()

Implementation of hook_help().

File

./cmf.module, line 16
@brief Content management filter module file

Code

function cmf_help($section = '') {
  switch ($section) {
    case "admin/help#cmf":
      $output = '<p>' . t("This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.") . '</p>';
      $output .= '<p>' . t("It's an improvement over the content page in the administration area of Drupal. It can show on the same page nodes and comments and adds new filters like role and author.") . '</p>';
      break;
  }
  return $output;
}