You are here

function notify_theme in Notify 7

Same name and namespace in other branches
  1. 6 notify.module \notify_theme()

Implements hook_theme

Register the form data theme into a table at admin/user/user/notify.

Return value

array form data theme.

File

./notify.module, line 311
Notify module sends e-mail digests of new content and comments.

Code

function notify_theme() {
  return array(
    'notify_admin_users' => array(
      'render element' => 'form',
    ),
    'notify_admin_skip' => array(
      'render element' => 'form',
    ),
  );
}