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

use App\Controller\AppController;
use Cake\ORM\TableRegistry;

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

    public function getArticle()
    {
        return "L'";
    }

    /**
     * Give authorization for organismes
     *
     * @param
     *            $user
     * @return boolean
     */
    /*
    //public function isAuthorized($user)
    public function isAuthorized($user,
        $action = null, $id=null, $role=null, $userCname=null) {
        /*
         * /*
         * $configuration = $this->confLabinvent;
         * $role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
         * $action = $this->request->getAttribute('params')['action'];
         S/
        /*
         * $action = $this->getActionPassed();
         * $role = $this->getUserRole($user);
         *
         * // Super-Admin peut accéder à chaque action
         * //if($role == 'Super Administrateur') return true;
         *
         * // Administration peut ajouter, supprimer ou modifier un organisme
         * //if($role == 'Administration' && in_array($action,['add','delete','edit'])) return true;
         * if( in_array($action,['add','delete','edit'])) {
         * if ($this->USER_IS_ADMIN_AT_LEAST()) return true;
         * return false;
         * }
         *
         * /*
         * if (in_array($action, ['view', 'index'])) {
         * return true;
         * }
         * if($this->userHasRoleAtLeast('Administration Plus')) {
         * if($action != 'delete') return true;
         * }
         S/
        
        // Par défaut
        // return false;
        // return parent::isAuthorized($user);
        return $this->isAuthorizedCommons($user);
    }
    */

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->index_generic(
            'organismes',
            [
                //@'nom'=>['nice_name'=>'Nom'],
                'nom'=>[],
            ]
        );
    
        /*
        $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) {
        
        return $this->view_generic($id, ['Materiels',]);
        
        /*
        $organisme = $this->Organismes->get($id, [
            'contain' => [
                'Materiels'
            ]
        ]);
        
        $materiels = TableRegistry::get('Materiels')->find('all')->where([
            'organisme_id =' => $id
        ]);
        $this->set('materiels', $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->getData());
            if ($this->Organismes->save($organisme)) {
                $this->Flash->success(__('L\'organisme a bien été ajouté.'));
                return $this->redirect([
                    'action' => 'view',
                    $organisme->id
                ]);
            } else {
                $this->Flash->error(__('L\'organisme n\'a pas pu être ajouté.'));
            }
        }
        $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->getData());
            if ($this->Organismes->save($organisme)) {
                $this->Flash->success(__('L\'organisme a bien été édité.'));
                return $this->redirect([
                    'action' => 'view',
                    $id
                ]);
            } else {
                $this->Flash->error(__('L\'organisme n\'a pas pu être édité.'));
            }
        }
        $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->delete_generic($id);
        /*
        $this->request->allowMethod([
            'post',
            'delete'
        ]);
        $organisme = $this->Organismes->get($id);
        if ($this->Organismes->delete($organisme)) {
            $this->Flash->success(__('L\'organisme a bien été supprimé.'));
        } else {
            $this->Flash->error(__('L\'organisme n\'a pas pu être supprimé.'));
        }
        return $this->redirect([
            'action' => 'index'
        ]);
        */
    }
}