@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/ListAction.class.php

<?php
// +----------------------------------------------------------------------
// | 蓝科企业网站系统PHP版
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2014 http://lankecms.com All rights reserved.
// +----------------------------------------------------------------------
// | Sale ( http://lankecms.taobao.com )
// +----------------------------------------------------------------------
// | Author: 钟若天 <lankecms@163.com>
// +----------------------------------------------------------------------
class ListAction extends CommonAction{
	public function index(){
		$list=M('List')->field('id,name,pid,sort,type,nav')->order('sort')->select();
		$this->list=recursive($list);
		$this->display();
	}
	
	
	public function addlist(){
		$this->pid=$this->_get('pid', 'intval');
		$this->type=$this->_get('type');
		$tid=$this->_get('tid','intval');
		$topname=array(1=>'顶级栏目',2=>'单页',3=>'链接');
		if (isset($tid)) {
			$name=$topname[$tid];
		}
		if ($this->pid != 0) {
			$name=M('List')->where(array('id'=>$this->pid))->getField('name');
		}
		$this->name=$name;
		$this->display();
	}
	
	
	public function savelist(){
		$list=D('List');
		if ($_POST['type']=='link') {
			$_POST['url'] = (strtolower($_POST['link'])=="/feedback/" || strtolower($_POST['link'])=="/inquiry/") ? preg_replace('/\/+/', '', $_POST['link']) : 'list-'.rand(0,9).'-'.rand(0,99);
		} else {
			$_POST['url'] = ($_POST['url']!="") ? preg_replace('/[\s]+/', '-', $_POST['url']) : 'list-'.rand(0,9).'-'.rand(0,99);
		}
		
		if($data=$list->create()){
			if ($data['pid']!=0) {
				$data['bid']=$this->getbigid($data['pid']);
			}
			if($result=$list->data($data)->add()){
				if ($data['pid']==0) {
					$list->where(array('id'=>$result))->setField('bid',$result);
				}
				$this->success('添加栏目成功',U('List/index'));
			}else{
				$this->error('添加失败');
			}
		}else{
			$this->error($list->getError());
		}	
	}
	
	
	public function mod(){
		$this->type=$this->_get('type');
		$this->list=D('List')->find($this->_get('id','intval'));
		$this->display();
	}
	
	
	public function updatelist(){
		if ($this->isPost()) {
			$list=D('List');
			if ($_POST['type']=='link') {
				//$_POST['url'] = (stripos($_POST['link'],"http://")!== false) ? '' : preg_replace('/\/+/', '', $_POST['link']);
				$_POST['url'] = (strtolower($_POST['link'])=="/feedback/" || strtolower($_POST['link'])=="/inquiry/") ? preg_replace('/\/+/', '', $_POST['link']) : 'list-'.rand(0,9).'-'.rand(0,99);
			} else {
				$_POST['url'] = ($_POST['url']!="") ? preg_replace('/[\s]+/', '-', $_POST['url']) : 'list-'.rand(0,9).'-'.rand(0,99);
			}
			if($data=$list->create()){
				$data['bid']=$this->getbigid($data['id']);
				if($list->data($data)->save()){
					$this->success('修改成功',U('List/index'));
				}else{
					$this->error('修改失败或没有数据被修改');
				}
			}else{
				$this->error($list->getError());
			}
		}
	}
	
	
	public function uporder(){
		$this->getSort('List');
	}
	
	
	public function dellist(){
		$id = $this->_get('id', 'intval');
		$db = M('List');
		$cateid = $db->field(array('id', 'pid'))->select();
		$delid = get_all_child($cateid, $id);
		$delid[] = $id;

		$where = array('id' => array('IN', $delid));

		if (!$db->where($where)->delete()) {
			$this->error('删除失败');
		}

		$this->success('删除成功',U('List/index'));	
	}
	
	
	
}
?>

GO Party By You