瀏覽代碼

[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}
      */