wysiwyg-dialog-page.tpl.php in Wysiwyg 7.2
Same filename and directory in other branches
Theme implementation to display a single Wysiwyg (plugin) dialog page.
1 theme call to wysiwyg-dialog-page.tpl.php
- wysiwyg_element_info in ./
wysiwyg.module - Implements hook_element_info().
File
wysiwyg-dialog-page.tpl.phpView source
<?php
/**
* @file
* Theme implementation to display a single Wysiwyg (plugin) dialog page.
*/
?>
<div id="page">
<?php
print $messages;
?>
<div id="main-wrapper"><div id="main" class="clearfix">
<div id="content" class="column"><div class="section">
<a id="main-content"></a>
<?php
print render($title_prefix);
?>
<?php
if ($title) {
?><h1 class="title" id="page-title"><?php
print $title;
?></h1><?php
}
?>
<?php
print render($title_suffix);
?>
<?php
if ($tabs) {
?><div class="tabs"><?php
print render($tabs);
?></div><?php
}
?>
<?php
print render($page['help']);
?>
<?php
if ($action_links) {
?><ul class="action-links"><?php
print render($action_links);
?></ul><?php
}
?>
<?php
print render($page['content']);
?>
</div></div> <!-- /.section, /#content -->
</div></div> <!-- /#main, /#main-wrapper -->
</div> <!-- /#page -->