function vefl_theme in Views exposed form layout 8
Same name and namespace in other branches
- 8.3 vefl.module \vefl_theme()
- 8.2 vefl.module \vefl_theme()
- 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;
}