controller_main.php 306 B

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