revisions-summary.tpl.php in Revisioning 7
Same filename and directory in other branches
revisions-summary.tpl.php Template to handle layout details of the submenu that appears above the summary of node revisions.
Variables available:
- $submenu_links: an array of <a>-tags
 - $content: summary of node revisions (as a table)
 
1 theme call to revisions-summary.tpl.php
- theme_revisioning_revisions_summary in ./
revisioning_theme.inc  - Theme revision summary table.
 
File
revisions-summary.tpl.phpView source
<?php
/**
 * @file
 * revisions-summary.tpl.php
 * Template to handle layout details of the submenu that appears above the
 * summary of node revisions.
 *
 * Variables available:
 * - $submenu_links: an array of <a>-tags
 * - $content: summary of node revisions (as a table)
 */
if ($submenu_links) {
  ?>
  <div class="submenu revisions">
    <?php
  print implode(' <strong>|</strong> ', $submenu_links);
  ?>
  </div>
  <hr/>
<?php
}
print $content;