function simple_modal_overlay_theme in Simple modal overlay 7
Implements hook_theme().
File
- ./
simple_modal_overlay.module, line 15 - Core code for the "Simple modal overlay" module.
Code
function simple_modal_overlay_theme($existing, $type, $theme, $path) {
$theme_functions = array();
$theme_functions['simple_modal_overlay'] = array(
'variables' => array(
'name' => NULL,
'title' => NULL,
'content' => NULL,
'open_immediately' => TRUE,
'dismissible' => TRUE,
'dispose_on_close' => TRUE,
),
'file' => 'simple_modal_overlay.theme.inc',
);
return $theme_functions;
}