summaryrefslogtreecommitdiffstats
path: root/management-interface/api/models/Main.php
blob: cca7542188b5cccd3a474357662201fd2c628f03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class Main {
	$view;

	function __construct() {
		echo "test";
		$view = new View;
	}

	function home() {
		echo $view->render('views/index.php');
	}

}

?>