/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC
1 by Gustav Hartvigsson
* initial code
1
<?php
2
3
abstract class AbstractView {
10 by Gustav Hartvigsson
* __contructor -> __construct
4
  public function
5
  __construct () {
6
    
1 by Gustav Hartvigsson
* initial code
7
  }
10 by Gustav Hartvigsson
* __contructor -> __construct
8
  
5 by Gustav Hatvigsson
* changed a few small things
9
  public abstract function
10
  render ($user_data);
1 by Gustav Hartvigsson
* initial code
11
}