/**
  * Method to get certain otherwise inaccessible properties from the form field object.
  *
  * @param   string  $name  The property name for which to the the value.
  *
  * @return  mixed          The property value or null.
  *
  * @since   0.3.0
  */
 public function __get($name)
 {
     switch ($name) {
         case 'maxfiles':
             return $this->{$name};
     }
     return parent::__get($name);
 }