link = $link; $this->user = $user; $this->module = $currentModule; if(empty($input)) { $this->input = $_REQUEST; } else { $this->input = $input; } } public function getInputParameter($name) { return $this->input[$name]; } /** * * @return Vtiger_Link */ public function getLink() { return $this->link; } /** * * @return Users */ public function getUser() { return $this->user; } public function getModule() { return $this->module; } } ?>