You are here

function Notifications_Queue::build_method in Notifications 6.4

Information about digesting method for composing a message

This just calls notifications_process_build_method() with the send_interval, though its purpose is just to allow overriding and finding a suitable build method having all the information.

Parameters

$template: Message template

$params: Other parameters for these message: 'events', 'subscriptions', 'module'

Return value

array() Ditest information for that interval, or all the information if no interval

1 call to Notifications_Queue::build_method()
Notifications_Queue::process_compose in includes/notifications_queue.class.inc
Message composition.

File

includes/notifications_queue.class.inc, line 609

Class

Notifications_Queue
Queue management and processing

Code

function build_method($template, $params = array()) {
  return notifications_build_method($template->send_interval);
}