You are here

function notifications_ui_nodeapi in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications_ui/notifications_ui.module \notifications_ui_nodeapi()
  2. 6 notifications_ui/notifications_ui.module \notifications_ui_nodeapi()
  3. 6.2 notifications_ui/notifications_ui.module \notifications_ui_nodeapi()
  4. 6.3 notifications_ui/notifications_ui.module \notifications_ui_nodeapi()

Display a button + js overlay

From http://groups.drupal.org/node/17779

File

notifications_ui/notifications_ui.module, line 218
User Interface for subscriptions modules

Code

function notifications_ui_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  global $user;
  static $form_instance_id = 0;
  if ($op == 'alter' && ($subscriptions = notifications_ui_node_subscriptions($node, 'subform'))) {
    $node->body .= drupal_get_form('notifications_ui_options_form_' . $form_instance_id, $subscriptions, TRUE, TRUE);
    $form_instance_id++;
  }
}