Blame view

src/Controller/SousCategoriesController.php 5.43 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
<?php
namespace App\Controller;

use App\Controller\AppController;
04a6b875   Alexandre   Version: 2.4.2.0
5
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
6
7
8
9
10
11
12
13

/**
 * SousCategories Controller
 *
 * @property \App\Model\Table\SousCategoriesTable $SousCategories
 */
class SousCategoriesController extends AppController
{
63a22db6   Alexandre   Version: 2.2.5.0
14
15
16
	protected function getArticle() {
		return "La";
	}
04a6b875   Alexandre   Version: 2.4.2.0
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
	
	/**
	 * @param $user
	 *
	 * Give authorization for sous categories
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
		$configuration = TableRegistry::get('Configurations')->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;
		}
	
08d8dbb0   Alexandre   Version: 2.4.2.14
38
		if($this->userHasRole('Administration Plus')) {
94c77ea4   Alexandre   Version: 2.4.2.10
39
			if($action != 'delete') return true;
04a6b875   Alexandre   Version: 2.4.2.0
40
41
42
43
44
45
		}
		
		return false;
	}
	
	
6c4edfa3   Alexandre   First Commit LabI...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
    /**
     * 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']
        ]);

3e24b686   Alexandre   Version: 2.4.2.20
75
76
77
        $materiels = TableRegistry::get('Materiels')->find('all')->where(['sous_categorie_id =' => $id]);
        $this->set('materiels', $materiels);
        
6c4edfa3   Alexandre   First Commit LabI...
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
        $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)) {
d6960faf   Alexandre   Migration de plus...
93
                $this->Flash->success(__('La sous-catégorie a bien été ajouté'));
d40786f0   Alexandre   Version: 2.4.2.3
94
                return $this->redirect(['action' => 'view', $sousCategory->id]);
6c4edfa3   Alexandre   First Commit LabI...
95
            } else {
d6960faf   Alexandre   Migration de plus...
96
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
97
98
            }
        }
19798ef9   Alexandre   Mode_install, maj...
99
100
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
6c4edfa3   Alexandre   First Commit LabI...
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
        $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)) {
d6960faf   Alexandre   Migration de plus...
120
                $this->Flash->success(__('La sous-catégorie a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
121
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
122
            } else {
d6960faf   Alexandre   Migration de plus...
123
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
124
125
            }
        }
19798ef9   Alexandre   Mode_install, maj...
126
127
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
6c4edfa3   Alexandre   First Commit LabI...
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
        $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)) {
d6960faf   Alexandre   Migration de plus...
144
            $this->Flash->success(__('La sous-catégorie a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
145
        } else {
d6960faf   Alexandre   Migration de plus...
146
            $this->Flash->error(__('La sous-catégorie n\'as pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
147
148
149
        }
        return $this->redirect(['action' => 'index']);
    }
758a84af   Alexandre   Version: 2.2.4.0
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
    
    
    
    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';
    }
    
6c4edfa3   Alexandre   First Commit LabI...
168
}