<?php
/* $Id: gallery.footer.default 17851 2008-08-14 22:26:28Z JensT $
 * This is the default gallery footer (for the main gallery page: albums.php).
 * It's companion is gallery.header.default.
 *
 * To override this footer, create a file called gallery.footer in this directory.
 *
 *
 * Tips:
 * Some application variables:
 *	- Gallery Title: $gallery->app->galleryTitle
 * Gallery developers would appreciate you promoting the Gallery code a little.
 * Use the following code snippet to display the current Gallery version linked
 * to the Gallery home page.
 */

includeTemplate('gallery.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 gallery_validation_link("albums.php");
       	} ?>
          </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"; ?>" 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");
?>
