Beispiel #1
0
 /**
  * {@inheritDoc}
  */
 public function getValue()
 {
     $value = parent::getValue();
     if (count($this->getFields()) > 1) {
         $value = explode(' ', trim($value), 2);
         if (1 == count($value)) {
             $value[] = $this->getField();
         }
     }
     return $value;
 }