1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /**
- * 小梦科技资源nanodreamtech.com
- *
- * ==========================================================================
- * @link https://www.nanodreamtech.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license https://www.nanodreamtech.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Admin\Controller;
- use Admin\Model\ConfigModel;
- class ConfigController extends CommonController{
-
- protected function _initialize(){
- parent::_initialize();
- $this->breadcrumb1='系统';
- $this->breadcrumb2='配置管理';
- }
-
- public function index(){
-
- $model=new ConfigModel();
-
- $filter=I('get.');
-
- $search=array();
-
- if(isset($filter['name'])){
- $search['name']=$filter['name'];
- }
- if(isset($filter['config_group'])){
- $search['config_group']=$filter['config_group'];
- $this->get_group=$filter['config_group'];
- }
-
-
- $data=$model->show_config_page($search);
-
- $this->assign('empty',$data['empty']);// 赋值数据集
- $this->assign('list',$data['list']);// 赋值数据集
- $this->assign('page',$data['page']);// 赋值分页输出
-
- $this->display();
- }
-
- function add(){
-
- if(IS_POST){
-
- $model=new ConfigModel();
- $data=I('post.');
- $return=$model->add_config($data);
- $this->osc_alert($return);
- }
-
- $this->crumbs='新增';
- $this->action=U('Config/add');
- $this->display('edit');
- }
- function edit(){
- if(IS_POST){
- $model=new ConfigModel();
- $data=I('post.');
- $return=$model->edit_config($data);
-
- $this->osc_alert($return);
- }
- $this->crumbs='编辑';
- $this->action=U('Config/edit');
- $this->c=M('Config')->where(array('id'=>I('id')))->find();
-
- $this->display();
- }
- public function del(){
- $r=M('Config')->delete(I('id'));
- if($r){
- $this->redirect('Config/index');
- }
- }
-
- }
- ?>
|