| 1234567891011121314151617181920 |
- <?php
- class controller_main extends Controller
- {
- public function __construct()
- {
- parent::__construct();
- if(empty($_SESSION['user'])){
- header('Location: /user/login');
- }
- }
- function index()
- {
- $this->view->generate('main_view.php');
- }
- }
|