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


PHP printAllTagsAs函数代码示例

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


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

示例1: printNewsArchive

</h3>
							<?php 
    printNewsArchive("archive");
    ?>
							<hr />
							<?php 
}
?>

						<h3><?php 
echo gettext('Popular Tags');
?>
</h3>
						<div id="tag_cloud">
							<?php 
printAllTagsAs('cloud', 'tags');
?>
						</div>
					</div>

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

示例2: gettext

?>
					</tr>
				</tbody>
			</table>

			<?php 
if (getOption('zpB_show_tags')) {
    ?>
			<table id="tags" class="table">
				<thead>
					<th><h4 class="center"><?php 
    echo gettext('Tags');
    ?>
</h4></th>
				</thead>
				<tbody>
					<tr>
						<td>
							<?php 
    printAllTagsAs('cloud', 'nav nav-pills', 'abc', false, true, 2.5, 30, 5, NULL, 1);
    ?>
						</td>
					</tr>
				</tbody>
			</table>
			<?php 
}
?>

<?php 
include 'inc_footer.php';
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:31,代码来源:archive.php

示例3: printAllDates

printAllDates('archive', 'year', 'month', 'desc');
?>
				
			</div>
			<div class="six columns offset-by-one">
				<?php 
if ($zenpage && $zpskel_usenews) {
    ?>
				<h3><?php 
    echo gettext('News Archive');
    ?>
</h3>
				<?php 
    printNewsArchive('archive', 'year', 'month', 'archive-active', false);
    ?>
				<?php 
}
?>
				<h3><?php 
echo gettext('Tag Cloud');
?>
</h3>
				<?php 
printAllTagsAs('cloud', 'month', 'abc', true, true, 2, 10, 1, null, 1);
?>
			</div>
		</div>
	</div>
<?php 
include "inc-bottom.php";
include "inc-footer.php";
开发者ID:Imagenomad,项目名称:Unsupported,代码行数:31,代码来源:archive.php

示例4: gettext

        ?>
						</div>
					</div>
					<?php 
    }
}
?>
					
					<div class="block archive">	
						<h5><?php 
echo gettext('Tags');
?>
</h5>
						<div class="archive-cols">
							<?php 
printAllTagsAs('list', 'year', 'results', true, true, 2, 50, 1);
?>
						</div>
					</div>

				</div>

				<div class="gallery-sidebar pad">
					<?php 
printSearchForm('', 'search', $_zp_themeroot . '/images/magnifying_glass_16x16.png', gettext('Search gallery'), $_zp_themeroot . '/images/list_12x11.png');
?>
	
					<hr />
					<?php 
include 'inc-archive-stats-menu.php';
?>
开发者ID:ckfreeman,项目名称:libratus,代码行数:31,代码来源:archive.php

示例5: printPageListWithNav

			<div class="pagination-nogal">
				<?php 
    printPageListWithNav(' « ', ' » ', false, true, 'clearfix', NULL, true, 7);
    ?>
			</div>
		<?php 
}
?>

		<?php 
if (getOption('show_tag')) {
    ?>
			<div class="headline-tags">
				<?php 
    printAllTagsAs('cloud', 'hor-list', 'abc', false, true, 2.5, 30, 5, NULL, 1);
    ?>
			</div>
		<?php 
}
?>

		<?php 
if (getOption('image_statistic') != 'none' && (extensionEnabled('image_album_statistics') || getOption('image_statistic') == 'random')) {
    ?>
			<?php 
    include 'inc_print_image_statistic.php';
    ?>
		<?php 
}
?>
开发者ID:ariep,项目名称:ZenPhoto20-DEV,代码行数:30,代码来源:gallery.php


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