1.5.2.2 (checked in on 2006/05/01 at 10:08:51 by webchick)
This is an example to demonstrate how to make a Drupal node support file uploads.
@Database definition:
CREATE TABLE fileupload (
nid int(10) unsigned NOT NULL default '0',
filename varchar(255) not null,
filepath varchar(255) not null,
filemime varchar(255) not null,
filesize int(10) unsigned not null
);
| Name | Description |
|---|---|
| fileupload_access | Implementation of hook_access. |
| fileupload_delete | Implementation of hook_delete(). |
| fileupload_execute | Implementation of hook_execute(). |
| fileupload_file_download | Implementation of hook_file_download. |
| fileupload_form | Implementation of hook_form(). |
| fileupload_help | Implementation of hook_help. |
| fileupload_insert | Implementation of hook_insert(). |
| fileupload_load | Implementation of hook_load(). |
| fileupload_menu | Implementation of hook_menu. |
| fileupload_node_info | Implementation of hook_node_info. |
| fileupload_perm | Implementation of hook_perm. |
| fileupload_update | Implementation of hook_update(). |
| fileupload_validate | Implementation of hook_validate(). |
| fileupload_view | Implementation of hook_view. |