function bootstrap_modal_messages_help in Bootstrap Modal Messages 8
Same name and namespace in other branches
- 7 bootstrap_modal_messages.module \bootstrap_modal_messages_help()
Implements hook_help().
File
- ./
bootstrap_modal_messages.module, line 14 - Main functions for bootstrap_modal_messages module.
Code
function bootstrap_modal_messages_help($path, $arg) {
switch ($path) {
case 'admin/help#bootstrap_modal_messages':
// On the help overview page.
return '';
case 'admin/config/user-interface/bootstrap_modal_messages':
// On the admin settings page.
return '<p>' . t('This page provides configuration options for bootstrap_modal_messages.module. You can configure how multiple messages are grouped.') . '</p>';
}
}