• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP hasNextPage函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: getOption

<?php

//TODO push those global variables under zin namespace
echo "var isAlbumPage = " . (AlbumUtil::isAlbumPage() ? "true" : "false") . ";\n" . "var maxImageIndex = " . AlbumUtil::getMaxImageIndex() . ", hasNextPage = " . (hasNextPage() ? "true" : "false") . ", hasPrevPage = " . (hasPrevPage() ? "true" : "false") . ", albumsPerPage = " . getOption('albums_per_page') . ", imagesPerPage = " . getOption('images_per_page') . ", enableFancybox = " . (getOption('simplicity2_enable_fancybox') ? 'true' : 'false') . ", enableUpDownKeys = " . (getOption('simplicity2_nav_enable_updown') ? 'true' : 'false') . ";\n";
?>

开发者ID:Imagenomad,项目名称:Unsupported,代码行数:5,代码来源:init.php


示例2: printPageListWithNav

		<?php 
        $c++;
        $mobilebreak = $c % 2;
        if ($c == $breakcount) {
            echo '<br class="clear clearforboth" />';
            $c = 0;
        } else {
            if ($mobilebreak == 0) {
                echo '<br class="clear clearformobile" />';
            }
        }
    }
}
?>

		<div class="sixteen columns">
<?php 
if (hasNextPage() || hasPrevPage()) {
    printPageListWithNav('«', '»', false, true, 'pagination', null, true, 5);
}
if ($numimages > 0) {
    printPPSlideShowLink(gettext('Slideshow'));
}
?>
		</div>
	</div>
</div>

<?php 
include "inc-bottom.php";
include "inc-footer.php";
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:search.php


示例3: count

<?php

global $_zp_themeroot, $_zp_current_album;
$albumCount = count($_zp_current_album->getSubalbums());
$isAlbumPage = $albumCount > 0;
?>
<div id="thumbs">
	<div id="thumbs-navigation" <?php 
echo hasNextPage() ? "next='" . getNextPageUrl() . "'" : "";
echo hasPrevPage() ? "prev='" . getPrevPageUrl() . "'" : "";
?>
>
		<div id='bar'>
			<div class="nav-cell filler"><span>&nbsp;</span></div>
			<?php 
AlbumUtil::printNavigation($prevText, $nextText, false, 7, true);
?>
			<div class="nav-cell filler end"><span>&nbsp;</span></div>
		</div>
	</div>
