/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC

« back to all changes in this revision

Viewing changes to Common/AbstractController.php

  • Committer: Gustav Hatvigsson
  • Date: 2016-03-16 13:50:23 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160316135023-iy9mun5l76kbvmud
* Added FourOhFour.php
* added a way to define a 404 controller

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    
6
6
  }
7
7
  
8
 
  public function default_method () {
 
8
  public function default_method ($args) {
9
9
    echo "<h1>It Works!</h1>";
10
10
    echo "<b> You should add default_method () to your class. </b>";
11
11
  }