Преглед изворни кода

[Form] add type for FileField class

Oleg Zinchenko пре 14 година
родитељ
комит
6f28511ee4
1 измењених фајлова са 10 додато и 0 уклоњено
  1. 10 0
      src/Symfony/Component/Form/FileField.php

+ 10 - 0
src/Symfony/Component/Form/FileField.php

@@ -16,6 +16,16 @@ namespace Symfony\Component\Form;
  */
 class FileField extends InputField
 {
+    /**
+     * {@inheritDoc}
+     */
+    public function __construct($key, array $options = array())
+    {
+        $options['type'] = 'file';
+
+        parent::__construct($key, $options);
+    }
+
     /**
      * {@inheritDoc}
      */