summaryrefslogtreecommitdiff
path: root/apps/um/controllers/Main.class.php
blob: 7651b6291c978b8fd692377473270eb512e0a238 (plain)
1
2
3
4
5
6
7
8
9
<?php

Router::register('index', 'Main', 'index');

class Main extends Controller {
	public function index($routed, $remainder) {
		$this->showView('index');
	}
}