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


PHP AddonsController::config方法代码示例

本文整理汇总了PHP中Home\Controller\AddonsController::config方法的典型用法代码示例。如果您正苦于以下问题:PHP AddonsController::config方法的具体用法?PHP AddonsController::config怎么用?PHP AddonsController::config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Home\Controller\AddonsController的用法示例。


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

示例1: config

 public function config()
 {
     $res['title'] = '百度LBS云';
     $res['url'] = addons_url('Qlbs://Qlbs/lists');
     $res['class'] = '';
     $nav[] = $res;
     $res['title'] = '查看成员';
     $res['url'] = addons_url('Qlbs://User/lists');
     $res['class'] = '';
     $nav[] = $res;
     $res['title'] = '配置';
     $res['url'] = addons_url('Qlbs://Qlbs/config');
     $res['class'] = 'current';
     $nav[] = $res;
     $this->assign('nav', $nav);
     $normal_tips = '百度Ak<a href="http://lbsyun.baidu.com/apiconsole/key" target="_blank">http://lbsyun.baidu.com/apiconsole/key</a>,具体操作请参考百度LBS云检索</br>本插件须要服务号认证才能使用';
     $this->assign('normal_tips', $normal_tips);
     parent::config($this->model);
 }
开发者ID:strivi,项目名称:siples,代码行数:19,代码来源:QlbsController.class.php

示例2: config

 function config()
 {
     // 使用提示
     $normal_tips = '如需用户关注时提示先绑定,请进入‘欢迎语’插件按提示进行配置提示语';
     $this->assign('normal_tips', $normal_tips);
     parent::config();
 }
开发者ID:Backflag,项目名称:weiphp2.0.1202,代码行数:7,代码来源:UserCenterController.class.php

示例3: config

 function config()
 {
     // 使用提示
     $normal_tips = '如需用户关注时提示先绑定,请进入‘欢迎语’插件按提示进行配置提示语';
     $this->assign('normal_tips', $normal_tips);
     if (IS_POST) {
         $config = I('config');
         $credit['score'] = intval($config['score']);
         $credit['experience'] = intval($config['experience']);
         $token = get_token();
         D('Common/Credit')->updateSubscribeCredit($token, $credit, 1);
     }
     parent::config();
 }
开发者ID:kevinstudio,项目名称:zaodianla,代码行数:14,代码来源:UserCenterController.class.php

示例4: config

 function config()
 {
     $this->assign('normal_tips', '填写信息前请先到服务商平台开通账号:<a href="http://www.yuntongxun.com/" target="_blank">云之讯官网</a>,<a href="http://www.ucpaas.com/" target="_blank">云通讯官网</a>');
     parent::config();
 }
开发者ID:chenpusn,项目名称:haozhixian_bak,代码行数:5,代码来源:SmsController.class.php

示例5: config

 function config()
 {
     $normal_tips = '在微信里回复“意见反馈”即可以查看效果,也可点击:<a target="_blank" href="' . U('preview') . '">预览</a>,<a id="copyLink" data-clipboard-text="' . U('suggest', array('token' => get_token())) . '">复制链接</a><script type="application/javascript">$.WeiPHP.initCopyBtn("copyLink");</script>';
     $this->assign('normal_tips', $normal_tips);
     parent::config();
 }
开发者ID:LukeChow1018,项目名称:weixin,代码行数:6,代码来源:SuggestionsController.class.php


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