function theme_wysiwyg_dialog_page in Wysiwyg 5.2
Render a single Wysiwyg (plugin) dialog page. (D5 only)
See also
template_preprocess_wysiwyg_dialog_page()
File
- ./
wysiwyg.dialog.inc, line 70 - Wysiwyg dialog page handling functions.
Code
function theme_wysiwyg_dialog_page($content) {
$variables = array(
'content' => $content,
);
template_preprocess_wysiwyg_dialog_page($variables);
return _phptemplate_render(drupal_get_path('module', 'wysiwyg') . '/wysiwyg-dialog-page.tpl.php', $variables);
}