fileupload.module
Версия 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:
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 );
Функции
Имя | Описание |
---|---|
fileupload_access | Implementation of hook_access. |
fileupload_delete | Реализация hook_delete(). |
fileupload_file_download | Implementation of hook_file_download. |
fileupload_form | Реализация 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. |