You are here

function notifications_ui_forms in Notifications 6.4

Same name and namespace in other branches
  1. 6.2 notifications_ui/notifications_ui.module \notifications_ui_forms()
  2. 6.3 notifications_ui/notifications_ui.module \notifications_ui_forms()

Implementation of hook_forms()

File

notifications_ui/notifications_ui.module, line 149
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_subscriptions_options_form',
    );
  }
  return $forms;
}