@qingjieshouliang M1n1 Shira0ka

M1n1 Shira0ka File Manager

Current Path : /www/wwwroot/eblliwsm.com/c8efb1c6/Lib/Action/
Upload File :
Current File : /www/wwwroot/eblliwsm.com/c8efb1c6/Lib/Action/ProductAction.class.php

<?php
// +----------------------------------------------------------------------
// | 蓝科企业网站系统PHP版
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2014 http://lankecms.com All rights reserved.
// +----------------------------------------------------------------------
// | Sale ( http://lankecms.taobao.com/ )
// +----------------------------------------------------------------------
// | Author: 钟若天 <lankecms@163.com>
// +----------------------------------------------------------------------
class ProductAction extends CommonAction{
	public function index(){
		$db=M('product');
		import('ORG.Util.Page');
		$count=$db->count();
		$page=new Page($count,12);
		$this->show=$page->show();
		$this->product=$db->field('id,pid,name,sort,thumb,featured')->order('sort asc,id desc')->limit($page->firstRow.','.$page->listRows)->select();
		$this->list=recursive(M('List')->field('id,pid,name,type')->where("type = 'product'")->order('sort')->select());
		$this->display();	
	}
	
	public function add(){
		$this->list=recursive(M('List')->field('id,pid,name,type')->where("type= 'product'")->order('sort')->select());
		//$count=M('Product')->count();
		//$this->sort=$count+1;
		$this->display();
	}
	
	//修改显示页面
	public function mod(){
		$this->list=recursive(M('List')->field('id,pid,name,type')->where("type = 'product'")->order('sort')->select());
		$product=M('Product')->field('id,pid,sort,name,property1,property2,property3,property4,url,title,keywords,description,thumb,photo,contents,featured')->find($this->_get('id','intval'));

		if(!empty($product['photo'])){
			$photo=explode(',',$product['photo']);
			$this->assign('photo',$photo);	
		}
		$this->assign('product',$product);
		$this->display();	
	}
	
	//添加产品
	public function savepro(){
		$db=D('Product');
		$_POST['url']=getSeoUrl('product',$_POST['url']);
		if($data=$db->create()){
			$info=$this->uploadimg();

			if (!empty($_FILES["photo"])) {
				for($i=1;$i<=count($_FILES["photo"]["name"]);$i++){
					$photo.=$info[$i]['savename'].',';
					if (C('IS_WATER')) {
						$this->watermark('../Uploads/'.$info[$i]['savename']);
					}		
				}
				$photo=rtrim($photo,",");
				$data['photo']=$photo;
			}
			$data['thumb']=$info[0]['savename'];
			// if (C('IS_WATER')) {
			// 	$this->watermark('../Uploads/'.$data['thumb']);
			// }
			$data['bid']=$this->getbigid($data['pid']);
			if($db->data($data)->add()){
				$this->success('产品添加成功',U('Product/index'));
			}else{
				$this->error('添加失败');
			}
		}else{
			$this->error($db->getError());
		}	
	}
	
	//更新产品
	public function updatepro(){
		$db=D('Product');
		$id=$this->_post('id','intval');
		$num=$this->_post('Num','intval');
		$tnum=$this->_post('tnum','intval');
		$photo=$db->where('id='.$id)->getField('photo');
		$_POST['url']=getSeoUrl('product',$_POST['url']);
		if($data=$db->create()){
		$data['bid']=$this->getbigid($data['pid']);	
			if($num > 0 || $num != "" || $tnum > 0){
				$info=$this->uploadimg();
				
				if(!empty($_FILES["photo"])){
					$n=($info[0]['key']=='thumb')? 1 : 0;
					$c=($info[0]['key']=='thumb')? count($_FILES["photo"]["name"])+1 : count($_FILES["photo"]["name"]);
					for($i=$n;$i<$c;$i++){
						$postphoto.=$info[$i]['savename'].',';
						if (C('IS_WATER')) {
							$this->watermark('../Uploads/'.$info[$i]['savename']);
						}
					}
					$photo=($photo=="")? rtrim($postphoto,",") : rtrim($photo.','.$postphoto,",");
					$data['photo']=$photo;
				}
				if($_FILES["thumb"]["name"]!=""){
					$thumb=$info[0]['savename'];
					$data['thumb']=$info[0]['savename'];
					// if (C('IS_WATER')) {
					// 	$this->watermark('../Uploads/'.$data['thumb']);
					// }
				}
			}
			
			if($db->data($data)->save()){
				$this->success('更新产品成功',U('Product/index'));
			}else{
				$this->error('更新失败或没有数据被更改');
			}		
		}else{
			$this->error($db->getError());	
		}

	}
	
	//删除产品图片
	public function delphoto(){
		$name=$this->_get('name');
		$id=$this->_get('id','intval');
		$field=$this->_get('field');

		if($name && $id){
		  $photo=M('Product')->where('id ='.$id)->getField($field);
		  $photo=str_replace($name.',',"",$photo.',');
		  $photo=rtrim($photo,",");
			if(M('Product')->where('id='.$id)->setField($field,$photo)){
				if(delimg('../Uploads/'.$name)){
					$this->success('删除成功',U('mod',array('id'=>$id)));
				}else{
					$this->success('数据删除成功,但找不到要删除的图片',U('mod',array('id'=>$id)));
				}
			}else{
				$this->error('操作失败');
			}
		}else{
			$this->error('非法操作');
		}
	}
	
	//删除产品
	public function del(){
		$id=$this->_get('id','intval');
		$db=M('Product');
		$thumb=$db->where('id ='.$id)->getField('thumb');
		$photo=$db->where('id ='.$id)->getField('photo');

		if($db->where('id ='.$id)->delete()){
			delimg('../Uploads/'.$thumb);
			delallimg('../Uploads/',$photo);
			$this->success('删除成功');
		}else{
			$this->error('删除失败');
		}

	}

	//删除全部主图
	public function delmain(){
		$id=$this->_get('id','intval');
		$db=M('Product');
		$photo=$db->where('id ='.$id)->getField('photo');
		delallimg('../Uploads/',$photo);
		if ($db->where('id ='.$id)->setField('photo','')) {
			$this->success('删除成功');
		}else{
			$this->error('删除失败');
		}
	}

	//全选删除
	public function delall(){
		$this->selectDel('Product');
	}

	//更新排序
	public function uporder(){
		$this->getSort('Product');
	}

	//搜索产品
	public function search(){
		$this->getSearch('product','name','product');
	}

	//复制产品
	public function copydata(){
		$id=$this->_get('id','intval');
		$db=M('Product');
		$product=$db->find($id);
		if ($product) {
			$product['name']=$product['name'].' - 副本';
			$product['url']='products-'.rand(0,9).'-'.rand(0,99);
			if ($product['thumb']<>"") {
				$destthumb=time().$product['thumb'];
				copy('../Uploads/'.$product['thumb'], '../Uploads/'.$destthumb);
				$product['thumb']=$destthumb;
			}
			if ($product['photo']<>"") {
				$copyphoto=explode(',', $product['photo']);
				foreach ($copyphoto as $v) {
					$destphoto=time().$v;
					copy('../Uploads/'.$v, '../Uploads/'.$destphoto);
					$savephoto.=$destphoto.',';
				}
			$product['photo']=rtrim($savephoto,',');	
			}
			unset($product['id']);
			if ($db->data($product)->add()) {
				$this->success('复制产品成功');
			}else{
				$this->error('复制产品失败');
			}
		}
	}



}
?>

GO Party By You