You are here

function mail_edit_theme in Mail Editor 7

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

Implements hook_theme().

Return value

array

File

./mail_edit.module, line 84
Mail Editor module.

Code

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