Example #1
0
 /**
  * @return string
  */
 public function getContent()
 {
     if ($this->options) {
         return parent::getContent();
     }
     $this->labelHtmlOptions['class'] = (isset($this->labelHtmlOptions['class']) ? $this->labelHtmlOptions['class'] . ' ' : '') . $this->labelClass;
     return $this->getInput() . $this->getHTMLError();
 }
Example #2
0
 /**
  * Overwrite field getContent to add hints
  * @return string
  */
 public function getContent()
 {
     return parent::getContent() . $this->getHint() . $this->getPreview();
 }