当前位置: 首页>>代码示例>>PHP>>正文


PHP getPrevAlbum函数代码示例

本文整理汇总了PHP中getPrevAlbum函数的典型用法代码示例。如果您正苦于以下问题:PHP getPrevAlbum函数的具体用法?PHP getPrevAlbum怎么用?PHP getPrevAlbum使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getPrevAlbum函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: zp_apply_filter

		</head>

		<body onload="blurAnchors()">
			<?php 
    zp_apply_filter('theme_body_open');
    ?>

			<!-- Wrap Header -->
			<div id="header">
				<div id="gallerytitle">

					<!-- Subalbum Navigation -->
					<div class="albnav">
						<div class="albprevious">
							<?php 
    $album = getPrevAlbum();
    if (is_null($album)) {
        echo '<div class="albdisabledlink">«  ' . gettext('prev') . '</div>';
    } else {
        echo '<a href="' . $album->getLink() . '" title="' . html_encode($album->getTitle()) . '">« ' . gettext('prev') . '</a>';
    }
    ?>
						</div> <!-- albprevious -->
						<div class="albnext">
							<?php 
    $album = getNextAlbum();
    if (is_null($album)) {
        echo '<div class="albdisabledlink">' . gettext('next') . ' »</div>';
    } else {
        echo '<a href="' . $album->getLink() . '" title="' . html_encode($album->getTitle()) . '">' . gettext('next') . ' »</a>';
    }
开发者ID:rb26,项目名称:zenphoto,代码行数:31,代码来源:favorites.php

示例2: getPrevAlbumURL

/**
 * Get the URL of the previous album in the gallery.
 *
 * @return string
 */
function getPrevAlbumURL()
{
    $prevalbum = getPrevAlbum();
    if ($prevalbum) {
        return $prevalbum->getLink();
    }
    return false;
}
开发者ID:IliyanGochev,项目名称:zenphoto,代码行数:13,代码来源:template-functions.php

示例3: gettext

				<div id="sidebar-inner">
					<div id="sidebar-padding">
						<div class="image-nav">
							<?php 
if ($_zp_current_album->getParent()) {
    $linklabel = gettext('subalbum');
    $parent = $_zp_current_album->getParent();
    $totalalbums = $parent->getNumAlbums();
} else {
    $linklabel = gettext('album');
    $totalalbums = $_zp_gallery->getNumAlbums();
}
?>
							<div class="image-prev">
								<?php 
$albumnav = getPrevAlbum();
if (!is_null($albumnav)) {
    ?>
								<a href="<?php 
    echo getPrevAlbumURL();
    ?>
" title="<?php 
    echo html_encode($albumnav->getTitle());
    ?>
"><?php 
    echo '&larr; ' . gettext('prev') . ' ' . $linklabel;
    ?>
</a>
								<?php 
}
?>
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:album.php

示例4: printPageListWithNav

    ?>
<div class="pad"><hr /><?php 
    printPageListWithNav('« ' . gettext('prev'), gettext('next') . ' »', false, true, 'pagination');
    ?>
</div><?php 
}
?>
				</div>
				
				<div class="gallery-sidebar pad">
					<?php 
if ($_zp_gallery_page == 'album.php') {
    ?>
					<div class="single-nav">
						<?php 
    if ($prev = getPrevAlbum()) {
        ?>
						<a class="button prev-link" href="<?php 
        echo html_encode(getPrevAlbumURL());
        ?>
" title="<?php 
        echo gettext('Prev album') . ': ' . html_encode($prev->getTitle());
        ?>
"><i class="fa fa-caret-left"></i> <?php 
        echo gettext("Prev album");
        ?>
</a>
						<?php 
    } else {
        ?>
						<span class="button prev-link"><i class="fa fa-caret-left"></i> <?php 
开发者ID:ckfreeman,项目名称:libratus,代码行数:31,代码来源:album.php

示例5: printCodeblock

										<?php 
    printCodeblock(2);
    footer();
    ?>
									</div>
									<p style="clear: both;"></p>
								</div>	<!-- end content -->
								<span class="clear"></span>
							</div>
						</div>
					</div>
					<div class="sidebar">
						<div id="rightsidebar">
							<?php 
    $nextalbum = getNextAlbum();
    $prevalbum = getPrevAlbum();
    if ($nextalbum || $prevalbum) {
        ?>
								<h2><?php 
        echo gettext('Album Navigation');
        ?>
</h2>
								<?php 
        if ($nextalbum) {
            ?>
									<div id="nextalbum" class="slides">
										<a href="<?php 
            echo html_encode(getNextAlbumURL());
            ?>
" title="<?php 
            echo gettext('Next album');
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:favorites.php

示例6: getPrevAlbumURL

/**
 * Get the URL of the previous album in the gallery.
 *
 * @return string
 */
function getPrevAlbumURL()
{
    $prevalbum = getPrevAlbum();
    if ($prevalbum) {
        return rewrite_path("/" . pathurlencode($prevalbum->name), "/index.php?album=" . pathurlencode($prevalbum->name));
    }
    return false;
}
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:13,代码来源:template-functions.php


注:本文中的getPrevAlbum函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。