function csm_help in Custom Submit Messages 7
Implements hook_help().
File
- ./
csm.module, line 444 - The main module file for Custom Submit Messages.
Code
function csm_help($path, $arg) {
switch ($path) {
case 'admin/config/csm/csm':
return '<p>' . t('The Custom Submit Messages module allows you
to set different messages for different user
roles. If you would like to set a specific message
for a specific user role, please check the checkbox
next to that user role. If a user has two roles for
which specific messages are defined, the message
defined for the role nearest the top of this list will
be displayed. Please re-order this list to ensure
that the correct messages are displayed.') . '</p>';
}
}