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_accessImplementation of hook_access.
fileupload_deleteРеализация hook_delete().
fileupload_file_downloadImplementation of hook_file_download.
fileupload_formРеализация hook_form().
fileupload_helpImplementation of hook_help.
fileupload_insertImplementation of hook_insert().
fileupload_loadImplementation of hook_load().
fileupload_menuImplementation of hook_menu.
fileupload_node_infoImplementation of hook_node_info.
fileupload_permImplementation of hook_perm.
fileupload_submitImplementation of hook_submit().
fileupload_updateImplementation of hook_update().
fileupload_validateImplementation of hook_validate().
fileupload_viewImplementation of hook_view.
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему