You are here

function custom_formatters_help in Custom Formatters 7.2

Same name and namespace in other branches
  1. 6 includes/help.inc \custom_formatters_help()

Implements hook_help().

File

includes/help.inc, line 11
Help module integration.

Code

function custom_formatters_help($path, $arg) {
  switch ($path) {
    case 'admin/help#custom_formatters':
      return t('Read the manual at: <a href="https://www.drupal.org/node/2514412">drupal.org/node/2514412</a>');
  }
}