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


PHP getNextAlbum函数代码示例

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


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

示例1: getPrevAlbum

					<!-- 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>';
    }
    ?>
						</div><!-- albnext -->
						<?php 
    if (getOption('Allow_search')) {
        printSearchForm(NULL, 'search', $_zp_themeroot . '/images/search.png', gettext('Search gallery'));
    }
    ?>
					</div> <!-- header -->

					<!-- Logo -->
开发者ID:rb26,项目名称:zenphoto,代码行数:30,代码来源:favorites.php

示例2: getNextAlbumURL

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

示例3: getPrevAlbumURL

    echo getPrevAlbumURL();
    ?>
" title="<?php 
    echo html_encode($albumnav->getTitle());
    ?>
"><?php 
    echo '&larr; ' . gettext('prev') . ' ' . $linklabel;
    ?>
</a>
								<?php 
}
?>
							</div>
							<div class="image-next">
								<?php 
$albumnav = getNextAlbum();
if (!is_null($albumnav)) {
    ?>
								<a href="<?php 
    echo getNextAlbumURL();
    ?>
" title="<?php 
    echo html_encode($albumnav->getTitle());
    ?>
"><?php 
    echo gettext('next') . ' ' . $linklabel . ' &rarr;';
    ?>
</a>
								<?php 
}
?>
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:album.php

示例4: gettext

        echo gettext("Prev album");
        ?>
</a>
						<?php 
    } else {
        ?>
						<span class="button prev-link"><i class="fa fa-caret-left"></i> <?php 
        echo gettext("Prev Album");
        ?>
</span>
						<?php 
    }
    ?>
						
						<?php 
    if ($next = getNextAlbum()) {
        ?>
						<a class="button next-link" href="<?php 
        echo html_encode(getNextAlbumURL());
        ?>
" title="<?php 
        echo gettext('Next album') . ': ' . html_encode($next->getTitle());
        ?>
"><?php 
        echo gettext("Next album");
        ?>
 <i class="fa fa-caret-right"></i></a>
						<?php 
    } else {
        ?>
						<span class="button next-link"><?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 
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:favorites.php

示例6: getNextAlbumURL

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


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