예제 #1
0
 /**
  * Get allowed options for this element.
  *
  * @return array
  */
 public function getAllowedOptions()
 {
     return array_merge(parent::getAllowedOptions(), ['buttonTitle']);
 }
예제 #2
0
파일: Select.php 프로젝트: biggtfish/cms
 /**
  * Get allowed options for this element.
  *
  * @return array
  */
 public function getAllowedOptions()
 {
     return array_merge(parent::getAllowedOptions(), ['elementOptions', 'disabledOptions', 'using', 'hasEmptyValue']);
 }
예제 #3
0
파일: Checkbox.php 프로젝트: biggtfish/cms
 /**
  * Get allowed options for this element.
  *
  * @return array
  */
 public function getAllowedOptions()
 {
     return array_merge(parent::getAllowedOptions(), ['checked']);
 }