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


PHP printAlbumDesc函数代码示例

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


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

示例1: getGalleryIndexURL

		<div class="content-primary">
		<h2 class="breadcrumb"><a href="<?php 
echo getGalleryIndexURL();
?>
"><?php 
echo gettext('Gallery');
?>
</a> <?php 
printParentBreadcrumb('', '', '');
?>
 <?php 
printAlbumTitle();
?>
</h2>
		<?php 
printAlbumDesc();
?>
		<?php 
if (hasPrevPage() || hasNextPage()) {
    printPageListWithNav(gettext("prev"), gettext("next"), false, true, 'pagelist', NULL, true, 7);
}
?>
		<ul data-role="listview" data-inset="true">
			<?php 
while (next_album()) {
    ?>
							<li>
								<a href="<?php 
    echo html_encode(getAlbumURL());
    ?>
" title="<?php 
开发者ID:rb26,项目名称:zenphoto,代码行数:31,代码来源:album.php

示例2: printAlbumTitle

?>
>
					<div class="sidebar-divide">
						<h3><?php 
printAlbumTitle(true);
?>
</h3>
						<div class="sidebar-section"><?php 
printAlbumDate('', '', null, true);
?>
</div>
						<?php 
if (getAlbumDesc() || zp_loggedin()) {
    ?>
<div class="sidebar-section"><?php 
    printAlbumDesc(true);
    ?>
</div><?php 
}
?>
						<?php 
if (getTags() || zp_loggedin()) {
    ?>
<div class="sidebar-section"><?php 
    printTags('links', gettext('<strong>Tags:</strong>') . ' ', 'taglist', '');
    ?>
</div><?php 
}
?>
						<?php 
if (function_exists('printSlideShowLink')) {
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:album.php

示例3: printAlbumDate

</a></h2>
	<?php 
}
?>

	<div class="album-details">
		<?php 
printAlbumDate('', '', null, true);
?>
		<div class="album-tags"><?php 
printTags('links', gettext('| Tags:  '), 'taglist', ', ', true, '', true);
?>
</div>
	</div>
	<p class="description"><?php 
printAlbumDesc(true, '', gettext('Edit Description...'));
?>
</p>

	<?php 
if (isAlbumPage()) {
    ?>
	<div class="subalbum-wrap">
		<h4 class="blockhead"><span><?php 
    echo gettext('SubAlbums in ');
    echo getBareAlbumTitle();
    ?>
 (<?php 
    echo getNumAlbums();
    ?>
)</span></h4>
开发者ID:kokyandrei,项目名称:Unsupported,代码行数:31,代码来源:album.php

示例4: zp_side_bar

function zp_side_bar()
{
    ?>
	<div id="sidebar">
		<?php 
    //-------------If you are in the Image Page
    if (in_context(ZP_IMAGE)) {
        ?>
				<div class="imgnav">
					<?php 
        if (hasPrevImage()) {
            ?>
					<div class="imgprevious"><a href="<?php 
            echo getPrevImageURL();
            ?>
" title="Previous Image"><img src="<?php 
            echo getPrevImageThumb();
            ?>
" /><br /><small>&laquo; prev  |</small></a></div>
					<?php 
        }
        if (hasNextImage()) {
            ?>
					<div class="imgnext"><a href="<?php 
            echo getNextImageURL();
            ?>
" title="Next Image"><img src="<?php 
            echo getNextImageThumb();
            ?>
" /><br /><small>| next &raquo;</small></a></div>
					<?php 
        }
        ?>
				</div> 
		<div id="sbinfo">
			<b>Album Name:</b> <?php 
        printAlbumTitle(true);
        ?>
<br />
			<b>Number of Photos:</b> <?php 
        echo getNumImages();
        ?>
<br />
			<b>Album Date:</b> <?php 
        printAlbumDate($before = "Date: ", $format = "%F");
        ?>
<br />
			<b>Album Description:</b> <?php 
        printAlbumDesc(true);
        ?>
<br />
			<b>Image Name:</b> <?php 
        echo getImageTitle();
        ?>
<br />
			<b>Image Description:</b> <?php 
        printImageDesc(true);
        ?>
<br />
		</div>
			<?php 
        //--------------- If you are in the Album Page
    } else {
        if (in_context(ZP_ALBUM)) {
            ?>
		<b>Album Name:</b> <?php 
            printAlbumTitle(true);
            ?>
<br />
		<b>Number of Pictures:</b> <?php 
            echo getNumImages();
            ?>
<br />
		<b>Album Date:</b> <?php 
            printAlbumDate($before = "Date: ", $format = "%F");
            ?>
<br /> 
		<b>Album Description:</b> <?php 
            printAlbumDesc(true);
            ?>
<br />		
<?php 
            //--------------- If you are in the Index Page
        } else {
            if (in_context(ZP_INDEX)) {
            }
        }
    }
    ?>

</div>
<?php 
}
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:93,代码来源:functions.php


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