Mercurial > hg > extraction-interface
view develop/controllers/home.php @ 25:4b6d2d7e706e
update for the integration
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 02 Mar 2015 16:16:54 +0100 |
parents | 63e08b98032f |
children | 579f03f8bee5 |
line wrap: on
line source
<?php class Home extends BaseController { protected function Index() { $viewmodel = new HomeModel(); $this->ReturnView($viewmodel->Index(), false); } protected function TestAction() { $viewmodel = new HomeModel(); $this->ReturnView($viewmodel->Test(), true); } } ?>