OrganismesController.php 3.35 KB
<?php
namespace App\Controller;

use App\Controller\AppController;

/**
 * Organismes Controller
 *
 * @property \App\Model\Table\OrganismesTable $Organismes
 */
class OrganismesController extends AppController
{

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $organismes = $this->paginate($this->Organismes);

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

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

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

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $organisme = $this->Organismes->newEntity();
        if ($this->request->is('post')) {
            $organisme = $this->Organismes->patchEntity($organisme, $this->request->data);
            if ($this->Organismes->save($organisme)) {
                $this->Flash->success(__('The organisme has been saved.'));
                return $this->redirect(['action' => 'index']);
            } else {
                $this->Flash->error(__('The organisme could not be saved. Please, try again.'));
            }
        }
        $this->set(compact('organisme'));
        $this->set('_serialize', ['organisme']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Organisme 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)
    {
        $organisme = $this->Organismes->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $organisme = $this->Organismes->patchEntity($organisme, $this->request->data);
            if ($this->Organismes->save($organisme)) {
                $this->Flash->success(__('The organisme has been saved.'));
                return $this->redirect(['action' => 'index']);
            } else {
                $this->Flash->error(__('The organisme could not be saved. Please, try again.'));
            }
        }
        $this->set(compact('organisme'));
        $this->set('_serialize', ['organisme']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Organisme 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']);
        $organisme = $this->Organismes->get($id);
        if ($this->Organismes->delete($organisme)) {
            $this->Flash->success(__('The organisme has been deleted.'));
        } else {
            $this->Flash->error(__('The organisme could not be deleted. Please, try again.'));
        }
        return $this->redirect(['action' => 'index']);
    }
}