providerService = $projectService; } /** * get - handle get requests */ public function get($params) { $providers = $this->providerService->getProviders(); $this->tpl->assign('providers', $providers); return $this->tpl->display('connector.show'); } /** * post - handle post requests */ public function post($params) { // Redirect. } }