fileupload.module

Version 1.3 (checked in on 2004/09/08 at 21:22:26 by JonBob)

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',
basename varchar(255) not null,
filepath varchar(255) not null,
mime varchar(255) not null,
size int(10) unsigned not null
);

?>

Functions

NameDescription
fileupload_access
fileupload_delete
fileupload_file_download
fileupload_form
fileupload_help
fileupload_insert
fileupload_linkIntegrate with Drupal
fileupload_load
fileupload_node_name
fileupload_perm
fileupload_update
fileupload_validate
fileupload_view
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.