confLabinvent; * $role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role']; * $action = $this->request->getAttribute('params')['action']; */ /* * $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; * } */ // Par défaut // return false; // return parent::isAuthorized($user); return $this->isAuthorizedCommons($user); } /** * 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' ] ]); $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->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' ]); } }