48 lines
1 KiB
PHP
Executable file
48 lines
1 KiB
PHP
Executable file
<?php
|
|
/* App Controller */
|
|
|
|
|
|
class AppController extends Controller {
|
|
|
|
var $components = array('Auth', 'RequestHandler');
|
|
|
|
var $helpers = array('Javascript', 'Time', 'Html', 'Form', 'Ajax');
|
|
function beforeFilter() {
|
|
$this->set('currentuser', $this->Auth->user());
|
|
|
|
|
|
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
|
|
$this->Auth->loginRedirect = array('controller' => 'enquiries', 'action' => 'index');
|
|
$this->Auth->allow('display');
|
|
$this->Auth->authorize = 'controller';
|
|
|
|
|
|
/**
|
|
* Define the scheme for issue Types.
|
|
*/
|
|
$this->set('issueTypes', array(1=>"Bug Report", 2=>"Feature Request", 3=>"Other IT Help"));
|
|
|
|
$priorities = array(1 => 'Low',2=> "Medium",3=> "High", 4=> "Critical");
|
|
$this->set('issuePriorities', $priorities);
|
|
|
|
|
|
|
|
if($this->RequestHandler->isAjax()) {
|
|
Configure::write('debug', 0);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
function isAuthorized() {
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
?>
|