You are here

function theme_notifications_digest_long_body in Notifications 5

Same name and namespace in other branches
  1. 6.4 notifications_digest/notifications_digest.module \theme_notifications_digest_long_body()
  2. 6 notifications.cron.inc \theme_notifications_digest_long_body()
  3. 6.2 notifications.cron.inc \theme_notifications_digest_long_body()
  4. 6.3 notifications_digest/notifications_digest.theme.inc \theme_notifications_digest_long_body()

Build the message body for long digests.

Actually we do nothing here, but it will be themeable.

2 theme calls to theme_notifications_digest_long_body()
notifications_process_digest_long in ./notifications.cron.inc
Digest multiple events in a single message, long format.
Notifications_Templates_Tests::testNotificationsTemplateAPI in tests/notifications_templates.test
Play with creating, retrieving, deleting a pair subscriptions

File

./notifications.cron.inc, line 755

Code

function theme_notifications_digest_long_body($header, $content, $footer) {
  return array(
    'header' => $header,
    'content' => $content,
    'footer' => $footer,
  );
}