fileupload.module
Version 1.5.4.3 (checked in on 2009/01/16 at 19:28:18 by drumm)
This is an example to demonstrate how to make a Drupal node support file uploads.
@Database definition:
<?php
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
);
?>
Functions
| Name | Description |
|---|---|
| fileupload_access | Implementation of hook_access. |
| fileupload_delete | Implementation of hook_delete(). |
| 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_submit | Implementation of hook_submit(). |
| fileupload_update | Implementation of hook_update(). |
| fileupload_validate | Implementation of hook_validate(). |
| fileupload_view | Implementation of hook_view. |
