function notify_theme in Notify 6
Same name and namespace in other branches
- 7 notify.module \notify_theme()
Register the themeing the form data into a table at admin/user/user/notify
Return value
array
File
- ./
notify.module, line 250 - Notify module sends email digests of new content and comments.
Code
function notify_theme() {
return array(
'notify_admin_users' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}