mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
109 lines
3.1 KiB
PHP
109 lines
3.1 KiB
PHP
<?php
|
|
namespace App\Controller;
|
|
|
|
use App\Controller\AppController;
|
|
use Model\Navigation\NaviHierarchy;
|
|
use Model\Navigation\NaviHierarchyEntry;
|
|
/**
|
|
* Roles Controller
|
|
*
|
|
*
|
|
* @method \App\Model\Entity\Role[]|\Cake\Datasource\ResultSetInterface paginate($object = null, array $settings = [])
|
|
*/
|
|
class RolesController extends AppController
|
|
{
|
|
|
|
/**
|
|
* Index method
|
|
*
|
|
* @return \Cake\Http\Response|null
|
|
*/
|
|
public function index()
|
|
{
|
|
|
|
$roles = $this->paginate($this->Roles);
|
|
|
|
$this->set(compact('roles'));
|
|
}
|
|
|
|
/**
|
|
* View method
|
|
*
|
|
* @param string|null $id Role id.
|
|
* @return \Cake\Http\Response|null
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
*/
|
|
public function view($id = null)
|
|
{
|
|
$role = $this->Roles->get($id, [
|
|
'contain' => [],
|
|
]);
|
|
|
|
$this->set('role', $role);
|
|
}
|
|
|
|
/**
|
|
* Add method
|
|
*
|
|
* @return \Cake\Http\Response|null Redirects on successful add, renders view otherwise.
|
|
*/
|
|
public function add()
|
|
{
|
|
$role = $this->Roles->newEntity();
|
|
if ($this->request->is('post')) {
|
|
$role = $this->Roles->patchEntity($role, $this->request->getData());
|
|
if ($this->Roles->save($role)) {
|
|
$this->Flash->success(__('The role has been saved.'));
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
}
|
|
$this->Flash->error(__('The role could not be saved. Please, try again.'));
|
|
}
|
|
$this->set(compact('role'));
|
|
}
|
|
|
|
/**
|
|
* Edit method
|
|
*
|
|
* @param string|null $id Role id.
|
|
* @return \Cake\Http\Response|null Redirects on successful edit, renders view otherwise.
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
*/
|
|
public function edit($id = null)
|
|
{
|
|
$role = $this->Roles->get($id, [
|
|
'contain' => [],
|
|
]);
|
|
if ($this->request->is(['patch', 'post', 'put'])) {
|
|
$role = $this->Roles->patchEntity($role, $this->request->getData());
|
|
if ($this->Roles->save($role)) {
|
|
$this->Flash->success(__('The role has been saved.'));
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
}
|
|
$this->Flash->error(__('The role could not be saved. Please, try again.'));
|
|
}
|
|
$this->set(compact('role'));
|
|
}
|
|
|
|
/**
|
|
* Delete method
|
|
*
|
|
* @param string|null $id Role id.
|
|
* @return \Cake\Http\Response|null Redirects to index.
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
*/
|
|
public function delete($id = null)
|
|
{
|
|
$this->request->allowMethod(['post', 'delete']);
|
|
$role = $this->Roles->get($id);
|
|
if ($this->Roles->delete($role)) {
|
|
$this->Flash->success(__('The role has been deleted.'));
|
|
} else {
|
|
$this->Flash->error(__('The role could not be deleted. Please, try again.'));
|
|
}
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
}
|
|
}
|