83 lines
2.3 KiB
PHP
Executable file
83 lines
2.3 KiB
PHP
Executable file
<?php
|
|
class StatusesController extends AppController {
|
|
|
|
var $name = 'Statuses';
|
|
var $helpers = array('Html', 'Form');
|
|
|
|
var $paginate = array(
|
|
'Status' => array('order' => array('Status.id' => 'asc')),
|
|
'Enquiry' => array('order' => array('Enquiry.id' => 'desc'), 'limit' => 100)
|
|
);
|
|
|
|
function index() {
|
|
$this->Status->recursive = 0;
|
|
$this->set('statuses', $this->paginate());
|
|
}
|
|
|
|
function view($id = null) {
|
|
if (!$id) {
|
|
$this->Session->setFlash(__('Invalid Status.', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
$this->set('status', $this->Status->read(null, $id));
|
|
$this->set('enquiries', $this->paginate('Enquiry', array('Enquiry.status_id' => $id)));
|
|
}
|
|
|
|
function add() {
|
|
if (!empty($this->data)) {
|
|
$this->Status->create();
|
|
if ($this->Status->save($this->data)) {
|
|
$this->Session->setFlash(__('The Status has been saved', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
} else {
|
|
$this->Session->setFlash(__('The Status could not be saved. Please, try again.', true));
|
|
}
|
|
}
|
|
}
|
|
|
|
function edit($id = null) {
|
|
if (!$id && empty($this->data)) {
|
|
$this->Session->setFlash(__('Invalid Status', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
if (!empty($this->data)) {
|
|
if ($this->Status->save($this->data)) {
|
|
$this->Session->setFlash(__('The Status has been saved', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
} else {
|
|
$this->Session->setFlash(__('The Status could not be saved. Please, try again.', true));
|
|
}
|
|
}
|
|
if (empty($this->data)) {
|
|
$this->data = $this->Status->read(null, $id);
|
|
}
|
|
}
|
|
|
|
function delete($id = null) {
|
|
if (!$id) {
|
|
$this->Session->setFlash(__('Invalid id for Status', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
if ($this->Status->del($id)) {
|
|
$this->Session->setFlash(__('Status deleted', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
}
|
|
|
|
function jsonList($selectedId = null) {
|
|
|
|
$statuses = $this->Status->find('all', array('recursive'=>0));
|
|
$status_list = array();
|
|
foreach ($statuses as $status) {
|
|
$statusid = $status['Status']['id'];
|
|
$status_list[$statusid] = $status['Status']['name'];
|
|
}
|
|
|
|
$status_list['selected'] = $selectedId;
|
|
|
|
$this->set('status_list', $status_list);
|
|
}
|
|
|
|
}
|
|
?>
|