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


PHP printAlbumBreadcrumb函数代码示例

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


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

示例1: SearchEngine

</a> |
									<?php 
    if (is_null($_zp_current_album)) {
        $search = new SearchEngine();
        $params = trim(zp_getCookie('zenphoto_search_params'));
        $search->setSearchParams($params);
        $images = $search->getImages(0);
        $searchwords = $search->getSearchWords();
        $searchdate = $search->getSearchDate();
        $searchfields = $search->getSearchFields(true);
        $page = $search->page;
        $returnpath = getSearchURL($searchwords, $searchdate, $searchfields, $page);
        echo '<a href=' . html_encode($returnpath) . '><em>' . gettext('Search') . '</em></a> | ';
    } else {
        printParentBreadcrumb();
        printAlbumBreadcrumb("", " | ");
    }
    ?>
 </span>
								Slideshow
							</div> <!-- navbar -->
						</div> <!-- wrapnav -->
					</div> <!-- galleryheader -->
				</div> <!-- main2 -->
				<div id="content">
					<div id="main">
						<div id="slideshowpage">
	<?php 
    printSlideShow(false, true);
    ?>
						</div>
开发者ID:rb26,项目名称:zenphoto,代码行数:31,代码来源:slideshow.php

示例2: zp_apply_filter

<?php 
zp_apply_filter('theme_body_open');
?>

<div id="main">

	<div id="gallerytitle">
		<h2><span><a href="<?php 
echo getGalleryIndexURL();
?>
" title="Gallery Index"><?php 
echo getGalleryTitle();
?>
</a> | <?php 
printParentBreadcrumb();
printAlbumBreadcrumb();
?>
 | <?php 
printImageTitle();
?>
</span></h2>
	</div>

<div id="imgnav_tlg">
		<?php 
if (hasPrevImage()) {
    ?>
		<div style="float:left;">
		<a href="<?php 
    echo getPrevImageURL();
    ?>
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:image.php

示例3: getGalleryIndexURL

<div id="content">

	<div id="breadcrumb">
	<h2><a href="<?php 
echo getGalleryIndexURL(false);
?>
" title="<?php 
gettext('Index');
?>
"><?php 
echo gettext("Index");
?>
</a> &raquo; <?php 
echo gettext("Gallery");
printParentBreadcrumb(" &raquo; ", " &raquo; ", " &raquo; ");
printAlbumBreadcrumb(" ", " &raquo; ");
?>
			 <strong><?php 
printImageTitle(true);
?>
</strong> (<?php 
echo imageNumber() . "/" . getNumImages();
?>
)
			</h2>
		</div>
	<div id="content-left">

	<!-- The Image -->
 <?php 
//
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:31,代码来源:image.php

示例4: gettext

echo gettext('Home');
?>
</a> &raquo; <a href="<?php 
echo getCustomPageURL('gallery');
?>
" title="<?php 
echo gettext('Gallery Index');
?>
"><?php 
echo gettext('Gallery Index');
?>
</a> &raquo; <?php 
printParentBreadcrumb('', ' » ', ' » ');
?>
 <?php 
printAlbumBreadcrumb('', ' » ');
printImageTitle(true);
?>
</h2>
</div>
</div> <!-- close #header -->
<div id="content">
	<div id="main"<?php 
if ($zpmin_switch) {
    echo ' class="switch"';
}
?>
>
		<?php 
if (function_exists('printThumbNav')) {
    printThumbNav(2, 77, 77, 77, 77);
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:image.php

示例5: printHomeLink

printHomeLink('', ' :: ');
?>
  <a href="<?php 
echo htmlspecialchars(getGalleryIndexURL());
?>
" title="<?php 
echo gettext('Albums Index');
?>
"><?php 
echo getGalleryTitle();
?>
</a>
  ::
  <?php 
printParentBreadcrumb();
printAlbumBreadcrumb("", " :: ");
?>
  <?php 
printImageTitle(true);
?>
</h1>

<?php 
if (!checkForPassword()) {
    ?>
  
  <div class="pagelist">
    <ul>
      <?php 
    if (hasPrevImage()) {
        ?>
开发者ID:ItsHaden,项目名称:epicLanBootstrap,代码行数:31,代码来源:image.php


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