find()->where(['id =' => 1])->first(); $role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role']; $action = $this->request->params['action']; // Super-Admin peut accéder à chaque action if($role == 'Super Administrateur') return true; if (in_array($action, ['view', 'index'])) { return true; } if(in_array($role, ['Administration', 'Administration Plus'])) { if(action != 'delete') return true; } return false; } /** * 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(__('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->data); 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']); } }