You are here

function update_detailed_email_theme in Update Status Detailed Email 6

Same name and namespace in other branches
  1. 7 update_detailed_email.module \update_detailed_email_theme()

Implementation of hook_theme().

theme_update_detailed_email_message() is being registered so a theme can override it and change the HTML being sent.

File

./update_detailed_email.module, line 102
Adds detail to the email message Drupal core's Update Status sends.

Code

function update_detailed_email_theme() {
  return array(
    'update_detailed_email_message' => array(
      'arguments' => array(
        'data' => NULL,
      ),
    ),
    'update_detailed_email_message_version' => array(
      'arguments' => array(
        'version' => NULL,
        'title' => NULL,
      ),
    ),
  );
}