Mini Shell

Direktori : /home/brasafestival/www/old/bkp_2023/app/Plugin/Banners/Controller/
Upload File :
Current File : /home/brasafestival/www/old/bkp_2023/app/Plugin/Banners/Controller/BannersController.php

<?PHP
class BannersController extends BannersAppController{
    
    public $paginate=array('limit'=>10,'order'=>array('order'=>'ASC'));
    
    public function getAll(){
        return $this->Banner->find('all',array('order'=>array('Banner.order_banner'=>'ASC','Banner.created'=>'DESC')));
    }
    
    public function admin_index(){
        $this->layout="Painel.admin";
        $this->paginate['order']=array('Banner.order_banner'=>'ASC','Banner.created'=>'DESC');
        $posts=$this->paginate('Banner');
        $this->set('posts',$posts);
    }
    
    public function admin_add(){
        $this->layout="Painel.admin";
        $this->view="admin_editor";
        if($this->request->data && ($this->request->is('post') || $this->request->is('put'))){
            if($this->Banner->save($this->request->data)){
                $this->redirect(array('action'=>'index'));
            }
        }
    }
    
    public function admin_edit($id){
        $this->layout="Painel.admin";
        $this->view="admin_editor";
        $this->data=$this->Banner->read('*',$id);
    }
    
    public function admin_delete($id){
        $this->autoRender=false;
        if($this->Banner->delete($id)){
            $this->redirect(array('action'=>'index'));
        }
    }
    
    public function admin_order($id,$order){
        $this->autoRender=false;
        $this->Banner->query('UPDATE tb_banners SET order_banner = "'.$order.'" WHERE id = "'.$id.'";');
    }
    
}

Zerion Mini Shell 1.0