| 8 |
* Support for large numbers of files. This module prevents one directory from having to many files which can cause problems managing the filesystem. |
* Support for large numbers of files. This module prevents one directory from having to many files which can cause problems managing the filesystem. |
| 9 |
* Duplicate file name support. Your module can manage the namespace instead of being forced to rename files and confusing users. |
* Duplicate file name support. Your module can manage the namespace instead of being forced to rename files and confusing users. |
| 10 |
* Disk space limits can be set by file area allowing different modules to have different limits. |
* Disk space limits can be set by file area allowing different modules to have different limits. |
| 11 |
|
|
| 12 |
|
Usage Notes |
| 13 |
|
----------- |
| 14 |
|
|
| 15 |
|
When using the API, be sure that your module adds an 'enctype' attribute to your |
| 16 |
|
form that has the value 'multipart/form-data' which can be done with the following line: |
| 17 |
|
$form['#attributes'] = array('enctype' => 'multipart/form-data'); |
| 18 |
|
|