19 lines
472 B
PHP
19 lines
472 B
PHP
<?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)
|
|
*/
|
|
?>
|
|
<?php if ($submenu_links): ?>
|
|
<div class="submenu revisions">
|
|
<?php print implode(' <strong>|</strong> ', $submenu_links); ?>
|
|
</div>
|
|
<hr/>
|
|
<?php endif; ?>
|
|
<?php print $content; ?>
|