Mercurial > hg > extraction-interface
view develop/controllers/home.php @ 19:f60969462226
save tag modification of topic configration into topic_tag_relation table
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Mon, 23 Feb 2015 12:46:03 +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); } } ?>