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


PHP printSlideShowLink函数代码示例

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


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

示例1: printCustomSizedImage

					<?php 
    printCustomSizedImage(getAnnotatedImageTitle(), NULL, 230, 230, 230, 230, NULL, NULL, NULL, NULL, true, NULL);
    ?>
				</a>
			<?php 
}
?>
		</div>
		<br class="clearall" />
		<?php 
if (hasPrevPage() || hasNextPage()) {
    printPageListWithNav(gettext("prev"), gettext("next"), false, true, 'pagelist', NULL, true, 7);
}
if (function_exists('printSlideShowLink')) {
    echo '<span id="slideshowlink">';
    printSlideShowLink();
    echo '</span>';
}
if (function_exists('printAddToFavorites')) {
    echo "<br />";
    printAddToFavorites($_zp_current_album);
}
if (function_exists('printCommentForm')) {
    printCommentForm();
}
?>
		</div>
		 <div class="content-secondary">
			<?php 
jqm_printMenusLinks();
?>
开发者ID:rb26,项目名称:zenphoto,代码行数:31,代码来源:album.php

示例2: html_encode

                $lastImage++;
            }
            echo '<div class="image">' . "\n";
            echo '<div class="imagethumb">' . "\n";
            echo '<a href="' . html_encode(getImageLinkURL()) . '" title="' . GetBareImageTitle() . '">' . "\n";
            echo printImageThumb(annotateImage()) . "</a>\n";
            echo "</div>\n";
            echo "</div>\n";
        }
        ?>
 					</div>
 					</div> <!-- main -->
		 			<div class="clearage"></div>
 					<?php 
        if (function_exists('printSlideShowLink')) {
            printSlideShowLink(gettext('View Slideshow'), 'text-align:center;');
        }
        printNofM('Photo', $firstImage, $lastImage, getNumImages());
        ?>
 					</div> <!-- content -->
	 		<?php 
    } else {
        /* flash */
        if ($imagePage = isImagePage()) {
            ?>
 					<div id="flash">
 					<p align=center><font color=#663300><?php 
            echo gettext('For the best viewing experience') . ' ';
            ?>
<a href="http://www.macromedia.com/go/getflashplayer/"><?php 
            echo gettext('get Adobe Flash.');
开发者ID:hatone,项目名称:zenphoto-1.4.1.4,代码行数:31,代码来源:search.php

示例3: printCustomSizedImage

">
								<?php 
        printCustomSizedImage(getAnnotatedImageTitle(), NULL, 230, 230, 230, 230, NULL, NULL, NULL, NULL, true, NULL);
        ?>
								</a>
	<?php 
    }
    ?>
						</div>
						<br class="clearall" />
					<?php 
}
?>
					<?php 
if (function_exists('printSlideShowLink')) {
    printSlideShowLink(gettext('View Slideshow'));
}
if ($total == 0) {
    echo "<p>" . gettext("Sorry, no matches found. Try refining your search.") . "</p>";
}
printPageListWithNav("« " . gettext("prev"), gettext("next") . " »");
?>

				</div>
				<div class="content-secondary">
<?php 
jqm_printMenusLinks();
?>
				</div>
			</div><!-- /content -->
			<?php 
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:search.php

示例4: printTags

}
if (strlen($tagstring) > 0 || zp_loggedin()) {
    ?>
<li class="tags"><?php 
    printTags('links', ' ', 'taglist', ', ');
    ?>
</li><?php 
}
?>
					</ul>
				</div>
				<?php 
if ($useGslideshow) {
    ?>
					<div id="slideshowlink" class="sidebar-divide gslideshowlink"><?php 
    printSlideShowLink(gettext('Start Slideshow'));
    ?>
</div>
				<?php 
}
?>

				<?php 
if (!$zpmas_disablemeta) {
    ?>
					<?php 
    if (getImageMetaData() || zp_loggedin()) {
        ?>
<div class="sidebar-divide"><?php 
        printImageMetadata('', false, null, 'full-image-meta', true);
        ?>
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:image.php


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