wysiwyg-dialog-page.tpl.php in Wysiwyg 5.2
Same filename and directory in other branches
Theme template to display a single Wysiwyg (plugin) dialog page.
Available variables:
Page metadata:
- $language: The language the site is being displayed in.
- $head_title: A modified version of the page title, for use in the TITLE tag.
- $head: Markup for the HEAD section (including meta tags, keyword tags, and so on).
- $styles: Style tags necessary to import all CSS files for the page.
- $scripts: Script tags necessary to load the JavaScript files and settings for the page.
Page content (in order of occurrance in the default page.tpl.php):
- $breadcrumb: The breadcrumb trail for the current page.
- $title: The page title, for use in the actual HTML content.
- $help: Dynamic help text, mostly for admin pages.
- $messages: HTML for status and error messages. Should be displayed prominently.
- $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the view and edit tabs when displaying a node).
- $content: The main content of the current Drupal page.
Footer/closing data:
- $footer : The footer region.
- $closure: Final closing markup from any modules that have altered the page. This variable should always be output last, after all other dynamic content.
See also
File
wysiwyg-dialog-page.tpl.phpView source
<?php
/**
* @file
* Theme template to display a single Wysiwyg (plugin) dialog page.
*
* Available variables:
*
* Page metadata:
* - $language: The language the site is being displayed in.
* - $head_title: A modified version of the page title, for use in the TITLE tag.
* - $head: Markup for the HEAD section (including meta tags, keyword tags, and
* so on).
* - $styles: Style tags necessary to import all CSS files for the page.
* - $scripts: Script tags necessary to load the JavaScript files and settings
* for the page.
*
* Page content (in order of occurrance in the default page.tpl.php):
* - $breadcrumb: The breadcrumb trail for the current page.
* - $title: The page title, for use in the actual HTML content.
* - $help: Dynamic help text, mostly for admin pages.
* - $messages: HTML for status and error messages. Should be displayed prominently.
* - $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the view
* and edit tabs when displaying a node).
*
* - $content: The main content of the current Drupal page.
*
* Footer/closing data:
* - $footer : The footer region.
* - $closure: Final closing markup from any modules that have altered the page.
* This variable should always be output last, after all other dynamic content.
*
* @see template_preprocess_wysiwyg_dialog_page()
*/
?>
<!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" xml:lang="<?php
print $language->language;
?>" lang="<?php
print $language->language;
?>" dir="<?php
print $language->dir;
?>">
<head>
<title><?php
print $head_title;
?></title>
<?php
print $head;
?>
<?php
print $styles;
?>
<?php
print $scripts;
?>
<script type="text/javascript"><?php
/* Needed to avoid Flash of Unstyled Content in IE */
?> </script>
</head>
<body>
<div id="page">
<div id="container" class="clear-block">
<div id="main" class="column">
<?php
if (!empty($breadcrumb)) {
?><div id="breadcrumb"><?php
print $breadcrumb;
?></div><?php
}
?>
<div id="content">
<?php
if (!empty($title)) {
?><h1 class="title" id="page-title"><?php
print $title;
?></h1><?php
}
?>
<?php
if (!empty($tabs)) {
?><div class="tabs"><?php
print $tabs;
?></div><?php
}
?>
<?php
if (!empty($messages)) {
print $messages;
}
?>
<?php
if (!empty($help)) {
print $help;
}
?>
<div id="content-content" class="clear-block">
<?php
print $content;
?>
</div>
</div>
</div>
</div>
</div>
<?php
print $closure;
?>
</body>
</html>