當前位置: 首頁>>代碼示例>>PHP>>正文


PHP printGalleryDesc函數代碼示例

本文整理匯總了PHP中printGalleryDesc函數的典型用法代碼示例。如果您正苦於以下問題:PHP printGalleryDesc函數的具體用法?PHP printGalleryDesc怎麽用?PHP printGalleryDesc使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了printGalleryDesc函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: shortenContent

			<div id="homegal-wrap">
				<div class="container" id="home-right">
					<div class="content">
						<div class="slideshow-container">
							<div id="loading" class="loader"></div>
							<div id="slideshow" class="slideshow"></div>
						</div>
						<div id="caption" class="caption-container">

						</div>
					</div>
				</div>

				<div class="container" id="home-left">
					<div><?php 
    echo shortenContent(printGalleryDesc(), 20, '...');
    ?>
</div>
					<div id="minigal-thumbwrap">
						<div class="navigation-container">
							<div id="thumbshome" class="navigation">
								<a class="pageLink prev" style="visibility: hidden;" href="#" title="Previous Page"></a>
								<ul class="thumbs noscript">
									<?php 
    if ($minigalstat) {
        ?>
										<?php 
        $images = getImageStatistic($minigalcount, $zpgal_minigaloption);
        foreach ($images as $image) {
            ?>
											<li>
開發者ID:Imagenomad,項目名稱:Unsupported,代碼行數:31,代碼來源:gallery.php

示例2: printPageExtraContent

		<div class="extracontent">
			<?php 
    printPageExtraContent();
    ?>
		</div>
	<?php 
}
?>

	<!-- PRINTS GALLERY DESCRIPTION -->
	<h4 class="blockhead"><span><?php 
echo gettext('About');
?>
</span></h4>
	<?php 
printGalleryDesc();
?>

	<!-- PRINTS ZENPAGE LATEST NEWS, IF APPLICABLE -->
	<?php 
if ($zenpage && getLatestNews() && $_zp_gallery_page != 'news.php' && $zpfocus_news) {
    if ($zpfocus_spotlight == 'latest' && $_zp_gallery_page == 'index.php') {
        ?>
			<div id="spotlight2">
				<h4 class="blockhead"><span><?php 
        echo gettext('More News');
        ?>
</span></h4>
				<?php 
        printLatestNews(4, '', true, true, 150, true, null);
        ?>
開發者ID:ariep,項目名稱:ZenPhoto20-DEV,代碼行數:31,代碼來源:inc-sidebar.php

示例3: gettext

?>
					</div>
					<h2><?php 
echo gettext('User Registration');
?>
</h2>
					<?php 
printRegistrationForm();
?>
				</div>
				<div id="sidebar"<?php 
if ($zpmin_switch) {
    echo ' class="switch"';
}
?>
>
					<div class="sidebar-divide">
						<?php 
printGalleryDesc(true);
?>
					</div>
					<?php 
include "inc-sidemenu.php";
?>
				</div>
			</div>

<?php 
include "inc-footer.php";
?>
		
開發者ID:Imagenomad,項目名稱:Unsupported,代碼行數:30,代碼來源:register.php


注:本文中的printGalleryDesc函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。