Пример #1
0
 /**
  * Method to set certain otherwise inaccessible properties of the form field object.
  *
  * @param   string  $name   The property name for which to the the value.
  * @param   mixed   $value  The value of the property.
  *
  * @return  void
  *
  * @since   0.3.0
  */
 public function __set($name, $value)
 {
     switch ($name) {
         case 'maxfiles':
             $this->{$name} = (string) $value;
             break;
         default:
             parent::__set($name, $value);
     }
 }