This commit is contained in:
xinatorus
2020-04-29 20:14:53 +02:00
parent 56891bda09
commit f588a293ed
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
class ExampleController extends Controller{
public function index(){
echo 'example';
// TODO:
// - set view
// - process POST variables
// ...
}
public function subpage(){
echo 'subpage';
}
}