コード例 #1
0
ファイル: RadioValue.php プロジェクト: Opifer/Cms
 /**
  * Get the selected value
  *
  * @return string
  */
 public function getValue()
 {
     $options = parent::getValue();
     if (count($options)) {
         return $options[0]->getName();
     }
     return '';
 }
コード例 #2
0
ファイル: SelectValue.php プロジェクト: Opifer/Cms
 /**
  * Get the selected value
  *
  * @return string
  */
 public function getValue()
 {
     $options = parent::getValue();
     if (count($options)) {
         if (empty($options[0])) {
             $collection = $options->getValues();
             return $collection[0]->getName();
         }
         return $options[0]->getName();
     }
     return '';
 }