function datereminder_node_update in Date Reminder 7
Same name and namespace in other branches
- 6.2 includes/node.inc \datereminder_node_update()
Implements hook_node_update().
Update any reminders that might have changed when the node (its date, in particular) changed.
1 call to datereminder_node_update()
- datereminder_nodeapi in ./
datereminder.module - Implements hook_nodeapi().
File
- ./
datereminder.module, line 112 - Support for reminders for nodes with dates.
Code
function datereminder_node_update($node) {
module_load_include('inc', 'datereminder', 'includes/node');
_datereminder_node_update($node);
}