7911 Posts in 1354 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Uploadify + DOM : respect uploadFolder & allowed extensions
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 715 Views |
-
Uploadify + DOM : respect uploadFolder & allowed extensions

3 September 2010 at 4:23am
Below is a patch to FileDataObjectManager in the latest SVN of DOM to allow Uploadify fields to respect uploadFolder & allowed extensions. UC: is there an issue tracker / other workflow that's preferred for patch submissions?
Index: www/dataobject_manager/code/FileDataObjectManager.php
===================================================================
--- www/dataobject_manager/code/FileDataObjectManager.php (revision 14)
+++ www/dataobject_manager/code/FileDataObjectManager.php (working copy)
@@ -293,6 +293,16 @@
}
}
+ // [start] bb patch
+ if(!empty($this->allowedFileTypes))
+ {
+
+ $uploader->setFileTypes($this->getAllowedFileTypes(), $this->PluralTitle() . '(' . implode(',',$this->allowedFileTypes) . ')');
+ }
+
+ $uploader->uploadFolder = $this->uploadFolder;
+ // [end] bb patch
+
return $fields;
}
| 715 Views | ||
|
Page:
1
|
Go to Top |

