<?php
// This is the default album footer (for the gallery album
// page: view_album.php). It's companion is album.header.default.
//
// To override this footer, create a file called album.footer
// in this directory.
//
// $Id: album.footer.default 17810 2008-08-06 17:02:11Z JensT $
?>
<?php
includeTemplate('album.footer.tpl');
?>
      <table width="100%" cellspacing="0" cellpadding="0" class="modfooter">
        <tr>
          <td style="vertical-align: top">
            <!-- The Gallery code version number, linked to the Gallery home page -->
            <span class="fineprint">
	    <?php print poweredBy() ?>
            </span>
<?php
global $GALLERY_EMBEDDED_INSIDE;

if (! isset($GALLERY_EMBEDDED_INSIDE)) {
	print album_validation_link($gallery->session->albumName, NULL);
}
?>
          </td>
<?php if (!$gallery->session->offline && (!isset($gallery->app->rssEnabled) || $gallery->app->rssEnabled == "yes")) { ?>
          <td style="text-align:right"><a href="<?php echo $gallery->app->photoAlbumURL . "/rss.php?set_albumName=" . $gallery->session->albumName; ?>" style="background-color:#f60; border:2px outset #ffc8a4; color:white; text-decoration:none; font:bold 10px sans-serif; padding:0px 3px 0px 5px; letter-spacing:1px;">RSS</a></td>
<?php
} // if rssEnabled
if ($gallery->user->isAdmin() ) { ?>

          <!-- donation block -->

          <td width="300" align="right">
            <span class="fineprint">
              Are you happy with Gallery?<br>
	      Make us happy too!  Donate!<br>
            </span>
          </td>
          <td width="90" align="right">
            <a href="<?php echo $gallery->url ?>/donate.php?donate_tag=v<?php echo $gallery->version ?>"><img align="right"
              src="<?php echo getImagePath('donate.png') ?>" width="80" height="15" border="0" ALT="<?php echo _("Donate to Gallery now!!") ?>"></a>
          </td>
          <?php } ?>
        </tr>
      </table>
    </td>
  </tr>
</table>

<?php
includeHtmlWrap("wrapper.footer");
?>
