コード例 #1
0
ファイル: checkbox_tbd.php プロジェクト: pdelbar/onethree
 /**
  * Return the allowed options for this widget
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('dir' => 1, 'lang' => 1, 'xml:lang' => 1, 'accesskey' => 1, 'tabindex' => 1, 'disabled' => 1, 'size' => 1, 'multiple' => 1, 'options' => 2, 'specifier' => 2);
     return array_merge(parent::allowedOptions(), $additional);
 }
コード例 #2
0
ファイル: textfield_tbd.php プロジェクト: pdelbar/onethree
 /**
  * Return the allowed options for this widget
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('dir' => 1, 'lang' => 1, 'xml:lang' => 1, 'disabled' => 1, 'maxlength' => 1, 'readonly' => 1, 'size' => 1, 'specifier' => 2, 'placeholder' => 1);
     return array_merge(parent::allowedOptions(), $additional);
 }