ConfigurationsController.php
3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
namespace App\Controller;
use App\Controller\AppController;
/**
* Configurations Controller
*
* @property \App\Model\Table\ConfigurationsTable $Configurations
*/
class ConfigurationsController extends AppController
{
/**
* View method
*
* @param string|null $id Configuration id.
* @return \Cake\Network\Response|null
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
*/
public function view($id = null)
{
$configuration = $this->Configurations->get($id, [
'contain' => []
]);
$this->set('configuration', $configuration);
$this->set('_serialize', ['configuration']);
}
/**
* Edit method
*
* @param string|null $id Configuration 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)
{
$configuration = $this->Configurations->get($id, [
'contain' => []
]);
if ($this->request->is(['patch', 'post', 'put'])) {
$configuration = $this->Configurations->patchEntity($configuration, $this->request->data);
if ($this->Configurations->save($configuration)) {
$this->Flash->success(__('La configuration a bien été sauvegardé.'));
return $this->redirect(['action' => 'view', $id]);
} else {
$this->Flash->error(__('La configuration n\'a pas pu être sauvegardé.'));
}
}
$this->set(compact('configuration'));
$this->set('_serialize', ['configuration']);
}
/**
* Activate debug mode
*
* @return \Cake\Network\Response|NULL
*/
public function debugOn() {
$config = $this->Configurations->get('1')->set('mode_debug', 1);
if ($this->Configurations->save($config)) {
$this->Flash->success(__('Le mode debug a bien été démarrer.'));
}
return $this->redirect(['controller' => 'pages', 'action' => 'tools']);
}
/**
* Desactivate debug mode
*
* @return \Cake\Network\Response|NULL
*/
public function debugOff() {
$config = $this->Configurations->get('1')->set('mode_debug', 0);
if ($this->Configurations->save($config)) {
$this->Flash->success(__('Le mode debug a bien été arréter.'));
}
return $this->redirect(['controller' => 'pages', 'action' => 'tools']);
}
/**
* Activate install mode
*
* @return \Cake\Network\Response|NULL
*/
public function installOn() {
$config = $this->Configurations->get('1')->set('mode_install', 1);
if ($this->Configurations->save($config)) {
$this->Flash->success(__('Le mode install a bien été démarrer.'));
}
return $this->redirect(['controller' => 'pages', 'action' => 'home']);
}
/**
* Desactivate install mode
*
* @return \Cake\Network\Response|NULL
*/
public function installOff() {
$config = $this->Configurations->get('1')->set('mode_install', 0);
if ($this->Configurations->save($config)) {
$this->Flash->success(__('Le mode install a bien été arréter.'));
}
return $this->redirect(['controller' => 'pages', 'action' => 'tools']);
}
}