예제 #1
0
파일: edit.php 프로젝트: laiello/perseph
 protected function _setup()
 {
     parent::_setup();
     $this->addStaticElement('id');
     $this->addTypicalElement('name');
     $this->addTypicalElement('date');
     $this->addStaticElement('float');
 }
예제 #2
0
 protected function _setup()
 {
     parent::_setup();
     $this->addStaticElement('id');
     foreach (array('name', 'date', 'time', 'dateTime', 'bool', 'decimal', 'float', 'memoryOnly', 'otherDecimal', 'nullStr') as $element) {
         $this->addTypicalElement($element);
     }
     $this->addSelectElement('nameRef', DBSName::search(DBS_Query::matchAll()));
 }