You are here

function cmf_help in Content Management Filter 6.2

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

Implementation of hook_help().

File

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

Code

function cmf_help($path, $arg) {
  switch ($path) {
    case "admin/help#cmf":
      return '<p>' . t('This module adds an easier way for administrators to filter the content on a Drupal site for administration purposes.') . '</p>' . '<p>' . t('It is 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>';
  }
}