controller_404.php 127 B

1234567891011
  1. <?php
  2. class controller_404 extends Controller
  3. {
  4. function index()
  5. {
  6. $this->view->generate('404.php');
  7. }
  8. }