<?php 
if ($isAlbumPage) {
    $u = 0;
    while (next_album()) {
        $a = $_zp_current_album;
        $thumb = $a->getAlbumThumbImage();
        $title = $a->getTitle();
        $desc = $a->getDesc();
        $customThumb = $thumb->getCustomImage(NULL, 202, 56, 202, 56, NULL, NULL, false);
        $url = getAlbumURL();
        echo "\t<div class='thumb' index='{$u}' title='{$title}' location='{$customThumb}' url='{$url}'><description>{$desc}</description></div>\n";
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:fetch-thumbs.php


示例4: getPrevPageURL

    $link = getPrevPageURL();
} else {
    $link = "#";
}
echo "<li><a href=\"{$link}\" title=\"Previous Page\">&laquo;</a></li>\n";
for ($i = 1; $i <= $totalPages; $i++) {
    echo $i == $currentPage ? '<li class="current">' : '<li>';
    if ($i < 10) {
        $page = '0' . $i;
    } else {
        $page = $i;
    }
    printLinkHTML(getPageNumURL($i), $page, "Page {$page}");
    echo "</li>\n";
}
if (hasNextPage()) {
    $link = getNextPageURL();
} else {
    $link = "#";
}
echo "<li><a href=\"{$link}\" title=\"Next Page\">&raquo;</a></li>";
?>
		</ul>
	</div>

	<div id="albumList">
<?php 
$albumsPerPage = getOption('albums_per_page');
$count = 1;
while (next_album() && $count <= $albumsPerPage) {
    ?>
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:index.php


示例5: printRSSLink

}
?>
						<?php 
if (class_exists('RSS') && getOption('RSS_album_image')) {
    ?>
						<span><?php 
    printRSSLink('Gallery', '', gettext('Gallery RSS'), '', false);
    ?>
</span>
						<?php 
}
?>
					</div>
				</div>
				<?php 
if ((hasNextPage() || hasPrevPage()) && (getOption('zpbase_galhomeop') == 'albums' && $showall == false)) {
    $jumpclass = 'jump';
    $pagin = true;
} else {
    $jumpclass = 'jump center';
    $pagin = false;
}
?>
				<div id="page-nav">
					<div class="<?php 
echo $jumpclass;
?>
"><?php 
printBaseAlbumMenuJump('count', gettext('Gallery Index'));
?>
</div>
开发者ID:BimbaLaszlo,项目名称:zpbase,代码行数:31,代码来源:index-sdscroll.php


示例6: getPageNavList

/**
 * returns a page nav list.
 *
 * @param bool $_oneImagePage set to true if there is only one image page as, for instance, in flash themes
 * @param int $navlen Number of navigation links to show (0 for all pages). Works best if the number is odd.
 * @param bool $firstlast Add links to the first and last pages of you gallery
 * @param int $current the current page
 * @param int $total total number of pages
 *
 */
function getPageNavList($_oneImagePage, $navlen, $firstlast, $current, $total)
{
    $result = array();
    if (hasPrevPage()) {
        $result['prev'] = getPrevPageURL();
    } else {
        $result['prev'] = NULL;
    }
    if ($firstlast) {
        $result[1] = getPageNumURL(1, $total);
    }
    if ($navlen == 0) {
        $navlen = $total;
    }
    $extralinks = 2;
    if ($firstlast) {
        $extralinks = $extralinks + 2;
    }
    $len = floor(($navlen - $extralinks) / 2);
    $j = max(round($extralinks / 2), min($current - $len - (2 - round($extralinks / 2)), $total - $navlen + $extralinks - 1));
    $ilim = min($total, max($navlen - round($extralinks / 2), $current + floor($len)));
    $k1 = round(($j - 2) / 2) + 1;
    $k2 = $total - round(($total - $ilim) / 2);
    for ($i = $j; $i <= $ilim; $i++) {
        $result[$i] = getPageNumURL($i, $total);
    }
    if ($firstlast) {
        $result[$total] = getPageNumURL($total, $total);
    }
    if (hasNextPage()) {
        $result['next'] = getNextPageURL();
    } else {
        $result['next'] = NULL;
    }
    return $result;
}
开发者ID:IliyanGochev,项目名称:zenphoto,代码行数:46,代码来源:template-functions.php


示例7: printBaseAlbumMenuJump

						<?php 
            }
            ?>
					</div>
					<?php 
        }
        ?>
				</div>

				<div id="page-nav" class="clearfix">
					<div class="jump"><?php 
        printBaseAlbumMenuJump('count', gettext('Gallery Index'));
        ?>
</div>
					<?php 
        if ($showpag && (hasNextPage() || hasPrevPage())) {
            printPageListWithNav('« ' . gettext('prev'), gettext('next') . ' »', false, true, 'pagination');
        }
        ?>
				</div>

				<?php 
    }
    ?>
				
			<?php 
} else {
    ?>
			<p><?php 
    echo gettext('Search and archive functions have been disabled...');
    ?>
开发者ID:BimbaLaszlo,项目名称:zpbase,代码行数:31,代码来源:search.php


示例8: printGoogleMap

        }
    }
    ?>
					<?php 
    if (function_exists('printGoogleMap')) {
        ?>
<div id="map-wrap"><?php 
        printGoogleMap('Google Map', null, 'hide');
        ?>
</div><?php 
    }
    ?>
				</div>
				
				<?php 
    if ((hasNextPage() || hasPrevPage()) && $showall == false) {
        $jumpclass = 'jump';
        $pagin = true;
    } else {
        $jumpclass = 'jump center';
        $pagin = false;
    }
    ?>
				<div id="page-nav">
					<div class="<?php 
    echo $jumpclass;
    ?>
"><?php 
    printBaseAlbumMenuJump('count', gettext('Gallery Index'));
    ?>
</div>
开发者ID:BimbaLaszlo,项目名称:zpbase,代码行数:31,代码来源:album-sdscroll.php


示例9: printNextPageLink

/**
 * Prints the URL of the next page.
 *
 * @param string $text text for the URL
 * @param string $title Text for the HTML title
 * @param string $class Text for the HTML class
 * @param string $id Text for the HTML id
 */
function printNextPageLink($text, $title = NULL, $class = NULL, $id = NULL)
{
    if (hasNextPage()) {
        printLink(getNextPageURL(), $text, $title, $class, $id);
    } else {
        echo "<span class=\"disabledlink\">{$text}</span>";
    }
}
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:16,代码来源:template-functions.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP hasPerm函数代码示例发布时间:2022-05-15
下一篇:
PHP hasNextImage函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap