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

<?php
class InsideAction extends CommonAction{
	public function index(){
		$db=M('Inside');
		import('ORG.Util.Page');
		$count=$db->count();
		$page=new Page($count,20);
		$this->show=$page->show();
		$this->inside=$db->field('id,keyword,url,number')->limit($page->firstRow.','.$page->listRows)->select();
		$this->display();
	}

	public function add(){
		$this->display();
	}

	public function addInside(){
		$db=D('Inside');
		if ($data=$db->create()) {
			if ($db->data($data)->add()) {
				$this->success('添加内链成功',U('Inside/index'));
			} else {
				$this->error('添加内链失败');
			}
			
		} else {
			$this->error($db->getError());
		}	
	}

	public function mod(){
		$id=$this->_get('id','intval');
		$this->inside=M('Inside')->field('id,keyword,url,number')->find($id);
		$this->display();
	}

	public function upInside(){
		$db=D('Inside');
		if ($data=$db->create()) {
			if ($db->data($data)->save()) {
				$this->success('内链修改成功',U('Inside/index'));
			} else {
				$this->error('修改失败或没有数据被修改');
			}
			
		} else {
			$this->error($db->getError());
		}	
	}
	

	//删除
	public function del(){
		$id=$this->_get('id','intval');
		if(M('Inside')->where('id='.$id)->delete()){
			$this->success('删除成功');
		}else{
			$this->error('删除失败');	
		}
	}

}
?>

GO Party By You