function simple_dialog_theme in Simple Dialog 7
Same name and namespace in other branches
- 8 simple_dialog.module \simple_dialog_theme()
Implements hook_theme().
File
- ./
simple_dialog.module, line 128
Code
function simple_dialog_theme($existing, $type, $theme, $path) {
return array(
'simple_dialog_link' => array(
'variables' => array(
'text' => NULL,
'path' => NULL,
'selector' => NULL,
'title' => NULL,
'options' => array(),
'link_options' => array(),
'class' => array(),
),
),
);
}