/**
  * Get input for time
  * @param string $time
  * @return FormularInput 
  */
 protected function getTimeInputCode($time)
 {
     $FieldTime = new FormularInput('splits[time][]', '', $time);
     $FieldTime->setLayout(FormularFieldset::$LAYOUT_FIELD_INLINE);
     $FieldTime->setLabelToRight();
     return $FieldTime->getCode();
 }