To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC
4
by Gustav Hatvigsson
* Added FourOhFour.php
|
1
|
<?php
|
2
|
|
3
|
class FourOhFour extends AbstractController {
|
4
|
|
5
|
public function
|
6
|
get_methods () {
|
7
|
return NULL;
|
8
|
}
|
9
|
|
10
|
public function
|
11
|
default_method ($url) {
|
12
|
echo "<h1> 404, Not found. </h1>";
|
13
|
echo "Could not find " . $url;
|
14
|
}
|
15
|
|
16
|
}
|