You are here

function ife_theme in Inline Form Errors 6

Same name and namespace in other branches
  1. 6.2 ife.module \ife_theme()
  2. 7.2 ife.module \ife_theme()
  3. 7 ife.module \ife_theme()

Implementation of hook_theme().

File

./ife.module, line 87
Drupal hooks

Code

function ife_theme() {
  return array(
    'ife_settings_form_ids' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'ife.theme.inc',
    ),
    'ife_form_element' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'ife.theme.inc',
      'path' => drupal_get_path('module', 'ife'),
      'template' => 'ife-form-element',
    ),
  );
}