You are here

function notifications_digest_theme in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 notifications_digest/notifications_digest.module \notifications_digest_theme()

Implementation of hook_theme()

File

notifications_digest/notifications_digest.module, line 236
Notifications message digest

Code

function notifications_digest_theme() {
  return array(
    'notifications_digest_short_body' => array(
      'arguments' => array(
        'text' => NULL,
        'list' => NULL,
      ),
      'file' => 'notifications_digest.theme.inc',
    ),
    'notifications_digest_short_line' => array(
      'arguments' => array(
        'line' => NULL,
        'group' => NULL,
      ),
      'file' => 'notifications_digest.theme.inc',
    ),
    'notifications_digest_long_body' => array(
      'arguments' => array(
        'header' => NULL,
        'content' => NULL,
        'footer' => NULL,
      ),
      'file' => 'notifications_digest.theme.inc',
    ),
  );
}