<?php
App::uses('AppController', 'Controller');
/**
* Groups Controller
*
* @property Group $Group
* @property PaginatorComponent $Paginator
* @property SessionComponent $Session
* @property FlashComponent $Flash
*/
class GroupsController extends AppController {
/**
* Components
*
* @var array
*/
public $components = array('Paginator', 'Session', 'Flash');
public function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow('admin_add');
}
/**
* admin_index method
*
* @return void
*/
public function admin_index() {
$this->Group->recursive = 0;
$this->set('groups', $this->Paginator->paginate());
}
/**
* admin_view method
*
* @throws NotFoundException
* @param string $id
* @return void
*/
public function admin_view($id = null) {
if (!$this->Group->exists($id)) {
throw new NotFoundException(__('Invalid group'));
}
$options = array('conditions' => array('Group.' . $this->Group->primaryKey => $id));
$this->set('group', $this->Group->find('first', $options));
}
/**
* admin_add method
*
* @return void
*/
public function admin_add() {
if ($this->request->is('post')) {
$this->Group->create();
if ($this->Group->save($this->request->data)) {
$this->Flash->success(__('The group has been saved.'));
return $this->redirect(array('action' => 'index'));
} else {
$this->Flash->error(__('The group could not be saved. Please, try again.'));
}
}
}
/**
* admin_edit method
*
* @throws NotFoundException
* @param string $id
* @return void
*/
public function admin_edit($id = null) {
if (!$this->Group->exists($id)) {
throw new NotFoundException(__('Invalid group'));
}
if ($this->request->is(array('post', 'put'))) {
if ($this->Group->save($this->request->data)) {
$this->Flash->success(__('The group has been saved.'));
return $this->redirect(array('action' => 'index'));
} else {
$this->Flash->error(__('The group could not be saved. Please, try again.'));
}
} else {
$options = array('conditions' => array('Group.' . $this->Group->primaryKey => $id));
$this->request->data = $this->Group->find('first', $options);
}
}
/**
* admin_delete method
*
* @throws NotFoundException
* @param string $id
* @return void
*/
public function admin_delete($id = null) {
$this->Group->id = $id;
if (!$this->Group->exists()) {
throw new NotFoundException(__('Invalid group'));
}
$this->request->allowMethod('post', 'delete');
if ($this->Group->delete()) {
$this->Flash->success(__('The group has been deleted.'));
} else {
$this->Flash->error(__('The group could not be deleted. Please, try again.'));
}
return $this->redirect(array('action' => 'index'));
}
}