You are here

panels-pane.tpl.php in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 7.2

Same filename and directory in other branches
  1. 7 themes/vartheme2/templates/panels/panels-pane.tpl.php

panels-pane.tpl.php Main panel pane template

Variables available:

  • $pane->type: the content type inside this pane
  • $pane->subtype: The subtype, if applicable. If a view it will be the view name; if a node it will be the nid, etc.
  • $title: The title of the content
  • $content: The actual content
  • $links: Any links associated with the content
  • $more: An optional 'more' link (destination only)
  • $admin_links: Administrative links associated with the content
  • $feeds: Any feed icons or associated with the content
  • $display: The complete panels display object containing all kinds of data including the contexts and all of the other panes being displayed.

File

themes/vartheme2/templates/panels/panels-pane.tpl.php
View source
<?php

/**
 * @file panels-pane.tpl.php
 * Main panel pane template
 *
 * Variables available:
 * - $pane->type: the content type inside this pane
 * - $pane->subtype: The subtype, if applicable. If a view it will be the
 *   view name; if a node it will be the nid, etc.
 * - $title: The title of the content
 * - $content: The actual content
 * - $links: Any links associated with the content
 * - $more: An optional 'more' link (destination only)
 * - $admin_links: Administrative links associated with the content
 * - $feeds: Any feed icons or associated with the content
 * - $display: The complete panels display object containing all kinds of
 *   data including the contexts and all of the other panes being displayed.
 */
if ($pane_prefix) {
  ?>
  <?php

  print $pane_prefix;
}
?>
<div class="<?php

print $classes;
?>" <?php

print $id;
?>>
  <?php

if ($admin_links) {
  ?>
    <?php

  print $admin_links;
  ?>
  <?php

}
?>

  <?php

print render($title_prefix);
?>
  <?php

if ($title) {
  ?>
    <h3 class="pane-title"><span><?php

  print $title;
  ?></span></h3>
  <?php

}
?>
  <?php

print render($title_suffix);
?>

  <?php

if ($feeds) {
  ?>
    <div class="feed">
      <?php

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

}
?>

  <div class="pane-content">
    <?php

print render($content);
?>
  </div>

  <?php

if ($links) {
  ?>
    <div class="links">
      <?php

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

}
?>

  <?php

if ($more) {
  ?>
    <div class="more-link">
      <?php

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

}
?>
</div>
<?php

if ($pane_suffix) {
  ?>
  <?php

  print $pane_suffix;
}