2015-02-08 16:29:39 +00:00
|
|
|
<?php
|
|
|
|
|
2015-04-29 15:18:33 +00:00
|
|
|
namespace Controller;
|
2015-04-29 17:36:38 +00:00
|
|
|
use \FuzeWorks\Controller;
|
2015-04-29 15:18:33 +00:00
|
|
|
|
2015-04-29 17:36:38 +00:00
|
|
|
class Standard extends Controller {
|
2015-02-08 16:29:39 +00:00
|
|
|
public function __construct(&$core) {
|
|
|
|
parent::__construct($core);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function index($path = null) {
|
|
|
|
$this->layout->view('maintenance');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|