17 lines
245 B
PHP
17 lines
245 B
PHP
<?php
|
|
|
|
namespace Controller;
|
|
use \FuzeWorks\Controller;
|
|
|
|
class Standard extends Controller {
|
|
public function __construct(&$core) {
|
|
parent::__construct($core);
|
|
}
|
|
|
|
public function index($path = null) {
|
|
$this->layout->view('home');
|
|
}
|
|
}
|
|
|
|
|
|
?>
|