| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 | 
							- <?php
 
- /**
 
-  *
 
-  * Content(内容管理模块)
 
-  *
 
-  */
 
- if(!defined("Ainaphp")) exit("Access Denied");
 
- class ContentAction extends AdminbaseAction
 
- {
 
-     protected  $dao,$fields;
 
-     public function _initialize()
 
-     {
 
-         parent::_initialize();
 
- 		$module =$this->module[$this->moduleid]['name'];
 
- 		$this->dao = D($module);
 
- 		$fields = F($this->moduleid.'_Field');
 
- 		foreach($fields as $key => $res){
 
- 			$res['setup']=string2array($res['setup']);
 
- 			$this->fields[$key]=$res;
 
- 		}
 
- 		unset($fields);
 
- 		unset($res);
 
- 		$this->assign ('fields',$this->fields);
 
-     }
 
-     /**
 
- 	 * 列表
 
- 	 *
 
- 	 */
 
-     public function index()
 
-     {
 
- 		$template =  file_exists(THEME_PATH.MODULE_NAME.'_index.html') ? MODULE_NAME.':index' : 'Content:index';
 
- 	    $this->_list(MODULE_NAME);
 
-         $this->display ($template);
 
-     }
 
- 	public function add()
 
-     {
 
- 		$vo['catid']= intval($_GET['catid']);
 
- 		$form=new Form($vo);
 
- 		$form->isadmin=1;
 
- 		$this->assign ( 'form', $form );
 
- 		$template =  file_exists(THEME_PATH.MODULE_NAME.'_edit.html') ? MODULE_NAME.':edit' : 'Content:edit';
 
- 		$this->display ( $template);
 
- 	}
 
- 	public function edit()
 
-     {
 
- 		$id = $_REQUEST ['id'];
 
- 		if(MODULE_NAME=='Page'){
 
- 					$Page=D('Page');
 
- 					$p = $Page->find($id);
 
- 					if(empty($p)){
 
- 					$data['id']=$id;
 
- 					$data['title'] = $this->categorys[$id]['catname'];
 
- 					$data['keywords'] = $this->categorys[$id]['keywords'];
 
- 					$Page->add($data);
 
- 					}
 
- 		}
 
- 		$vo = $this->dao->getById ( $id );
 
- 		$vo['content'] = htmlspecialchars($vo['content']);
 
-         $data = M("Article")->where("catid = ".$vo['catid'])->order("id asc")->limit(1)->find();
 
-         $datas = getimagesize($this->Config['site_url'].'/'.$data['thumb']);
 
-  		$form=new Form($vo);
 
- 		$this->assign ( 'vo', $vo );
 
-         $this->assign ( 'datas', $datas );
 
- 		$this->assign ( 'form', $form );
 
- 		$template =  file_exists(THEME_PATH.MODULE_NAME.'_edit.html') ? MODULE_NAME.':edit' : 'Content:edit';
 
- 		$this->display ( $template);
 
- 	}
 
-     /**
 
-      * 录入
 
-      *
 
-      */
 
-     public function insert($module='',$fields=array(),$userid=0,$username='',$groupid=0)
 
-     {
 
- 		$model = $module ?  M($module) : $this->dao;
 
- 		$fields = $fields ? $fields : $this->fields ;
 
- 		if($fields['verifyCode']['status'] && (md5($_POST['verifyCode']) != $_SESSION['verify'])){
 
- 			$this->assign ( 'jumpUrl','javascript:history.go(-1);');
 
- 			$this->error(L('error_verify'));
 
-         }
 
- 		$_POST = checkfield($fields,$_POST);
 
- 		if(empty($_POST)) $this->error (L('do_empty'));
 
- 		$_POST['createtime'] = time();
 
- 		$_POST['updatetime'] = $_POST['createtime'];
 
-         $_POST['userid'] = $module ? $userid : $_SESSION['userid'];
 
- 		$_POST['username'] = $module ? $username : $_SESSION['username'];
 
- 		if($_POST['style_color']) $_POST['style_color'] = 'color:'.$_POST['style_color'];
 
- 		if($_POST['style_bold']) $_POST['style_bold'] =  ';font-weight:'.$_POST['style_bold'];
 
- 		if($_POST['style_color'] || $_POST['style_bold'] ) $_POST['title_style'] = $_POST['style_color'].$_POST['style_bold'];
 
- 		$module = $module? $module : MODULE_NAME ;
 
- 		if(GROUP_NAME=='User')$_POST['status'] = $this->Role[$groupid]['allowpostverify'] ? 1 : 0;
 
- 		if (false === $model->create ()) {
 
- 			$this->error ( $model->getError () );
 
- 		}
 
- 		$_POST['id'] = $id= $model->add();
 
- 		if ($id !==false) {
 
- 			$catid = $module =='Page' ? $id : $_POST['catid'];
 
- 			if($_POST['aid']) {
 
- 				$Attachment =M('Attachment');
 
- 				$aids =  implode(',',$_POST['aid']);
 
- 				$data['id']=$id;
 
- 				$data['catid']= $catid;
 
- 				$data['status']= '1';
 
- 				$Attachment->where("aid in (".$aids.")")->save($data);
 
- 			}
 
- 			$tablename=C('DB_PREFIX').strtolower($module);
 
- 			$db=D('');
 
- 			$db =   DB::getInstance();
 
- 			$tables = $db->getTables();
 
- 			$Fields=$db->getFields($tablename);
 
- 			if(isset($Fields['url'])){
 
- 				$data='';
 
- 				$cat = $this->categorys[$catid];
 
- 				$url = geturl($cat,$_POST,$this->Urlrule);
 
- 				$data['id']= $id;
 
- 				$data['url']= $url[0];
 
- 				$model->save($data);
 
- 			}
 
- 			if($_POST['keywords'] && $module !='Page'){
 
- 				$keywordsarr=explode(',',$_POST['keywords']);
 
- 				$i=0;
 
- 				$tagsdata =M('Tags_data');
 
- 				$tagsdata->where("id=".$id)->delete();
 
- 				foreach((array)$keywordsarr as $tagname){
 
- 					if($tagname){
 
- 						$tagidarr=$tagdatas=$where=array();
 
- 						$where['name']=array('eq',$tagname);
 
- 						$where['moduleid']=array('eq',$cat['moduleid']);
 
- 						$tagid=M('Tags')->where($where)->field('id')->find();
 
- 						$tagidarr['id']=$id;
 
- 						if($tagid){
 
- 							$num = $tagsdata->where("tagid=".$tagid[id])->count();
 
- 							$tagdatas['num']=$num+1;
 
- 							M('Tags')->where("id=".$tagid[id])->save($tagdatas);
 
- 							$tagidarr['tagid']=$tagid['id'];
 
- 						}else{
 
- 							$tagdatas['moduleid']=$cat['moduleid'];
 
- 							$tagdatas['name'] = $tagname;
 
- 							$tagdatas['slug'] = Pinyin($tagname);
 
- 							$tagdatas['num']=1;
 
- 							$tagdatas['lang']=$_POST['lang'];
 
- 							$tagdatas['module']= $cat['module'];
 
- 							$tagidarr['tagid']=M('Tags')->add($tagdatas);
 
- 						}
 
- 						$i++;
 
- 						$tagsdata->add($tagidarr);
 
- 					}
 
- 				}
 
- 			}
 
- 			if($cat['presentpoint']){
 
- 				$user =M('User');
 
- 				if($cat['presentpoint']>0) $user->where("id=".$_POST['userid'])->setInc('point',$cat['presentpoint']);
 
- 				if($cat['presentpoint']<0) $user->where("id=".$_POST['userid'])->setDec('point',$cat['presentpoint']);
 
- 			}
 
- 			if($cat['ishtml'] && $_POST['status']){
 
- 				if($module!='Page'   && $_POST['status'])	$this->create_show($id,$module);
 
- 				$arrparentid = array_filter(explode(',',$cat['arrparentid'].','.$cat['id']));
 
- 				foreach($arrparentid as $catid) {
 
- 					if($this->categorys[$catid]['ishtml'])	$this->clisthtml($catid);
 
- 				}
 
-  			}
 
- 			if($this->sysConfig['HOME_ISHTML']) $this->create_index();
 
- 			if(GROUP_NAME=='Admin'){
 
- 				$this->assign ( 'jumpUrl', U($module.'/index') );
 
- 			}elseif(GROUP_NAME=='User'){
 
- 				$this->assign ( 'jumpUrl',$_SERVER['HTTP_REFERER']);
 
- 				//$this->assign ( 'jumpUrl', U(GROUP_NAME.'-'.MODULE_NAME.'/add?moduleid='.$cat['moduleid']) );
 
- 			}
 
- 			$this->success (L('add_ok'));
 
- 		} else {
 
- 			$this->error (L('add_error').': '.$model->getDbError());
 
- 		}
 
-     }
 
- 	function update($module='',$fields=array(),$userid=0,$username='')
 
- 	{
 
- 		$model = $module ?  M($module) : $this->dao;
 
- 		$fields = $fields ? $fields : $this->fields ;
 
- 		if($fields['verifyCode']['status'] && (md5($_POST['verifyCode']) != $_SESSION['verify'])){
 
- 			$this->assign ( 'jumpUrl','javascript:history.go(-1);');
 
- 			$this->error(L('error_verify'));
 
-         }
 
- 		$_POST = checkfield($fields,$_POST);
 
- 		if(empty($_POST)) $this->error (L('do_empty'));
 
- 		$_POST['updatetime'] = time();
 
- 		if($_POST['style_color']) $_POST['style_color'] = 'color:'.$_POST['style_color'];
 
- 		if($_POST['style_bold']) $_POST['style_bold'] =  ';font-weight:'.$_POST['style_bold'];
 
- 		if($_POST['style_color'] || $_POST['style_bold'] ) $_POST['title_style'] = $_POST['style_color'].$_POST['style_bold'];
 
- 		$cat = $this->categorys[$_POST['catid']];
 
- 		$module = $module? $module : MODULE_NAME ;
 
- 		$_POST['url'] = geturl($cat,$_POST,$this->Urlrule);
 
- 		$_POST['url'] =$_POST['url'][0];
 
- 		$olddata = $model->find($_POST['id']);
 
- 		if (false === $model->create ()) {
 
- 			$this->error ( $model->getError () );
 
- 		}
 
- 		// 更新数据
 
- 		$list=$model->save ();
 
- 		if (false !== $list) {
 
- 			$id= $_POST['id'];
 
- 			$catid = $module =='Page' ? $id : $_POST['catid'];
 
- 			if($olddata['keywords']!=$_POST['keywords']  && $module !='Page'){
 
- 				$tagidarr=$tagdatas=$where=array();
 
- 				$where['name']=array('in',$olddata['keywords']);
 
- 				$where['moduleid']=array('eq',$cat['moduleid']);
 
- 				$where['lang']=array('eq',$_POST['lang']);
 
- 				M('Tags')->where($where)->setDec('num');
 
- 				$tagsdata =M('Tags_data');
 
- 				$tagsdata->where("id=".$id)->delete();
 
- 				$keywordsarr=explode(',',$_POST['keywords']);
 
- 				foreach((array)$keywordsarr as $tagname){
 
- 					if($tagname){
 
- 						$tagidarr=$tagdatas=$where=array();
 
- 						$where['name']=array('eq',$tagname);
 
- 						$where['moduleid']=array('eq',$cat['moduleid']);
 
- 						$where['lang']=array('eq',$_POST['lang']);
 
- 						$tagid=M('Tags')->where($where)->field('id')->find();
 
- 						$tagidarr['id']=$id;
 
- 						if($tagid['id']>0){
 
- 							M('Tags')->where("id=".$tagid[id])->setInc('num'); ;
 
- 							$tagidarr['tagid']=$tagid['id'];
 
- 						}else{
 
- 							$tagdatas['moduleid']=$cat['moduleid'];
 
- 							$tagdatas['name'] = $tagname;
 
- 							$tagdatas['slug'] = Pinyin($tagname);
 
- 							$tagdatas['num']=1;
 
- 							$tagdatas['lang']=$_POST['lang'];
 
- 							$tagdatas['module']= $cat['module'];
 
- 							$tagidarr['tagid']=M('Tags')->add($tagdatas);
 
- 						}
 
- 						$tagsdata->add($tagidarr);
 
- 					}
 
- 				}
 
- 				M('Tags')->where('num<=0')->delete();
 
- 			}
 
- 			if($_POST['aid']) {
 
- 				$Attachment =M('Attachment');
 
- 				$aids =  implode(',',$_POST['aid']);
 
- 				$data['id']= $id;
 
- 				$data['catid']= $catid;
 
- 				$data['status']= '1';
 
- 				$Attachment->where("aid in (".$aids.")")->save($data);
 
- 			}
 
- 			$cat = $this->categorys[$catid];
 
- 			if($cat['ishtml']){
 
- 				if($module!='Page'  && $_POST['status'])	$this->create_show($_POST['id'],$module);
 
- 				$arrparentid = array_filter(explode(',',$cat['arrparentid'].','.$cat['id']));
 
- 				foreach($arrparentid as $catid) {
 
- 					if($this->categorys[$catid]['ishtml'])	$this->clisthtml($catid);
 
- 				}
 
-  			}
 
- 			if($this->sysConfig['HOME_ISHTML']) $this->create_index();
 
- 			$this->assign ( 'jumpUrl', $_POST['forward'] );
 
- 			$this->success (L('edit_ok'));
 
- 		} else {
 
- 			//错误提示
 
- 			$this->success (L('edit_error').': '.$model->getDbError());
 
- 		}
 
- 	}
 
- 	function statusallok(){
 
- 		$module = MODULE_NAME;
 
- 		$model = M ( $module );
 
- 		$ids=$_POST['ids'];
 
- 		if(!empty($ids) && is_array($ids)){
 
- 			$id=implode(',',$ids);
 
- 			$data = $model->select($id);
 
- 			if($data){
 
- 				foreach($data as $key=>$r){
 
- 					$model->save(array(id=>$r['id'],status=>1));
 
- 					if($this->categorys[$r['catid']]['ishtml'] && $r['status'])$this->create_show($r['id'],$module);
 
- 				}
 
- 				$cat =  $this->categorys[$r['catid']];
 
- 				if($cat['ishtml']){
 
- 					if($this->sysConfig['HOME_ISHTML']) $this->create_index();
 
- 					$arrparentid = array_filter(explode(',',$cat['arrparentid'].','.$cat['id']));
 
- 					foreach($arrparentid as $catid) {
 
- 						if($this->categorys[$catid]['ishtml'])	$this->clisthtml($catid);
 
- 					}
 
- 				}
 
- 				$this->success(L('do_ok'));
 
- 			}else{
 
- 				$this->error(L('do_error').': '.$model->getDbError());
 
- 			}
 
- 		}else{
 
- 			$this->error(L('do_empty'));
 
- 		}
 
- 	}
 
- 	/*状态*/
 
- 	public function status(){
 
- 		$module = MODULE_NAME;
 
- 		$model = D ($module);
 
- 		if($model->save($_GET)){
 
- 			$_POST ='';
 
- 			$_POST = $model->find($_GET['id']);
 
- 			$cat =  $this->categorys[$_POST['catid']];
 
- 			if($cat['ishtml']){
 
- 				if($module!='Page'  && $_POST['status'])	$this->create_show($_POST['id'],$module);
 
- 				if($this->sysConfig['HOME_ISHTML']) $this->create_index();
 
- 				$arrparentid = array_filter(explode(',',$cat['arrparentid'].','.$cat['id']));
 
- 				foreach($arrparentid as $catid) {
 
- 					if($this->categorys[$catid]['ishtml'])	$this->clisthtml($catid);
 
- 				}
 
-  			}
 
- 			$this->success(L('do_ok'));
 
- 		}else{
 
- 			$this->error(L('do_error'));
 
- 		}
 
- 	}
 
-     //获取图片大小
 
-     function get_img(){
 
-         $cid = $_POST['cid'];
 
-         $model = $_POST['model'];
 
-         $data = M($model)->where("catid = ".$cid)->order("id asc")->limit(1)->find();
 
-         $datas = getimagesize($this->Config['site_url'].'/'.$data['thumb']);
 
-         if(!$datas){$datas = array('','');}
 
-         echo json_encode($datas);
 
-         
 
-     }
 
- }?>
 
 
  |