You are here

function resmushit_help in reSmush.it image style optimizer 7.2

Same name and namespace in other branches
  1. 7 resmushit.module \resmushit_help()

Display help and module information Implements hook_help().

Parameters

path which path of the site we're displaying help:

arg array that holds the current path as would be returned from arg() function:

Return value

help text for the path

File

./resmushit.module, line 94
Main file of the module.

Code

function resmushit_help($path, $arg) {
  if ($path == 'admin/help#resmushit') {
    $output = file_get_contents(drupal_get_path('module', 'resmushit') . '/README.txt');
    return nl2br($output);
  }
}