當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。