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, ['getByCategorie', 'view', 'index'])) { return true; } if($this->userHasRole('Administration Plus')) { if($action != 'delete') return true; } return false; } /** * 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'] ]); $materiels = TableRegistry::get('Materiels')->find('all')->where(['sous_categorie_id =' => $id]); $this->set('materiels', $materiels); $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' => 'view', $sousCategory->id]); } else { $this->Flash->error(__('La sous-catégorie n\'as pas pu être ajouté.')); } } $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']); $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' => 'view', $id]); } else { $this->Flash->error(__('La sous-catégorie n\'as pas pu être édité.')); } } $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']); $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']); } public function getByCategorie() { if (isset($this->request->data['s_categorie_id'])) $categorie_id = $this->request->data['s_categorie_id']; else $categorie_id = $this->request->data['categorie_id']; $souscategories = $this->SousCategories->find('list', [ 'conditions' => ['SousCategories.categorie_id' => $categorie_id], 'order' => ['SousCategories.nom'], 'recursive' => -1, 'keyField' => 'id', 'valueField' => 'nom' ]); $this->set('sousCategories',$souscategories); $this->viewBuilder()->layout = 'ajax'; } }