You are here

public function Notifications_Event::send in Notifications 7

Send operation. Default will be send to all destinations

1 call to Notifications_Event::send()
Notifications_Event::dispatch in ./notifications.event.inc
Dispatch event to where it corresponds

File

./notifications.event.inc, line 276
Drupal Notifications Framework - Default class file

Class

Notifications_Event
Notifications Event class

Code

public function send() {
  $this->sent = REQUEST_TIME;
  $this
    ->record();
  $this
    ->send_all();
  $this
    ->done();
}