function formassembly_theme in FormAssembly 7
Same name and namespace in other branches
- 8 formassembly.module \formassembly_theme()
Implements hook_theme().
File
- ./
formassembly.module, line 223 - Contains hooks implementations and callbacks to non-admin pages.
Code
function formassembly_theme($existing, $type, $theme, $path) {
return array(
'fa_form__fa_form' => array(
'template' => 'fa_form__fa_form__markup',
'base hook' => 'entity',
'path' => drupal_get_path('module', 'formassembly'),
),
);
}