function util_help in Util 7
Implements hook_help().
File
- ./
util.module, line 20 - Helper Utilities for your Drupal site.
Code
function util_help($path, $arg) {
switch ($path) {
// Main module help for the Util module.
case 'admin/help#util':
return '<p>' . t('The Util module is a grouping of commonly-needed utilities that are simple to code, everyone wants, but nobody actually codes them.') . '</p>';
}
}