You are here

function emaillog_theme in Logging and alerts 6.2

Same name and namespace in other branches
  1. 8 emaillog/emaillog.module \emaillog_theme()
  2. 6 emaillog/emaillog.module \emaillog_theme()
  3. 7.2 emaillog/emaillog.module \emaillog_theme()
  4. 7 emaillog/emaillog.module \emaillog_theme()
  5. 2.0.x emaillog/emaillog.module \emaillog_theme()

Implementation of hook_theme().

File

emaillog/emaillog.module, line 44
Drupal Module: Email Logging and Alerts

Code

function emaillog_theme() {
  return array(
    'emaillog' => array(
      'template' => 'emaillog',
      'arguments' => array(
        'log' => NULL,
      ),
    ),
    'emaillog_admin_settings' => array(
      'file' => 'emaillog.admin.inc',
    ),
  );
}