73 lines
2.6 KiB
PHP
73 lines
2.6 KiB
PHP
<?php include ("header.php");
|
|
// Album PRIVATE => bruno / kpm97321
|
|
?>
|
|
|
|
<div id="main">
|
|
|
|
<div class="center_albums">
|
|
|
|
<div id="headline">
|
|
|
|
<h3>
|
|
<!-- ZP 1.4.6: html_encode(getGalleryIndexURL()) remplace htmlspecialchars(getGalleryIndexURL(false)) -->
|
|
<a href="<?php echo htmlspecialchars(getGalleryIndexURL());?>" title="<?php gettext('Albums Index'); ?>"><?php echo getGalleryTitle(); ?></a>
|
|
<?php printParentBreadcrumb(' » ', ' » ', ' » '); ?><?php printAlbumTitle(true); ?>
|
|
» <?php echo gettext("Password Required..."); ?>
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div> <!-- /center_albums -->
|
|
|
|
<p class="clear"></p>
|
|
|
|
<div class="center_search">
|
|
|
|
<div class="post">
|
|
<?php printPasswordForm($_password_hint); ?>
|
|
</div>
|
|
|
|
|
|
</div> <!-- /center_search -->
|
|
|
|
|
|
<div id="sidebar">
|
|
<div id="search">
|
|
<?php printSearchForm( '','searchform','',gettext('OK'),"$_zp_themeroot/images/drop.gif",null,null,"$_zp_themeroot/images/reset.gif" ); ?>
|
|
</div>
|
|
<p class="titreBar"><?php echo gettext('Date Archive'); ?></p>
|
|
<?php printAllDates('archive-menu','year','month','desc'); ?>
|
|
<p class="titreBar margeTop"><?php echo gettext('Archive'); ?></p>
|
|
<ul id="listArchive">
|
|
<li><a href="?p=archive&option=popular"><?php echo gettext('most popular images'); ?></a></li>
|
|
<li><a href="?p=archive&option=latest"><?php echo gettext('latest uploaded images'); ?></a></li>
|
|
<li><a href="?p=archive&option=latest-date"><?php echo gettext('latest uploaded, but fetched by date'); ?></a></li>
|
|
<li><a href="?p=archive&option=latest-mtime"><?php echo gettext('latest uploaded, but fetched by mtime'); ?></a></li>
|
|
<li><a href="?p=archive&option=mostrated"><?php echo gettext('most voted'); ?></a></li>
|
|
<li><a href="?p=archive&option=toprated"><?php echo gettext('best voted'); ?></a></li>
|
|
<li><a href="?p=archive&option=random"><?php echo gettext('random'); ?></a></li>
|
|
</ul>
|
|
<p class="titreBar margeTop"><?php echo gettext('Popular Tags'); ?></p>
|
|
<div id="tag_cloud">
|
|
<?php
|
|
printAllTagsAs('cloud','csstag','results',true,true,$maxfontsize = 2,$maxcount = 50, $mincount = 2,$limit = NULL, $minfontsize = 0.8);
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="paging">
|
|
<?php if ( (getPrevPageURL()) || (getNextPageURL()) ) { ?>
|
|
<?php //printPageListWithNav( gettext('‹ Previous'),gettext('Next ›'),false,'true','pagelist','',true,'5' ); ?>
|
|
<?php } ?>
|
|
<?php if (function_exists('printAlbumMenu')) { ?>
|
|
<div id="albumjump">
|
|
<?php printAlbumMenu('jump',true); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php include("footer.php"); ?>
|