Mercurial > hg > extraction-interface
view develop/controllers/home.php @ 24:b55f5d3564c4
add some regular expressions and wordlist for topic ??
author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
---|---|
date | Fri, 27 Feb 2015 16:35:59 +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); } } ?>