|
Server : nginx/1.18.0 System : Linux iZrj9edhd5u5pfsek09o1jZ 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /mnt/web/www.neatabattery.com/application/admin/controller/ |
<?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('非法访问');
}
}