You are here

function notifications_digest_theme in Notifications 6.4

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

Implementation of hook_theme()

File

notifications_digest/notifications_digest.module, line 66
Notifications digest module

Code

function notifications_digest_theme() {
  return array(
    'notifications_digest_short_body' => array(
      'arguments' => array(
        'text' => NULL,
        'list' => NULL,
      ),
    ),
    'notifications_digest_short_list' => array(
      'arguments' => array(
        'lines' => NULL,
        'group' => NULL,
      ),
    ),
    'notifications_digest_short_line' => array(
      'arguments' => array(
        'line' => NULL,
        'group' => NULL,
      ),
    ),
    'notifications_digest_long_body' => array(
      'arguments' => array(
        'header' => NULL,
        'content' => NULL,
        'footer' => NULL,
      ),
    ),
  );
}