123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?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\Controller;
- use Think\Controller;
- class BlogCategoryController extends CommonController {
-
- protected function _initialize(){
- parent::_initialize();
- $this->breadcrumb1='博客';
- $this->breadcrumb2='博客分类';
- }
-
- function index(){
-
- $cate = M()->query('SELECT id,pid,title AS name FROM '.C('DB_PREFIX').'blog_category ORDER BY sort_order ASC');
- $list =list_to_tree($cate);
- $this->list=json_encode($list);
-
- $this->display();
- }
-
-
- function add(){
-
- if(IS_POST){
-
- $d['title']=I('title');
-
- $d['sort_order']=I('sort_order');
- $d['pid']=I('id');
-
- if(M('blog_category')->where(array('title'=>$d['title'],'pid'=>$d['pid']))->find()){
- $data['err']='该分类名称已经存在';
- $this->ajaxReturn($data);
- die();
- }
-
- $id=M('blog_category')->add($d);
- if($id){
-
- $data['name'] =$d['title'];
- $data['id']=$id;
- $this->ajaxReturn($data);
-
- die();
- }else{
-
- die();
- }
- }
- }
-
- function edit(){
- if(IS_POST){
- $d['id']=I('id');
- $d['title']=I('title');
-
- $d['sort_order']=I('sort_order');
-
- $category=M('blog_category')->find($d['id']);
-
- if(M('blog_category')->where(array('title'=>$d['title'],'pid'=>$category['pid']))->find()){
- $data['err']='该分类名称已经存在';
- $this->ajaxReturn($data);
- die();
- }
-
- $r=M('blog_category')->save($d);
-
- if($r){
-
- $data['success']='修改成功';
- $data['name']=$d['title'];
- $this->ajaxReturn($data);
-
- die();
- }else{
-
- $data['err']='修改失败';
-
- $this->ajaxReturn($data);
-
- die();
- }
- }
-
- }
-
- function del(){
- if(IS_POST){
- $id=I('id');
-
- if(M('blog_category')->where('pid='.$id)->find()){
- $data['err']='请先删除子节点!!';
- $this->ajaxReturn($data);
- die;
- }
- if(M('blog')->where(array('category_id'=>$id))->find()){
- $data['err']='请先删除该分类下博客!!';
- $this->ajaxReturn($data);
- die;
- }
-
- if(M('blog_category')->where('id='.$id)->delete()){
- $this->ajaxReturn('删除成功');
- die();
- }
- }
- }
-
- function get_info(){
- if(IS_POST){
- $id=I('id');
- $d=M('blog_category')->find($id);
-
- $data['title']=$d['title'];
-
- $data['sort_order']=$d['sort_order'];
-
-
- $this->ajaxReturn($data);
- }
- }
- function autocomplete(){
- $json = array();
-
- $filter_name=I('filter_name');
-
- if (isset($filter_name)) {
- $sql='SELECT id,title FROM '.c('DB_PREFIX')."blog_category where title LIKE'%".$filter_name."%' LIMIT 0,20";
- }else{
- $sql='SELECT id,title FROM '.c('DB_PREFIX')."blog_category LIMIT 0,20";
-
- }
- $results = M('blog_category')->query($sql);
- foreach ($results as $result) {
- $json[] = array(
- 'category_id' => $result['id'],
- 'name' => strip_tags(html_entity_decode($result['title'], ENT_QUOTES, 'UTF-8'))
- );
- }
-
- $this->ajaxReturn($json);
- }
-
- }
|