controller_main.php 296 B

12345678910111213141516171819
  1. <?php
  2. class controller_main extends Controller
  3. {
  4. public function __construct()
  5. {
  6. if(empty($_SESSION['user'])){
  7. header('Location: /user/login');
  8. }
  9. }
  10. function index()
  11. {
  12. $this->view->generate('main_view.php', 'template_view.php');
  13. }
  14. }