/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class FourOhFour extends AbstractController {
  
  public function
  get_methods () {
    return NULL;
  }
  
  public function
  default_method ($url) {
    echo "<h1> 404, Not found. </h1>";
    echo "Could not find " . $url;
  }
  
}