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