function hook_node_recur_dates_alter in Node recur 7
Same name and namespace in other branches
- 7.2 node_recur.api.php \hook_node_recur_dates_alter()
Implements hook_node_recur_dates_alter().
Modify the recurring dates before they are used to recur nodes.
Parameters
&$dates: An array of start and end dates, keyed by 'start' and 'end'. The dates are in timestamp format.
$variables: An array of variables supplied by and generated by the node recur form. The possible available values are: node: The node being recurred. start_date: The initial starting date of the node (ie, '2012-10-22 15:45:00'). end_date: The initial ending date of the node, if one exists (ie, '2012-10-22 16:45:00'). option: The recurring option selected. until: The date (timestamp) to recur until. days: An array of days selected, if the 'days' option was used. frequency: The selected frequency, if the 'rules' option was used. period: The selected period, if the 'rules' option was used. weekends: TRUE if weekends should be included, otherwise FALSE, if the 'rules' option was used.
File
- ./
node_recur.api.php, line 92
Code
function hook_node_recur_dates_alter(&$dates, $variables) {
}