'. t("Prevents Subscriptions notifications from being sent for items in the Modr8 queue, and requeues them when the item is approved in the Modr8 module. No options to configure.") .'

'; break; } return $output; } // function modr8_subscriptions_help /** * Implementation of hook_subscriptions_queue_alter() * added by Subscriptions module **/ function modr8_subscriptions_queue_alter(&$event) { if (!empty($event['node']->moderate)) { // This node is in the moderation queue (Modr8), so empty the // $event var so Subscriptions will ignore it. // It will be resubmitted to the queue in modr8_form_submit, implemented by modr8_admin.inc $event = NULL; } } // function modr8_subscriptions_queue_alter