123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?php
- /**
- * lionfish 商城系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Admin\Model;
- class ConfigModel{
- /**
- *显示分页
- */
- public function show_config_page($search){
-
- $sql="select * from ".C('DB_PREFIX')."config where 1 ";
-
- if(isset($search['name'])){
- $sql.=" and name like '%".$search['name']."%'";
- }
- if(isset($search['config_group'])){
- $sql.=" and config_group='".$search['config_group']."'";
- }
-
- $count=count(M()->query($sql));
-
- $Page = new \Think\Page($count,C('BACK_PAGE_NUM'));
- $show = $Page->show();// 分页显示输出
-
- $sql.=' order by config_group desc LIMIT '.$Page->firstRow.','.$Page->listRows;
-
- $list=M()->query($sql);
-
- return array(
- 'empty'=>'<tr><td colspan="20">~~暂无数据</td></tr>',
- 'list'=>$list,
- 'page'=>$show
- );
-
- }
-
-
- function validate($data,$status='update'){
- $error=array();
- if(empty($data['name'])){
- $error='名称必填';
- }
-
- if($status=='add'){
- if(M('config')->getByName($data['name'])){
- $error='该名称已经存在';
- }
- }else{
- if(M('config')->where('id!='.$data['id']." AND name='".$data['name']."'")->find()){
- $error='该名称已经存在';
- }
- }
-
- if($error){
-
- return array(
- 'status'=>'back',
- 'message'=>$error
- );
-
- }
- }
-
-
- public function add_config($data){
-
- $error=$this->validate($data,'add');
-
- if($error){
- return $error;
- }
-
- $r=M('config')->add($data);
-
- if($r){
- return array(
- 'status'=>'success',
- 'message'=>'新增成功',
- 'jump'=>U('config/index')
- );
- }else{
- return array(
- 'status'=>'fail',
- 'message'=>'新增失败',
- 'jump'=>U('config/index')
- );
- }
-
-
- }
-
- public function edit_config($data){
-
- $error=$this->validate($data);
-
- if($error){
- return $error;
- }
-
- $r=M('config')->save($data);
-
- if($r){
- return array(
- 'status'=>'success',
- 'message'=>'修改成功',
- 'jump'=>U('config/index')
- );
- }else{
- return array(
- 'status'=>'fail',
- 'message'=>'修改失败',
- 'jump'=>U('config/index')
- );
- }
-
-
- }
-
- public function del_config(){
- $r=M('config')->where(array('id'=>I('id')))->delete();
-
- if($r){
- return array(
- 'status'=>'success',
- 'message'=>'删除成功',
- 'jump'=>U('config/index')
- );
- }else{
- return array(
- 'status'=>'fail',
- 'message'=>'删除失败',
- 'jump'=>U('config/index')
- );
- }
- }
-
- }
- ?>
|