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

use App\Controller\AppController;

/**
 * SousCategories Controller
 *
 * @property \App\Model\Table\SousCategoriesTable $SousCategories
 */
class SousCategoriesController extends AppController
{

    /**
     * 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', ['limit' => 200]);
        $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', ['limit' => 200]);
        $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']);
    }
}