function wysiwyg_element_info in Wysiwyg 7.2
Implements hook_element_info().
File
- ./
wysiwyg.module, line 164
Code
function wysiwyg_element_info() {
// @see wysiwyg_dialog()
$types['wysiwyg_dialog_page'] = array(
'#theme' => 'wysiwyg_dialog_page',
'#theme_wrappers' => array(
'html',
),
'#show_messages' => TRUE,
);
return $types;
}