initial commit
This commit is contained in:
33
app/Controller/MaintenanceController.php
Normal file
33
app/Controller/MaintenanceController.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
class MaintenanceController extends AppController
|
||||
{
|
||||
|
||||
var $name = 'Maintenance';
|
||||
|
||||
var $helpers = array('Html');
|
||||
|
||||
|
||||
|
||||
public function initialize()
|
||||
{
|
||||
$this->setDefaultTimeStamp();
|
||||
}
|
||||
|
||||
|
||||
public function beforeRender() {
|
||||
parent::beforeRender();
|
||||
|
||||
$this->layout = 'empty';
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
function index()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user