Exemple #1
0
 /**
  * Return the allowed options for this container
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('dir' => 1, 'lang' => 1, 'xml:lang' => 1);
     return array_merge(One_Form_Container_Abstract::allowedOptions(), $additional);
 }
Exemple #2
0
 /**
  * Return the allowed options for this container
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('title' => 2, 'default' => 2);
     return array_merge(One_Form_Container_Abstract::allowedOptions(), $additional);
 }
Exemple #3
0
 /**
  * Return the allowed options for this container
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('dir' => 1, 'lang' => 1, 'xml:lang' => 1, 'title' => 2, 'width' => 2, 'height' => 2, 'css' => 2);
     return array_merge(One_Form_Container_Abstract::allowedOptions(), $additional);
 }
Exemple #4
0
 /**
  * Return the allowed options for this container
  *
  * @return array
  */
 protected static function allowedOptions()
 {
     $additional = array('dir' => 1, 'lang' => 1, 'xml:lang' => 1, 'accept' => 1, 'accept-charset' => 1, 'enctype' => 1, 'target' => 1, 'widgetsInContainer' => 2, 'captcha' => 2, 'type' => 2);
     return array_merge(One_Form_Container_Abstract::allowedOptions(), $additional);
 }