You are here

function aet_insert_theme in Advanced Entity Tokens 7

implementation of hook_theme().

File

aet_insert/aet_insert.module, line 85

Code

function aet_insert_theme($existing, $type, $theme, $path) {
  $themes = array();
  $themes['aet_insert_field'] = array(
    'render element' => 'element',
    'file' => 'aet_insert.theme',
  );
  return $themes;
}