HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/www/sites/all/modules/node_gallery/theme/node-gallery-api-item-navigator.tpl.php
<?php

/**
 * @file
 * Default theme implementation to show a 6 column table containing the image navigator.
 *
 * Available variables:
 * @todo: fill this in
 *
 * @see theme_preprocess_node_gallery_api_item_navigator()
 */
?>
<table id="node-gallery-item-navigator" class="item-navigator">
  <tbody>
    <tr class="odd">
      <td class="item-navigator-position">
        <?php print t("%current of %total", array('%current' => $navigator['current'], '%total' => $navigator['total'])); ?>
      </td>
      <td class="item-navigator-first">
        <?php print isset($first_link) ? '<a href="'. $first_link .'">&lt;&lt; '. t('First') .'</a>' : '&nbsp;'; ?>
      </td>
      <td class="item-navigator-prev">
        <?php print isset($prev_link) ? '<a href="'. $prev_link .'">&lt; '. t('Previous') .'</a>' : '&nbsp;'; ?>
      </td>
      <td class="item-navigator-next">
        <?php print isset($next_link) ? '<a href="'. $next_link .'">'. t('Next') .' &gt;</a>' : '&nbsp;'; ?>
      </td>
      <td class="item-navigator-last">
        <?php print isset($last_link) ? '<a href="'. $last_link .'">'. t('Last') .' &gt;&gt;</a>' : '&nbsp;'; ?>
      </td>
      <td class="item-navigator-gallery-link">
        <?php print '<a href="'. $gallery_link .'">'. t("Back to gallery") .'</a>'; ?>
      </td>
    </tr>
  </tbody>
</table>