本文整理汇总了PHP中tpl_function_seolink函数的典型用法代码示例。如果您正苦于以下问题:PHP tpl_function_seolink函数的具体用法?PHP tpl_function_seolink怎么用?PHP tpl_function_seolink使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了tpl_function_seolink函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: tpl_function_seolink
}
?>
</div>
</div>
<a href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => view, 'data' => $this->_vars['item']['user']), $this);
?>
">
<img alt="" src="<?php
echo $this->_vars['item']['user']['media']['user_logo']['thumbs']['great'];
?>
" />
</a>
<div class="info">
<div class="text-overflow"><a href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'view', 'data' => $this->_vars['item']['user']), $this);
?>
"><?php
echo $this->_vars['item']['user']['output_name'];
?>
</a>, <?php
echo $this->_vars['item']['user']['age'];
?>
</div>
<?php
if ($this->_vars['item']['user']['location']) {
?>
<div class="text-overflow"><?php
echo $this->_vars['item']['user']['location'];
?>
</div><?php
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_60191722b9fec86cba5943d1001006e7.php
示例2: tpl_function_seolink
<li<?php
if ($this->_vars['action'] == 'payments_history') {
?>
class="active"<?php
}
?>
><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'account', 'action' => 'payments_history'), $this);
?>
">History</a></li>
<li<?php
if ($this->_vars['action'] == 'banners') {
?>
class="active"<?php
}
?>
><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'account', 'action' => 'banners'), $this);
?>
"><?php
echo l('header_my_banners', 'banners', '', 'text', array());
?>
</a></li>
<?php
/*
<li<?php if ($this->_vars['action'] == 'send_money'): ?> class="active"<?php endif; ?>><a data-pjax-no-scroll="1" href="<?php echo tpl_function_seolink(array('module' => 'users','method' => 'account','action' => 'send_money'), $this);?>"><?php echo l('send_money', 'send_money', '', 'text', array()); ?></a></li>
*/
?>
</ul>
</div>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:30,代码来源:c_162090493036b9f6a2c82778f15b8d41.php
示例3: tpl_function_seolink
?>
><a href="<?php
echo tpl_function_seolink(array('module' => 'media', 'method' => 'video'), $this);
?>
"><span><?php
echo l('video', 'media', '', 'text', array());
?>
</span></a></li>
<li data-param="albums"<?php
if ($this->_vars['gallery_param'] == 'albums') {
?>
class="active"<?php
}
?>
><a href="<?php
echo tpl_function_seolink(array('module' => 'media', 'method' => 'albums'), $this);
?>
"><span><?php
echo l('albums', 'media', '', 'text', array());
?>
</span></a></li>
</ul>
<span id="gallery_albums"<?php
if ($this->_vars['gallery_param'] != 'albums') {
?>
class="hide"<?php
}
?>
><?php
echo $this->_vars['albums'];
?>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_e94b0c51006cddda7cfef8beecb6091a.php
示例4: tpl_function_seolink
<?php
require_once 'C:\\xampp\\htdocs\\iot.calit2.uci.edu\\system\\libraries\\template_lite\\plugins\\compiler.l.php';
$this->register_compiler("l", "tpl_compiler_l");
require_once 'C:\\xampp\\htdocs\\iot.calit2.uci.edu\\system\\libraries\\template_lite\\plugins\\function.seolink.php';
$this->register_function("seolink", "tpl_function_seolink");
/* V2.10 Template Lite 4 January 2007 (c) 2005-2007 Mark Dickenson. All rights reserved. Released LGPL. 2015-08-31 23:09:08 Pacific Daylight Time */
?>
<li<?php
if (!$this->_vars['kisses_count']) {
?>
class="hide-always"<?php
}
?>
>
<a href="<?php
echo tpl_function_seolink(array('module' => 'kisses', 'method' => 'inbox'), $this);
?>
">
<?php
echo l('header_new_kisses', 'kisses', '', 'text', array());
?>
: <b class="summand fright kisses_count"><?php
echo $this->_vars['kisses_count'];
?>
</b>
</a>
</li>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:29,代码来源:c_a72a07f30503fdceaaeff69c664a2645.php
示例5: tpl_function_seolink
$this->_sections['m']['show'] = false;
}
} else {
$this->_sections['m']['total'] = 0;
}
if ($this->_sections['m']['show']) {
for ($this->_sections['m']['index'] = $this->_sections['m']['start'], $this->_sections['m']['iteration'] = 1; $this->_sections['m']['iteration'] <= $this->_sections['m']['total']; $this->_sections['m']['index'] += $this->_sections['m']['step'], $this->_sections['m']['iteration']++) {
$this->_sections['m']['rownum'] = $this->_sections['m']['iteration'];
$this->_sections['m']['index_prev'] = $this->_sections['m']['index'] - $this->_sections['m']['step'];
$this->_sections['m']['index_next'] = $this->_sections['m']['index'] + $this->_sections['m']['step'];
$this->_sections['m']['first'] = $this->_sections['m']['iteration'] == 1;
$this->_sections['m']['last'] = $this->_sections['m']['iteration'] == $this->_sections['m']['total'];
?>
<td>
<a href="<?php
echo tpl_function_seolink(array('module' => 'memberships', 'method' => 'form', 'gid' => $this->_vars['block_memberships'][$this->_sections['m']['index']]['gid']), $this);
?>
"
class="button"><?php
echo l('btn_buy_now', 'memberships', '', 'text', array());
?>
</a>
</td>
<?php
}
}
?>
</tr>
<?php
}
?>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_0ebd83e0ee59e7aada33765c778bb66e.php
示例6: l
}
}
?>
</form>
<?php
}
?>
<?php
} else {
?>
<p><?php
echo l('service_buy_text', 'services', '', 'text', array());
?>
</p>
<a href="<?php
echo tpl_function_seolink(array('module' => 'services', 'method' => 'index', 'gid' => $this->_vars['template']['gid']), $this);
?>
" target="blank"><?php
echo l('service_link_buy', 'services', '', 'text', array());
?>
</a>
<?php
}
?>
</div>
<div class="clr"></div>
</div>
<?php
$this->_block_content = ob_get_contents();
ob_end_clean();
$this->_block_content = tpl_block_strip($this->_tag_stack[count($this->_tag_stack) - 1][1], $this->_block_content, $this);
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_5e24172afeafdbb03e9993d90bca0d3c.php
示例7: l
?>
"><?php
echo l('header_play', 'like_me', '', 'text', array());
?>
</a></li>
<?php
}
?>
<li<?php
if ($this->_vars['action'] == 'matches') {
?>
class="active"<?php
}
?>
><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'like_me', 'method' => 'index', 'action' => 'matches'), $this);
?>
"><?php
echo l('header_matches', 'like_me', '', 'text', array());
?>
</a></li>
</ul>
</div>
<div id="action-block"></div>
</div>
</div>
<script>
<?php
if (!empty($this->_vars['user_data']['have_more'])) {
?>
var all_loaded = <?php
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_1353012eb57e8da4ac5b49d312089d32.php
示例8: l
<input type="button" name="btn_send" value="<?php
echo l('btn_send', 'mailbox', '', 'button', array());
?>
" id="btn_send_message" class="btn">
<?php
if ($this->_vars['type'] == 'short' && !$this->_vars['is_reply']) {
?>
<a href="javascript:void(0);" class="fright" id="write_message_full"><?php
echo l('link_message_form', 'mailbox', '', 'text', array());
?>
</a>
<?php
} elseif (!$this->_vars['write_message']) {
?>
<a href="<?php
echo tpl_function_seolink(array('module' => 'mailbox', 'method' => $this->_vars['folder']), $this);
?>
" class="btn-link"><i class="icon-arrow-left icon-big edge hover"></i><i><?php
echo l('link_back_to_' . $this->_vars['folder'], 'mailbox', '', 'text', array());
?>
</i></a>
<?php
}
?>
</div>
<div class="clr"></div>
<?php
if ($this->_vars['type'] == 'short' && !$this->_vars['is_reply']) {
?>
<input type="hidden" name="id_to_user" value="<?php
echo $this->_vars['user_id'];
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_ca0a0ee06ee3eba0247641e9bc631aac.php
示例9: tpl_function_seolink
?>
(<?php
echo $this->_vars['trash_new_message'];
?>
)<?php
}
?>
</a></li>
<li<?php
if ($this->_vars['folder'] == 'spam') {
?>
class="active"<?php
}
?>
id="spam"><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'mailbox', 'method' => 'spam'), $this);
?>
"><?php
echo l('spam', 'mailbox', '', 'text', array());
?>
<?php
if ($this->_vars['spam_new_message'] > 0) {
?>
(<?php
echo $this->_vars['spam_new_message'];
?>
)<?php
}
?>
</a></li>
</ul>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_e1f8df8502d7e2aeb8b75daf5cb234e9.php
示例10: foreach
?>
<span id="friendlist_<?php
echo $this->_vars['friendlist_button_rand'];
?>
">
<span id="friendlist_links_<?php
echo $this->_vars['friendlist_button_rand'];
?>
">
<?php
if (is_array($this->_vars['buttons']) and count((array) $this->_vars['buttons'])) {
foreach ((array) $this->_vars['buttons'] as $this->_vars['btn_name'] => $this->_vars['btn']) {
?>
<a href="<?php
echo tpl_function_seolink(array('module' => 'friendlist', 'method' => $this->_vars['btn']['method'], 'destination_user_id' => $this->_vars['id_dest_user']), $this);
?>
"
class="link-r-margin"
data-pjax="0" method="<?php
echo $this->_vars['btn']['method'];
?>
" onclick="event.preventDefault();"
title="<?php
echo l('action_' . $this->_vars['btn_name'], 'friendlist', '', 'text', array());
?>
" data-user_id="<?php
echo $this->_vars['id_dest_user'];
?>
"><i class="icon-<?php
echo $this->_vars['btn']['icon'];
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_ff932a91b781eeeae7a709d1efff0604.php
示例11: l
<?php
echo l('error_empty_billing_system_list', 'service', '', 'text', array());
?>
<?php
}
?>
<?php
}
?>
<?php
}
?>
</form>
<div class="pt10">
<a class="btn-link" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => account, 'action' => 'services'), $this);
?>
">
<i class="icon-arrow-left icon-big edge hover"></i><i><?php
echo l('back_to_payment_services', 'services', '', 'text', array());
?>
</i>
</a>
</div>
</div>
</div>
<div class="clr"></div>
<?php
$this->_block_content = ob_get_contents();
ob_end_clean();
$this->_block_content = tpl_block_strip($this->_tag_stack[count($this->_tag_stack) - 1][1], $this->_block_content, $this);
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_041580a8f04bc340fbff19ca4122fd7d.php
示例12: l
</td>
</tr>
<?php
}
}
?>
</table>
</div>
<div class="b outside">
<input type="submit" class='btn' value="<?php
echo l('btn_send', 'start', '', 'button', array());
?>
" name="btn_save">
<a class="btn-link" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => account, 'action' => 'payments_history'), $this);
?>
">
<i class="icon-arrow-left icon-big edge hover"></i><i><?php
echo l('btn_cancel', 'start', '', 'text', array());
?>
</i>
</a>
</div>
</div>
</form>
</div>
</div>
<div class="clr"></div>
<?php
$this->_block_content = ob_get_contents();
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_0dc5ae066ea50435eef312bdde000b3b.php
示例13: tpl_function_helper
" name="logbtn">
</div>
</form>
<?php
echo tpl_function_helper(array('func_name' => 'show_social_networking_login', 'module' => 'users_connections'), $this);
?>
</div>
<div class="clr"></div>
<div>
<p class="header-comment"><?php
echo l('text_register_comment', 'users', '', 'text', array());
?>
</p>
<a href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'registration'), $this);
?>
" class="btn-link"><i class="fa-arrow-right icon-big edge hover"></i><i><?php
echo l('link_register', 'users', '', 'text', array());
?>
</i></a>
</div>
</div>
<div class="clr"></div>
<?php
$_templatelite_tpl_vars = $this->_vars;
echo $this->_fetch_compile_include($this->general_path . $this->get_current_theme_gid('', '') . "footer.tpl", array('load_type' => false));
$this->_vars = $_templatelite_tpl_vars;
unset($_templatelite_tpl_vars);
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_82b9a45b1613238e5e188b8b5796ce2e.php
示例14: tpl_function_block
?>
: <a href="<?php
echo $this->_vars['data']['feed_link'];
?>
"><?php
echo $this->_vars['data']['feed']['title'];
?>
</a><?php
}
?>
<div class="clr"></div>
<?php
echo tpl_function_block(array('name' => 'comments_form', 'module' => 'comments', 'gid' => news, 'id_obj' => $this->_vars['data']['id'], 'hidden' => 0, 'count' => $this->_vars['data']['comments_count']), $this);
?>
<br><a href="<?php
echo tpl_function_seolink(array('module' => 'news', 'method' => 'index'), $this);
?>
"><?php
echo l('link_back_to_news', 'news', '', 'text', array());
?>
</a>
</div>
</div>
<?php
echo tpl_function_block(array('name' => 'show_social_networks_like', 'module' => 'social_networking'), $this);
echo tpl_function_block(array('name' => 'show_social_networks_share', 'module' => 'social_networking'), $this);
echo tpl_function_block(array('name' => 'show_social_networks_comments', 'module' => 'social_networking'), $this);
?>
<div class="clr"></div>
<?php
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_9bb1dbaeb63523f7ccb9c2037a97e29d.php
示例15: foreach
</div>
</div>
<?php
}
?>
</div>
<?php
if (is_array($this->_vars['sections']) and count((array) $this->_vars['sections'])) {
foreach ((array) $this->_vars['sections'] as $this->_vars['item']) {
?>
<h2 class="line top bottom linked">
<?php
echo $this->_vars['item']['name'];
?>
<a class="fright" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'profile', 'section-code' => $this->_vars['item']['gid'], 'section-name' => $this->_vars['item']['name']), $this);
?>
"><i class="fa-pencil icon-big edge hover"></i></a>
</h2>
<div class="view-section">
<?php
$_templatelite_tpl_vars = $this->_vars;
echo $this->_fetch_compile_include($this->module_path . "users" . $this->module_templates . $this->get_current_theme_gid('', '"users"') . "custom_view_fields.tpl", array('fields_data' => $this->_vars['item']['fields'], 'load_type' => false));
$this->_vars = $_templatelite_tpl_vars;
unset($_templatelite_tpl_vars);
?>
</div>
<?php
}
}
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_e929b5465382580a80fee70432144ee2.php
示例16: tpl_function_seolink
: <?php
echo $this->_vars['item']['data_admin'][$this->_vars['setting_gid']];
?>
</span></div>
<?php
}
}
?>
</div>
</dt>
<dt class="righted">
<?php
if ($this->_vars['item']['price'] || $this->_vars['item']['template']['price_type'] != 1) {
?>
<input type="button" onclick="locationHref('<?php
echo tpl_function_seolink(array('module' => 'services', 'method' => 'form', 'gid' => $this->_vars['item']['gid']), $this);
?>
');" value="<?php
echo l('btn_buy_now', 'services', '', 'text', array());
?>
" />
<?php
} else {
?>
<input type="button" onclick="
var href='<?php
echo $this->_vars['site_url'];
?>
services/user_service_activate/<?php
echo $this->_vars['user_id'];
?>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_7208815b601c9604134a0f6d505c1563.php
示例17: l
</div>
<?php
if ($this->_vars['data']['id']) {
?>
<div class="row">
<div class="h"><?php
echo l('field_view_link', 'content', '', 'text', array());
?>
: </div>
<div class="v">
<a href="<?php
echo tpl_function_seolink(array('module' => 'content', 'method' => 'view', 'data' => $this->_vars['data']), $this);
?>
">
<?php
echo tpl_function_seolink(array('module' => 'content', 'method' => 'view', 'data' => $this->_vars['data']), $this);
?>
</a>
</div>
</div>
<?php
}
?>
<div class="row">
<div class="h"><?php
echo l('field_lang', 'content', '', 'text', array());
?>
: </div>
<div class="v">
<select name="lang_id">
<?php
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_71899cb8f66bc7ecb605395d8ce149dd.php
示例18: tpl_function_seolink
<li<?php
if ($this->_vars['profile_section'] == 'profile') {
?>
class="active"<?php
}
?>
><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'view', 'data' => $this->_vars['seodata'], 'section-code' => 'profile', 'section-name' => $this->_vars['profile_section_name']), $this);
?>
"><?php
echo $this->_vars['profile_section_name'];
?>
</a></li>
<?php
$this->assign('gallery_section_name', l('filter_section_gallery', 'users', '', 'text', array()));
?>
<li<?php
if ($this->_vars['profile_section'] == 'gallery') {
?>
class="active"<?php
}
?>
><a data-pjax-no-scroll="1" href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'view', 'data' => $this->_vars['seodata'], 'section-code' => 'gallery', 'section-name' => $this->_vars['gallery_section_name']), $this);
?>
"><?php
echo $this->_vars['gallery_section_name'];
?>
</a></li> </ul>
</div>
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:30,代码来源:c_80fe42bce2c2e607518944130f084621.php
示例19: tpl_function_seolink
?>
">
<i class="fa-heart icon-big edge hover"></i>
</a>
<a class="remove_from_fav<?php
if ($this->_vars['action'] == 'add') {
?>
hide<?php
}
?>
link-r-margin" data-userId="<?php
echo $this->_vars['id_dest_user'];
?>
"
href="<?php
echo tpl_function_seolink(array('module' => 'favourites', 'method' => 'remove', 'destination_user_id' => $this->_vars['id_dest_user']), $this);
?>
"
data-pjax="0" onclick="event.preventDefault();" class="link-r-margin"
title="<?php
echo l('action_remove', 'favourites', '', 'text', array());
?>
">
<i class="fa-heart icon-big edge hover">
<i class="fa-mini-stack icon-remove"></i>
</i>
</a>
</span>
<script><?php
echo '
$(function() {
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_e9d2a56b5b1b1e88e4052102a911ce95.php
示例20: tpl_function_seolink
echo $this->_vars['text_user_logo'];
?>
" title="<?php
echo $this->_vars['text_user_logo'];
?>
" /></a>
</div>
<div class="content">
<h3>
<span><?php
if ($this->_vars['comments']['users'][$this->_vars['comment_id_user']]['is_guest'] && $this->_vars['comment']['user_name']) {
echo $this->_vars['comment']['user_name'];
} else {
?>
<a href="<?php
echo tpl_function_seolink(array('module' => 'users', 'method' => 'view', 'data' => $this->_vars['comments']['users'][$this->_vars['comment_id_user']]), $this);
?>
"><?php
echo $this->_vars['comments']['users'][$this->_vars['comment_id_user']]['output_name'];
?>
</a><?php
}
?>
</span><?php
if (!$this->_vars['comment']['is_author']) {
?>
<span class="ml10"><?php
echo tpl_function_block(array('name' => 'mark_as_spam_block', 'module' => 'spam', 'object_id' => $this->_vars['comment']['id'], 'type_gid' => 'comments_object', 'template' => 'minibutton'), $this);
?>
</span><?php
}
开发者ID:Calit2-UCI,项目名称:IoT_Map,代码行数:31,代码来源:c_0a3157dba8e334f0c22762bc8e507489.php
注:本文中的tpl_function_seolink函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论