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


PHP display_param_link函数代码示例

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


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

示例1: T_

		<?php 
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array('before' => '', 'after' => '', 'text' => T_('Contact'), 'title' => T_('Send a message to the owner of this blog...')));
// Display a link to help page:
$Blog->help_link(array('before' => ' &bull; ', 'after' => ' ', 'text' => T_('Help')));
?>

		<?php 
// Display additional credits:
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits(array('list_start' => '&bull;', 'list_end' => ' ', 'separator' => '&bull;', 'item_start' => ' ', 'item_end' => ' '));
?>

		<br/><?php 
display_param_link($skin_links);
?>
 <a href="http://blog.thedarksighed.com/projectblog/" title="Custom b2evolution template designs">design by Andrew Hreschak</a>

	</p>

</div><!-- END pagefoot -->

</div><!-- END wrap -->



<?php 
// ------------------------- HTML FOOTER INCLUDED HERE --------------------------
skin_include('_html_footer.inc.php');
// Note: You can customize the default HTML footer by copying the
开发者ID:ldanielz,项目名称:uesp.blog,代码行数:31,代码来源:index.main.php

示例2: T_

$Blog->footer_text(array('before' => '', 'after' => ' &bull; '));
?>

		<?php 
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array('before' => '', 'after' => ' &bull; ', 'text' => T_('Contact'), 'title' => T_('Send a message to the owner of this blog...')));
?>

		<?php 
display_param_link($skin_links);
?>
 design by <?php 
display_param_link($francois_links);
?>
 / <?php 
display_param_link($skinfaktory_links);
?>
 / <a href="http://www.blog.hemminga.net/">Afwas</a> / <a href="http://www.tilqi.com">tilqicom</a>

		<?php 
// Display additional credits:
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits(array('list_start' => ' &bull; ' . T_('Credits') . ': ', 'list_end' => ' ', 'separator' => '|', 'item_start' => ' ', 'item_end' => ' '));
?>
	</p>
</div>
</div>

<?php 
// ------------------------- HTML FOOTER INCLUDED HERE --------------------------
开发者ID:b2evolution,项目名称:nifty_purple_skin,代码行数:31,代码来源:index.main.php

示例3: display_skin_credits

 /**
  * Credits to Dating Mood skin
  */
 function display_skin_credits()
 {
     $skin_links = array('' => array('http://www.datingmood.com/', array(array(50, 'dating skin'), array(80, 'Dating Mood'), array(100, 'dating'))));
     display_param_link($skin_links);
 }
开发者ID:ldanielz,项目名称:uesp.blog,代码行数:8,代码来源:_skin.class.php

示例4: T_

	<!-- end #wrapper2 -->
	<div id="footer">
		<p><?php 
// Display footer text (text can be edited in Blog Settings):
$Blog->footer_text(array('before' => '', 'after' => ' | '));
?>

		<?php 
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array('before' => '', 'after' => ' | ', 'text' => T_('Contact'), 'title' => T_('Send a message to the owner of this blog...')));
// Display a link to help page:
$Blog->help_link(array('before' => ' ', 'after' => ' | ', 'text' => T_('Help')));
?>

		<?php 
display_param_link(array('' => array('http://themefolio.com/', array(array(70, 'Pluralism skin'), array(84, 'Themefolio skin'), array(88, 'b2evolution skin'), array(91, 'blog skin'), array(96, 'blog theme'), array(100, 'blog template')))));
?>
		designed by <a href="http://www.nodethirtythree.com/">NodeThirtyThree</a>

		<?php 
// Display additional credits:
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits(array('list_start' => ' | ', 'list_end' => ' ', 'separator' => '|', 'item_start' => ' ', 'item_end' => ' '));
?>
</p>
	</div>
</div>
</div>
<!-- end #wrapper -->
<hr />
开发者ID:ldanielz,项目名称:uesp.blog,代码行数:31,代码来源:_body_footer.inc.php


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