dialog-content.tpl.php in Dialog 6
Theme implementation to display the content section of a dialog.
Available variables:
- $help: Dynamic help text.
- $messages: HTML for status and error messages. Should be displayed prominently.
- $content: The main content of the current dialog.
See also
1 theme call to dialog-content.tpl.php
- dialog_command_display in ./
dialog.module - Place HTML within the modal.
File
dialog-content.tpl.phpView source
<?php
/**
* @file dialog-content.tpl.php
*
* Theme implementation to display the content section of a dialog.
*
* Available variables:
*
* - $help: Dynamic help text.
* - $messages: HTML for status and error messages. Should be displayed prominently.
* - $content: The main content of the current dialog.
*
* @see template_preprocess_dialog_content()
*/
?>
<?php
if (!empty($messages)) {
print $messages;
}
if (!empty($help)) {
print $help;
}
?>
<?php
print $content;