SousCategoriesController.php 4.51 KB
<?php
namespace App\Controller;

use App\Controller\AppController;

/**
 * SousCategories Controller
 *
 * @property \App\Model\Table\SousCategoriesTable $SousCategories
 */
class SousCategoriesController extends AppController
{
	protected function getArticle() {
		return "La";
	}
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
            'contain' => ['Categories']
        ];
        $sousCategories = $this->paginate($this->SousCategories);

        $this->set(compact('sousCategories'));
        $this->set('_serialize', ['sousCategories']);
    }

    /**
     * View method
     *
     * @param string|null $id Sous Category id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $sousCategory = $this->SousCategories->get($id, [
            'contain' => ['Categories']
        ]);

        $this->set('sousCategory', $sousCategory);
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $sousCategory = $this->SousCategories->newEntity();
        if ($this->request->is('post')) {
            $sousCategory = $this->SousCategories->patchEntity($sousCategory, $this->request->data);
            if ($this->SousCategories->save($sousCategory)) {
                $this->Flash->success(__('La sous-catégorie a bien été ajouté'));
                return $this->redirect(['action' => 'index']);
            } else {
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être ajouté.'));
            }
        }
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
        $this->set(compact('sousCategory', 'categories'));
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Sous Category id.
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
    public function edit($id = null)
    {
        $sousCategory = $this->SousCategories->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $sousCategory = $this->SousCategories->patchEntity($sousCategory, $this->request->data);
            if ($this->SousCategories->save($sousCategory)) {
                $this->Flash->success(__('La sous-catégorie a bien été édité.'));
                return $this->redirect(['action' => 'index']);
            } else {
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être édité.'));
            }
        }
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
        $this->set(compact('sousCategory', 'categories'));
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Sous Category id.
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function delete($id = null)
    {
        $this->request->allowMethod(['post', 'delete']);
        $sousCategory = $this->SousCategories->get($id);
        if ($this->SousCategories->delete($sousCategory)) {
            $this->Flash->success(__('La sous-catégorie a bien été supprimé.'));
        } else {
            $this->Flash->error(__('La sous-catégorie n\'as pas pu être supprimé.'));
        }
        return $this->redirect(['action' => 'index']);
    }
    
    
    
    public function getByCategorie() {
    	if (isset($this->request->data['s_categorie_id']))
    		$categorie_id = $this->request->data['s_categorie_id'];
    		else
    			$categorie_id = $this->request->data['categorie_id'];
    			$souscategories = $this->SousCategories->find('list', [
    					'conditions' => ['SousCategories.categorie_id' => $categorie_id],
    					'order' => ['SousCategories.nom'],
    					'recursive' => -1,
    					'keyField' => 'id', 'valueField' => 'nom'
    			]);
    			$this->set('sousCategories',$souscategories);
    			$this->viewBuilder()->layout = 'ajax';
    }
    
}