You are here

revisions-summary.tpl.php in Revisioning 7

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)

File

revisions-summary.tpl.php
View 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;