function notifications_ui_forms in Notifications 6.3
Same name and namespace in other branches
- 6.4 notifications_ui/notifications_ui.module \notifications_ui_forms()
- 6.2 notifications_ui/notifications_ui.module \notifications_ui_forms()
Implementation of hook_forms()
File
- notifications_ui/
notifications_ui.module, line 155 - User Interface for subscriptions modules
Code
function notifications_ui_forms($form_id) {
$forms = array();
if (strpos($form_id, 'notifications_ui_options_form_') === 0) {
$forms[$form_id] = array(
'callback' => 'notifications_ui_options_form',
);
}
return $forms;
}