You are here

function theme_notifications_digest_long_body in Notifications 6.4

Same name and namespace in other branches
  1. 5 notifications.cron.inc \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()
NotificationsTemplatesTests::testNotificationsTemplates in tests/notifications_templates.test
Play with creating, retrieving, deleting a pair subscriptions
notifications_digest_build_long in notifications_digest/notifications_digest.module
Digest multiple events in a single message, long format.

File

notifications_digest/notifications_digest.module, line 430
Notifications digest module

Code

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