function Notifications_Queue::process_option in Notifications 6.4
Get / set process option
4 calls to Notifications_Queue::process_option()
- Notifications_Queue::process_group in includes/
notifications_queue.class.inc - Process queued rows, send messages, etc, etc...
- Notifications_Queue::process_queue in includes/
notifications_queue.class.inc - Process subscriptions queue
- Notifications_Queue::process_rows in includes/
notifications_queue.class.inc - Process rows given query conditions
- Notifications_Queue::process_send in includes/
notifications_queue.class.inc - Send array of messages through messaging module
File
- includes/
notifications_queue.class.inc, line 252
Class
- Notifications_Queue
- Queue management and processing
Code
function process_option($name, $value = NULL) {
// Get / set value for option
if (isset($value)) {
$this->process_options[$name] = $value;
}
else {
return isset($this->process_options[$name]) ? $this->process_options[$name] : FALSE;
}
}