/**
  * Retrieve the value for the input form control.
  *
  * Note: line-breaks are automatically removed from the input value.
  *
  * @see    AbstractPropertyInput::inputVal()
  * @return string
  */
 public function inputVal()
 {
     return preg_replace('~[\\n\\r]~', '', parent::inputVal());
 }