You are here

function vefl_theme in Views exposed form layout 8

Same name and namespace in other branches
  1. 8.3 vefl.module \vefl_theme()
  2. 8.2 vefl.module \vefl_theme()
  3. 7 vefl.module \vefl_theme()

Implements hook_theme().

File

./vefl.module, line 13
Module file for vefl.

Code

function vefl_theme() {
  $hooks = [];
  $hooks['vefl_views_exposed_form'] = [
    'render element' => 'form',
    'theme path' => drupal_get_path('module', 'vefl'),
  ];
  return $hooks;
}