function wysiwyg_theme in Wysiwyg 7.2
Same name and namespace in other branches
- 6.2 wysiwyg.module \wysiwyg_theme()
- 6 wysiwyg.module \wysiwyg_theme()
Implementation of hook_theme().
See also
drupal_common_theme(), common.inc
template_preprocess_page(), theme.inc
File
- ./
wysiwyg.module, line 180
Code
function wysiwyg_theme() {
return array(
'wysiwyg_profile_overview' => array(
'render element' => 'form',
),
'wysiwyg_admin_button_table' => array(
'render element' => 'form',
),
// @see wysiwyg_dialog()
'wysiwyg_dialog_page' => array(
'render element' => 'page',
'file' => 'wysiwyg.dialog.inc',
'template' => 'wysiwyg-dialog-page',
),
);
}