You are here

function mail_edit_theme in Mail Editor 6

Same name and namespace in other branches
  1. 7 mail_edit.module \mail_edit_theme()

Implementation of hook_theme().

File

./mail_edit.module, line 60
Main file for the Mail Editor module.

Code

function mail_edit_theme() {
  return array(
    'mail_edit_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'mail_edit.admin.inc',
    ),
    'mail_edit_list_filter' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'mail_edit.admin.inc',
    ),
  );
}