You are here

pane-messages.tpl.php in Panels Everywhere 6

Same filename and directory in other branches
  1. 7 theme/pane-messages.tpl.php

Theme implementation to display the messages area, which is normally included roughly in the content area of a page.

This utilizes the following variables thata re normally found in page.tpl.php:

  • $tabs
  • $messages
  • $help

Additional items can be added via theme_preprocess_pane_messages(). See template_preprocess_pane_messages() for examples.

File

theme/pane-messages.tpl.php
View source
<?php

/**
 * @file
 *
 * Theme implementation to display the messages area, which is normally
 * included roughly in the content area of a page.
 *
 * This utilizes the following variables thata re normally found in
 * page.tpl.php:
 * - $tabs
 * - $messages
 * - $help
 *
 * Additional items can be added via theme_preprocess_pane_messages(). See
 * template_preprocess_pane_messages() for examples.
 */
if (!empty($tabs)) {
  ?>
  <div class="tabs"><?php

  print $tabs;
  ?></div>
<?php

}
if (!empty($messages)) {
  print $messages;
}
if (!empty($help)) {
  print $help;
}