label; } /** * @return string */ public function getInputType() { return $this->inputType; } /** * @param string $inputType * * @return $this */ public function setInputType($inputType) { $this->inputType = $inputType; return $this; } /** * @return array */ public function getInputAttrs() { return $this->inputAttrs; } /** * @param array $inputAttrs * * @return $this */ public function setInputAttrs($inputAttrs) { $this->inputAttrs = $inputAttrs; return $this; } /** * @param string $label * * @return $this */ public function setLabel($label) { $this->label = $label; return $this; } /** * @param string|NULL $helpPre */ public function setHelpPre($helpPre) { $this->helpPre = is_string($helpPre) && strlen($helpPre) ? $helpPre : NULL; } /** * @param string|NULL $helpPost */ public function setHelpPost($helpPost) { $this->helpPost = is_string($helpPost) && strlen($helpPost) ? $helpPost : NULL; } }