function theme_notifications_digest_long_body in Notifications 6.3
Same name and namespace in other branches
- 5 notifications.cron.inc \theme_notifications_digest_long_body()
- 6.4 notifications_digest/notifications_digest.module \theme_notifications_digest_long_body()
- 6 notifications.cron.inc \theme_notifications_digest_long_body()
- 6.2 notifications.cron.inc \theme_notifications_digest_long_body()
Build the message body for long digests.
Actually we do nothing here, but it will be themeable.
1 theme call to theme_notifications_digest_long_body()
- NotificationsTemplatesTests::testNotificationsTemplates in tests/
notifications_templates.test - Play with creating, retrieving, deleting a pair subscriptions
File
- notifications_digest/
notifications_digest.theme.inc, line 48
Code
function theme_notifications_digest_long_body($header, $content, $footer) {
return array(
'header' => $header,
'content' => $content,
'footer' => $footer,
);
}