Location: PHPKode > projects > ProdigView > ProdigyView Example Code/mvc/phppro_mvc/controller/indexController.php
<?php
Class indexController Extends baseController {
public function index() {
/*** set a template variable ***/
/*** load the index template ***/
$this->registry->template->show('index');
}
}
?>