source: sipes/modules_contrib/filefield/README.txt @ ef72343

stable
Last change on this file since ef72343 was ee98b7d, checked in by jpuentes <jpuentes@…>, 7 años ago

se agrego el modulo de imagen como dependencia del modulo de reformulación

  • Propiedad mode establecida a 100644
File size: 1.6 KB
Línea 
1
2FileField provides an "File" field type to CCK. It provides many advantages over
3the Drupal core "Upload" module including:
4
5 * Per-field upload control (file extensions, file size).
6 * Per-node upload size limits.
7 * Multiple fields per content type.
8 * Customizable paths for saving uploads (plus token support for dynamic paths).
9 * Icons for uploaded file types.
10
11FileField was written by Darrel Opry (dopry).
12Maintained by Nathan Haug (quicksketch) and Andrew Morton (drewish).
13
14Dependencies
15------------
16 * Content
17
18FileField also provides additional features when used with the following:
19
20 * ImageField (See an image preview during editing.)
21 * Token (Generate dynamic paths when saving images.)
22 * ImageCache (Create thumbnails of images on output.)
23
24If your site is any larger than a personal blog, you should definitely install
25the following modules to increase the security and stability of your uploads.
26
27 * Transliteration (Convert unsafe characters to file system safe names.)
28 * MimeDetect (Check the content of files to ensure they match the extension.)
29
30Install
31-------
32
331) Copy the filefield folder to the modules folder in your installation.
34
352) Enable the module using Administer -> Site building -> Modules
36   (/admin/build/modules).
37
383) Create a new file field in through CCK's interface. Visit Administer ->
39   Content management -> Content types (admin/content/types), then click
40   Manage fields on the type you want to add an file upload field. Select
41   "File" as the field type and "File" as the widget type to create a new
42   field.
43
444) Upload files on the node form for the type that you set up.
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.