<?php
|
|
class comnews_controller extends siteadmin_controller{
|
function set_search(){
|
$search_list[]=array("param"=>"status","name"=>'审核状态',"value"=>array("1"=>"已审核","3"=>"未审核","2"=>"未通过"));
|
$search_list[]=array("param"=>"time","name"=>'发布时间',"value"=>array('1'=>'今天','3'=>'最近三天','7'=>'最近七天','15'=>'最近半月','30'=>'最近一个月'));
|
$this->yunset("search_list",$search_list);
|
}
|
function index_action(){
|
|
$this->set_search();
|
|
$companyM = $this -> MODEL('company');
|
|
if($_GET['time']){
|
|
if($_GET['time']=='1'){
|
|
$where['ctime'] = array('>=',strtotime('today'));
|
|
}else{
|
$where['ctime'] = array('>=',strtotime('-'.intval($_GET['time']).' day'));
|
}
|
$urlarr['time'] = $_GET['time'];
|
}
|
|
if($_GET['status']){
|
|
$status = intval($_GET['status']);
|
|
$where['status'] = $status == 3 ? 0 : $status;
|
|
$urlarr['status'] = $status;
|
|
}
|
|
if($_GET['keyword']){
|
|
$keytype = intval($_GET['type']);
|
|
$keyword = trim($_GET['keyword']);
|
|
if($keytype == 1){
|
|
$cwhere['name'] = array('like',$keyword);
|
|
$ctList = $companyM ->getList($cwhere,array('field'=>'uid'));
|
|
$comapant = $ctList['list'];
|
|
foreach($comapant as $v){
|
|
$comid[]=$v['uid'];
|
|
}
|
|
$where['uid'] = array('in',pylode(',',$comid));
|
|
}elseif ($keytype == 2){
|
|
$where['title'] = array('like',$keyword);
|
|
}
|
$urlarr['type'] = $_GET['type'];
|
$urlarr['keyword'] = $_GET['keyword'];
|
}
|
|
$urlarr['page'] = "{{page}}";
|
|
$pageurl = Url($_GET['m'],$urlarr,'admin');
|
|
$pageM = $this -> MODEL('page');
|
|
$pages = $pageM -> pageList('company_news',$where,$pageurl,$_GET['page']);
|
|
if($pages['total'] > 0){
|
//limit order 只有在列表查询时才需要
|
if($_GET['order']){
|
|
$where['orderby'] = $_GET['t'].','.$_GET['order'];
|
$urlarr['order'] = $_GET['order'];
|
$urlarr['t'] = $_GET['t'];
|
|
}else{
|
|
$where['orderby'] = array('status,asc','id,desc');
|
}
|
|
}
|
|
$where['limit'] = $pages['limit'];
|
|
$rows = $companyM -> getCompanyNewsList($where,array('utype'=>'admin','cache'=>'1'));
|
|
$this->yunset("rows",$rows);
|
|
$this->siteadmin_tpl(array('admin_comnews'));
|
}
|
function statusbody_action(){
|
|
$CompanyM = $this -> MODEL('company');
|
|
$id = intval($_GET['id']);
|
|
$info = $CompanyM->getCompanyNewsLockInfo($id,array('field'=>'statusbody'));
|
|
echo $info['statusbody'];die;
|
|
}
|
function status_action(){
|
|
$CompanyM = $this -> MODEL('company');
|
|
$sysmsgM = $this -> MODEL('sysmsg');
|
|
$status = intval($_POST['status']);
|
|
$data['status'] = $status;
|
|
$data['statusbody'] = $_POST['statusbody'];
|
|
$allid = @explode(',',$_POST['pid']);
|
|
if($allid){
|
|
$nid = $CompanyM -> upCompanyNewsStatus($allid, $data);
|
|
$where['id'] = array('in',pylode(',',$allid));
|
|
$Cnews = $CompanyM -> getCompanyNewsList($where,array('field'=>'uid,title'));
|
/* 消息前缀 */
|
$tagName = '企业新闻';
|
|
foreach($Cnews as $v){
|
|
$uids[] = $v['uid'];
|
|
/* 处理审核信息 */
|
if ($data['status'] == 2){
|
|
$statusInfo = $tagName.':'.$v['title'].'审核未通过';
|
|
if($data['statusbody']){
|
|
$statusInfo .= ' , 原因:'.$data['statusbody'];
|
|
}
|
|
$msg[$v['uid']][] = $statusInfo;
|
|
}elseif($data['status'] == 1){
|
|
$msg[$v['uid']][] = $tagName.':'.$v['title'].'已审核通过';
|
|
}
|
}
|
//发送系统通知
|
|
$sysmsgM -> addInfo(array('uid'=>$uids,'usertype'=>2, 'content'=>$msg));
|
|
$nid?$this->ACT_layer_msg("企业新闻审核(ID:".$_POST['pid'].")设置成功!",9,$_SERVER['HTTP_REFERER'],2,1):$this->ACT_layer_msg("设置失败!",8,$_SERVER['HTTP_REFERER']);
|
|
}else{
|
|
$this->ACT_layer_msg("非法操作!",8,$_SERVER['HTTP_REFERER']);
|
|
}
|
}
|
function del_action(){
|
|
$CompanyM = $this -> Model('company');
|
|
$delID = is_array($_POST['del']) ? $_POST['del'] : $_GET['id'];
|
|
$return = $CompanyM -> delCompanyNews($delID,array('uid'=>$this->uid,'usertype'=>$this->usertype));
|
|
$this->layer_msg($return['msg'],$return['errcode'],$return['layertype'],$_SERVER['HTTP_REFERER']);
|
}
|
}
|
?>
|