|
Server : Apache System : Linux iZ6xhqomji47p1Z 5.10.134-15.al8.x86_64 #1 SMP Thu Jul 20 00:44:04 CST 2023 x86_64 User : www ( 1000) PHP Version : 8.1.30 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 : /www/wwwroot/fsjlkj.cn/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;
class Ad extends Base
{
/*
* 初始化操作
*/
public function _initialize()
{
parent::_initialize();
// 判断是否有广告位置
if (strtolower(ACTION_NAME) != 'index') {
$count = M('ad_position')->count('id');
if (empty($count)) {
$this->success('缺少广告位置,正在前往中……', url('AdPosition/add'), '', 3);
exit;
}
}
}
public function index()
{
$list = array();
$get = I('get.');
$pid = I('param.pid/d', 0);
$keywords = I('keywords/s');
$condition = array();
// 应用搜索条件
foreach (['keywords', 'pid'] as $key) {
if (isset($get[$key]) && $get[$key] !== '') {
if ($key == 'keywords') {
$condition['a.title'] = array('LIKE', "%{$get[$key]}%");
} else {
$tmp_key = 'a.'.$key;
$condition[$tmp_key] = array('eq', $get[$key]);
}
}
}
$adM = M('ad');
$count = $adM->alias('a')->where($condition)->count();// 查询满足要求的总记录数
$Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
$list = $adM->alias('a')->where($condition)->order('id desc')->limit($Page->firstRow.','.$Page->listRows)->select();
$show = $Page->show();// 分页显示输出
$this->assign('page',$show);// 赋值分页输出
$this->assign('list',$list);// 赋值数据集
$this->assign('pager',$Page);// 赋值分页对象
$ad_position = model('AdPosition')->getAll('*','id');
$this->assign('ad_position',$ad_position);
$this->assign('pid',$pid);// 赋值分页对象
return $this->fetch();
}
/**
* 新增
*/
public function add()
{
if (IS_POST) {
$post = I('post.');
$is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
$litpic = '';
if ($is_remote == 1) {
$litpic = $post['litpic_remote'];
} else {
$litpic = $post['litpic_local'];
}
$newData = array(
'litpic' => $litpic,
'add_time' => getTime(),
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
$r = M('ad')->insert($data);
if ($r) {
// 不管是添加还是修改广告 都清除一下缓存
// delFile(HTML_PATH); // 先清除缓存, 否则不好预览
\think\Cache::clear('ad');
adminLog('新增广告:'.$post['title']);
$this->success("操作成功", U('Ad/index', array('pid'=>$post['pid'])));
} else {
$this->error("操作失败");
}
exit;
}
$pid = I('param.pid/d', 0);
$this->assign('pid', $pid);
$ad_position = model('AdPosition')->getAll('*', 'id');
$this->assign('ad_position', $ad_position);
$ad_media_type = config('global.ad_media_type');
$this->assign('ad_media_type', $ad_media_type);
return $this->fetch();
}
/**
* 编辑
*/
public function edit()
{
if (IS_POST) {
$post = I('post.');
if(!empty($post['id'])){
$is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
$litpic = '';
if ($is_remote == 1) {
$litpic = $post['litpic_remote'];
} else {
$litpic = $post['litpic_local'];
}
$newData = array(
'litpic' => $litpic,
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
$r = M('ad')->cache(true,null,'ad')->update($data);
}
if ($r) {
// 不管是添加还是修改广告 都清除一下缓存
// delFile(HTML_PATH); // 先清除缓存, 否则不好预览
// \think\Cache::clear('ad'.$post['pid']);
adminLog('编辑广告');
$this->success("操作成功", U('Ad/index', array('pid'=>$post['pid'])));
} else {
$this->error("操作失败");
}
}
$assign_data = array();
$id = I('id/d');
$field = M('ad')->field('a.*')
->alias('a')
->where(array('a.id'=>$id))
->find();
if (empty($field)) {
$this->error('广告不存在,请联系管理员!');
exit;
}
if (is_http_url($field['litpic'])) {
$field['is_remote'] = 1;
$field['litpic_remote'] = $field['litpic'];
} else {
$field['is_remote'] = 0;
$field['litpic_local'] = $field['litpic'];
}
$assign_data['field'] = $field;
$assign_data['ad_position'] = model('AdPosition')->getAll('*', 'id');
$assign_data['ad_media_type'] = config('global.ad_media_type');
$this->assign($assign_data);
return $this->fetch();
}
/**
* 删除
*/
public function del()
{
$id_arr = I('del_id/a');
$id_arr = eyIntval($id_arr);
if(!empty($id_arr)){
// $result = M('ad')->field('pid')->where("id in ($id)")->select();
// foreach ($result as $key => $val) {
// \think\Cache::clear('ad'.$val['pid']);
// }
$r = M('ad')->where('id','IN',$id_arr)->cache(true,null,'ad')->delete();
if ($r) {
// 不管是添加还是修改广告 都清除一下缓存
// delFile(HTML_PATH); // 先清除缓存, 否则不好预览
adminLog('删除广告-id:'.implode(',', $id_arr));
respose(array('status'=>1, 'msg'=>'删除成功'));
} else {
respose(array('status'=>0, 'msg'=>'删除失败'));
}
}else{
respose(array('status'=>0, 'msg'=>'参数有误'));
}
}
/**
* ui美化新增
*/
public function ui_add()
{
if (IS_POST) {
$post = I('post.');
$is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
$litpic = '';
if ($is_remote == 1) {
$litpic = $post['litpic_remote'];
} else {
$litpic = $post['litpic_local'];
}
$newData = array(
'litpic' => $litpic,
'add_time' => getTime(),
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
$r = M('ad')->insertGetId($data);
if ($r) {
\think\Cache::clear('ad');
adminLog('新增广告:'.$post['title']);
respose(array(
'status' => 1,
'msg' => '操作成功',
));
} else {
respose(array(
'status' => 0,
'msg' => '操作失败',
));
}
}
$pid = I('param.pid/d', 0);
$edit_id = I('param.edit_id/d', 0);
$assign_data = array();
$assign_data['ad_position'] = model('AdPosition')->getInfo($pid);
$assign_data['edit_id'] = $edit_id;
$this->assign($assign_data);
return $this->fetch();
}
/**
* ui美化编辑
*/
public function ui_edit()
{
if (IS_POST) {
$post = I('post.');
if(!empty($post['id'])){
$is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
$litpic = '';
if ($is_remote == 1) {
$litpic = $post['litpic_remote'];
} else {
$litpic = $post['litpic_local'];
}
$newData = array(
'litpic' => $litpic,
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
$r = M('ad')->cache(true,null,'ad')->update($data);
if ($r) {
adminLog('编辑广告:'.$post['title']);
respose(array(
'status' => 1,
'msg' => '操作成功',
));
}
}
respose(array(
'status' => 0,
'msg' => '操作失败',
));
}
$assign_data = array();
$id = I('id/d');
$field = M('ad')->field('a.*')
->alias('a')
->where(array('a.id'=>$id))
->find();
if (empty($field)) {
$this->error('广告不存在,请联系管理员!');
exit;
}
if (is_http_url($field['litpic'])) {
$field['is_remote'] = 1;
$field['litpic_remote'] = $field['litpic'];
} else {
$field['is_remote'] = 0;
$field['litpic_local'] = $field['litpic'];
}
$assign_data['field'] = $field;
$assign_data['ad_position'] = model('AdPosition')->getInfo($field['pid']);
$this->assign($assign_data);
return $this->fetch();
}
/**
* 删除
*/
public function ui_del()
{
$id = I('del_id/a');
$id = implode(',', eyIntval($id));
if(!empty($id)){
$r = M('ad')->where("id in ($id)")->cache(true,null,'ad')->delete();
if ($r) {
// 不管是添加还是修改广告 都清除一下缓存
// delFile(HTML_PATH); // 先清除缓存, 否则不好预览
adminLog('删除广告-id:'.$id);
respose(array('status'=>1, 'msg'=>'删除成功'));
} else {
respose(array('status'=>0, 'msg'=>'删除失败'));
}
}else{
respose(array('status'=>0, 'msg'=>'参数有误'));
}
}
}