function simple_dialog_theme in Simple Dialog 8
Same name and namespace in other branches
- 7 simple_dialog.module \simple_dialog_theme()
Implements hook_theme().
File
- ./
simple_dialog.module, line 111
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(),
),
'template' => 'simple-dialog-link',
),
);
}