You are here

function notifications_event_text in Notifications 5

Same name and namespace in other branches
  1. 6 notifications.cron.inc \notifications_event_text()
  2. 6.2 notifications.cron.inc \notifications_event_text()
  3. 6.3 notifications.cron.inc \notifications_event_text()

Get texts for event

@ TODO Support for configurable texts

1 call to notifications_event_text()
notifications_process_message in ./notifications.cron.inc
Creates a single message for a single event

File

./notifications.cron.inc, line 619

Code

function notifications_event_text($event) {
  $info = notifications_event_types($event->type, $event->action);
  return $info;
}