暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Footernav.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-06-28
  12. */
  13. namespace weapp\Footernav\controller;
  14. use think\Page;
  15. use think\Db;
  16. use app\common\controller\Weapp;
  17. use weapp\Footernav\model\FooternavModel;
  18. /**
  19. * 插件的控制器
  20. */
  21. class Footernav extends Weapp
  22. {
  23. /**
  24. * 实例化模型
  25. */
  26. private $model;
  27. /**
  28. * 实例化对象
  29. */
  30. private $db;
  31. /**
  32. * 插件基本信息
  33. */
  34. private $weappInfo;
  35. /**
  36. * 构造方法
  37. */
  38. public function __construct(){
  39. parent::__construct();
  40. $this->model = new FooternavModel;
  41. $this->db = Db::name('WeappFooternav');
  42. /*插件基本信息*/
  43. $this->weappInfo = $this->getWeappInfo();
  44. $this->assign('weappInfo', $this->weappInfo);
  45. /*--end*/
  46. }
  47. /**
  48. * 插件使用指南
  49. */
  50. public function doc(){
  51. return $this->fetch('doc');
  52. }
  53. public function demo(){
  54. return $this->fetch('demo');
  55. }
  56. /**
  57. * 系统内置钩子show方法(没用到这个方法,建议删掉)
  58. * 用于在前台模板显示片段的html代码,比如:QQ客服、对联广告等
  59. *
  60. * @param mixed $params 传入的参数
  61. */
  62. public function show($params = null){
  63. $info = $this->model->getWeappData();
  64. $this->assign('info', $info);
  65. echo $this->fetch('show');
  66. }
  67. /**
  68. * 插件后台管理 - 列表
  69. */
  70. public function index()
  71. {
  72. $info = $this->model->getWeappData();
  73. $this->assign('info', $info);
  74. $row = M('weapp')->where('code','eq','Footernav')->find();
  75. $this->assign('row', $row);
  76. return $this->fetch('index');
  77. }
  78. public function save()
  79. {
  80. if (IS_POST) {
  81. $data = input('post.');
  82. $info = $this->model->getWeappData();
  83. $saveData = array(
  84. 'data' => serialize($data),
  85. 'tag_weapp' => $data['tag_weapp'],
  86. 'update_time' => getTime(),
  87. );
  88. $r = Db::name('weapp')->where(array('code' => 'Footernav'))->update($saveData);
  89. if ($r) {
  90. \think\Cache::clear('hooks');
  91. adminLog('编辑' . $this->weappInfo['name'] . '成功'); // 写入操作日志
  92. $this->success("操作成功!", weapp_url('Footernav/Footernav/index'));
  93. }
  94. }
  95. $this->error("操作失败");
  96. }
  97. }