You are here

function notifications_ui_node_type in Notifications 6.4

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

Implementation of hook node_type

File

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

Code

function notifications_ui_node_type($op, $info) {
  if ($op == 'delete') {

    // Remove settings for this node type
    variable_del('notifications_node_ui_' . $info->type);
  }
}