예제 #1
0
파일: Captcha.php 프로젝트: visapi/amun
 public function getFields()
 {
     return array_merge(parent::getFields(), array('src' => $this->src));
 }
예제 #2
0
파일: Reference.php 프로젝트: visapi/amun
 public function getFields()
 {
     return array_merge(parent::getFields(), array('valueField' => $this->valueField, 'labelField' => $this->labelField, 'src' => $this->src));
 }
예제 #3
0
파일: TabbedPane.php 프로젝트: visapi/amun
 public function add(ElementAbstract $element)
 {
     $this->children['item'][] = $element->getFields();
 }
예제 #4
0
파일: Textarea.php 프로젝트: visapi/amun
 public function getFields()
 {
     return array_merge(parent::getFields(), array('role' => $this->role));
 }
예제 #5
0
파일: Select.php 프로젝트: visapi/amun
 public function getFields()
 {
     return array_merge(parent::getFields(), array('children' => $this->children));
 }