| 1 | <?php |
||
| 9 | abstract class ModuleController extends BaseController implements \Frameworkless\ModuleInterface{
|
||
| 10 | |||
| 11 | protected function render($view, array $data = array()){
|
||
| 21 | |||
| 22 | abstract public function process(); |
||
| 23 | |||
| 24 | /** |
||
| 25 | * set module params |
||
| 26 | * @param array $params |
||
| 27 | * @return $this |
||
| 28 | * @throws \Exception |
||
| 29 | */ |
||
| 30 | public function setParams(array $params = array()){
|
||
| 40 | } |
||
| 41 |