function quick_list_help in Util 7
Implements hook_help().
File
- contribs/
quick_list/ quick_list.module, line 10 - Provides a debugging summary of modules that are enabled.
Code
function quick_list_help($path, $arg) {
switch ($path) {
// Main module help for the quick_list module.
case 'admin/help#quick_list':
return '<p>' . t('The Quick_List module provides a debugging summary of modules that are enabled.') . '</p>';
}
}