caption-filter-tinymce-button.tpl.php in Caption Filter 7
Same filename and directory in other branches
Template for the TinyMCE button dialog.
Available variables:
- $form: the form array.
1 theme call to caption-filter-tinymce-button.tpl.php
- caption_filter_tinymce_button in ./
caption_filter.module - Menu page callback; the TinyMCE button dialog.
File
js/caption-filter-tinymce-button.tpl.phpView source
<?php
/**
* @file
* Template for the TinyMCE button dialog.
*
* Available variables:
* - $form: the form array.
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php
print drupal_get_title();
?></title>
<?php
print drupal_get_js();
?>
</head>
<body>
<?php
print drupal_render($form);
?>
</body>
</html>