getId()."'"; $name = "name='".$this->getName()."'"; $placeholder = !is_null($this->placeholder) ? "placeholder='".$this->placeholder."'" : ""; $maxLength = $this->maxLength > 0 ? "maxlength='".$this->maxLength."'" : ""; $minLength = $this->minLength > 0 ? "minlength='".$this->minLength."'" : ""; $class = "class='".implode(" ", $this->classNames)."'"; return ""; } }