You are here

help.inc in Custom Formatters 7.2

Same filename and directory in other branches
  1. 6 includes/help.inc

Help module integration.

File

includes/help.inc
View source
<?php

/**
 * @file
 * Help module integration.
 */

/**
 * Implements hook_help().
 */
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>');
  }
}

Functions

Namesort descending Description
custom_formatters_help Implements hook_help().