码迷,mamicode.com
首页 > 其他好文 > 详细

demo

时间:2016-12-31 19:10:42      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:lap   his   dir   function   control   demo   tree   cat   get   

<?php

namespace Back\Controller;

use Think\Controller;

class CategoryController extends Controller
{

    public function listAction()
    {

        $modelCategory = D(‘Category‘);

        $this->assign(‘list‘, $modelCategory->getTreeList());

        $this->display();
    }

    public function deleteAction()
    {

        $category_id = I(‘get.id‘, 0);
        if ($category_id == 0) {
            $this->redirect(‘list‘);
        }

        M(‘Category‘)->delete($category_id);
        // 初始缓存配置
        S([
            ‘type‘ => ‘Memcache‘,
            ‘host‘  => ‘192.168.118.128‘,
            ‘port‘  => ‘11211‘,
        ]);
        // 删除
        S(‘category_tree‘, null);

        $this->redirect(‘list‘);
    }
}

demo

标签:lap   his   dir   function   control   demo   tree   cat   get   

原文地址:http://www.cnblogs.com/falling-maple/p/6239963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!