123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 小虎哥 <1105415366@qq.com>
- * Date: 2018-4-3
- */
- namespace app\admin\controller;
- use think\Page;
- use think\Cache;
- class Links extends Base
- {
- public function index()
- {
- $list = array();
- $keywords = input('keywords/s');
- $condition = array();
- if (!empty($keywords)) {
- $condition['title'] = array('LIKE', "%{$keywords}%");
- }
- // 多语言
- $condition['lang'] = array('eq', $this->admin_lang);
- $linksM = M('links');
- $count = $linksM->where($condition)->count('id');// 查询满足要求的总记录数
- $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
- $list = $linksM->where($condition)->order('sort_order asc, id asc')->limit($Page->firstRow.','.$Page->listRows)->select();
- $show = $Page->show();// 分页显示输出
- $this->assign('page',$show);// 赋值分页输出
- $this->assign('list',$list);// 赋值数据集
- $this->assign('pager',$pager);// 赋值分页对象
- return $this->fetch();
- }
- /**
- * 添加友情链接
- */
- public function add()
- {
- if (IS_POST) {
- $post = input('post.');
- // 处理LOGO
- $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
- $logo = '';
- if ($is_remote == 1) {
- $logo = $post['logo_remote'];
- } else {
- $logo = $post['logo_local'];
- }
- $post['logo'] = $logo;
- // --存储数据
- $nowData = array(
- 'typeid' => empty($post['typeid']) ? 1 : $post['typeid'],
- 'url' => trim($post['url']),
- 'lang' => $this->admin_lang,
- 'sort_order' => 100,
- 'add_time' => getTime(),
- 'update_time' => getTime(),
- );
- $data = array_merge($post, $nowData);
- $insertId = M('links')->insertGetId($data);
- if (false !== $insertId) {
- Cache::clear('links');
- adminLog('新增友情链接:'.$post['title']);
- $this->success("操作成功!", url('Links/index'));
- }else{
- $this->error("操作失败!", url('Links/index'));
- }
- exit;
- }
- return $this->fetch();
- }
-
- /**
- * 编辑友情链接
- */
- public function edit()
- {
- if (IS_POST) {
- $post = input('post.');
- $r = false;
- if(!empty($post['id'])){
- // 处理LOGO
- $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
- $logo = '';
- if ($is_remote == 1) {
- $logo = $post['logo_remote'];
- } else {
- $logo = $post['logo_local'];
- }
- $post['logo'] = $logo;
- // --存储数据
- $nowData = array(
- 'typeid' => empty($post['typeid']) ? 1 : $post['typeid'],
- 'url' => trim($post['url']),
- 'update_time' => getTime(),
- );
- $data = array_merge($post, $nowData);
- $r = M('links')->where([
- 'id' => $post['id'],
- 'lang' => $this->admin_lang,
- ])
- ->cache(true, null, "links")
- ->update($data);
- }
- if (false !== $r) {
- adminLog('编辑友情链接:'.$post['title']);
- $this->success("操作成功!",url('Links/index'));
- }else{
- $this->error("操作失败!",url('Links/index'));
- }
- exit;
- }
- $id = input('id/d');
- $info = M('links')->where([
- 'id' => $id,
- 'lang' => $this->admin_lang,
- ])->find();
- if (empty($info)) {
- $this->error('数据不存在,请联系管理员!');
- exit;
- }
- if (is_http_url($info['logo'])) {
- $info['is_remote'] = 1;
- $info['logo_remote'] = handle_subdir_pic($info['logo']);
- } else {
- $info['is_remote'] = 0;
- $info['logo_local'] = handle_subdir_pic($info['logo']);
- }
- $this->assign('info',$info);
- return $this->fetch();
- }
-
- /**
- * 删除友情链接
- */
- public function del()
- {
- if (IS_POST) {
- $id_arr = input('del_id/a');
- $id_arr = eyIntval($id_arr);
- if(!empty($id_arr)){
- $result = M('links')->field('title')
- ->where([
- 'id' => ['IN', $id_arr],
- 'lang' => $this->admin_lang,
- ])->select();
- $title_list = get_arr_column($result, 'title');
- $r = M('links')->where([
- 'id' => ['IN', $id_arr],
- 'lang' => $this->admin_lang,
- ])
- ->cache(true, null, "links")
- ->delete();
- if($r){
- adminLog('删除友情链接:'.implode(',', $title_list));
- $this->success('删除成功');
- }else{
- $this->error('删除失败');
- }
- } else {
- $this->error('参数有误');
- }
- }
- $this->error('非法访问');
- }
- }
|