function notifications_ui_help in Notifications 7
Same name and namespace in other branches
- 5 notifications_ui/notifications_ui.module \notifications_ui_help()
- 6.4 notifications_ui/notifications_ui.module \notifications_ui_help()
- 6 notifications_ui/notifications_ui.module \notifications_ui_help()
- 6.2 notifications_ui/notifications_ui.module \notifications_ui_help()
- 6.3 notifications_ui/notifications_ui.module \notifications_ui_help()
Implementation of hook_help()
File
- notifications_ui/
notifications_ui.module, line 10 - User Interface for subscriptions modules
Code
function notifications_ui_help($path, $arg) {
switch ($path) {
case 'admin/config/messaging/subscriptions/ui':
$output = '<p>' . t('These are UI settings only and will define which options will be visible for end users and how they\'ll be displayed. Which options will be finally available will be determined by:');
$output .= '<ol>';
$output .= '<li>' . t('Enabled subscription types on the other Notifications settings pages') . '</li>';
$output .= '<li>' . t('Permissions that you can configure on <a href="@administer-permissions">Administer permissions</a>.', array(
'@administer-permissions' => url('admin/people/permissions'),
)) . '</li>';
$output .= '<li>' . t('The enabled options on this page.') . '</li>';
$output .= '</ol></p>';
return $output;
}
}