예제 #1
0
파일: RecordLink.php 프로젝트: skema/skema
 public function newBean()
 {
     $bean = parent::newBean();
     $bean->{$this->_('htmlInputTemplate')} = $this->htmlInputTemplate;
     $bean->{$this->_('linkedSetId')} = $this->linkedSetId;
     return $bean;
 }
예제 #2
0
파일: Checkbox.php 프로젝트: skema/skema
 public function newBean()
 {
     $bean = parent::newBean();
     if (empty($bean->{$this->_('checkedValue')})) {
         $bean->{$this->_('checkedValue')} = '';
     }
     return $bean;
 }
예제 #3
0
파일: DropDown.php 프로젝트: skema/skema
 public function newBean()
 {
     $bean = parent::newBean();
     if (empty($bean->{$this->_('options')})) {
         $bean->{$this->_('options')} = '';
     }
     return $bean;
 }
예제 #4
0
파일: Currency.php 프로젝트: skema/skema
 public function newBean()
 {
     $bean = parent::newBean();
     $bean->{$this->_('symbol')} = $this->symbol;
     return $bean;
 }