source: sipes/modules_contrib/date/INSTALL.txt @ c43ea01

stableversion-3.0
Last change on this file since c43ea01 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100755
File size: 3.2 KB
Línea 
1==================================================================================
2Date API Installation instructions:
3==================================================================================
41) If you have an earlier version of the Date module on your system, empty the
5   date folder out completely. The files in version 2 have different names and are
6   located in different places.
7
82) Download the whole package of files from http://drupal.org/project/date.
9
103) Upload the date files to the modules directory. The package includes files
11   needed by the Date API, and optional modules to to create CCK date fields.
12
134) Go to admin/build/modules and enable the needed modules from the Date/Time group.
14
15You should end up with a structure like:
16
17   /drupal/sites/all/modules/date/date_api.info
18   /drupal/sites/all/modules/date/date_api.install
19   /drupal/sites/all/modules/date/date_api.module
20   ...
21
22   /drupal/sites/all/modules/date/date/date.info
23   /drupal/sites/all/modules/date/date/date.install
24   /drupal/sites/all/modules/date/date/date.module
25   ...
26
27   /drupal/sites/all/modules/date/date_copy/date_copy.info
28   /drupal/sites/all/modules/date/date_copy/date_copy.module
29   ...
30
31   /drupal/sites/all/modules/date/date_php4/date_php4.inc
32   /drupal/sites/all/modules/date/date_php4/date_php4_lib.inc
33   ...
34
35==================================================================================
36Older PHP versions
37==================================================================================
38If you are using PHP 4 or PHP 5.0 or 5.1, native date handling won't work right.
39Install the Date_PHP4 module to enable wrapper functions so this code will work
40in old PHP versions.
41
42==================================================================================
43Enable Date Timezone
44==================================================================================
45In most cases, you should enable the Date Timezone module any time you use the
46Date API to be able to set the site and user timezone names. It is not enabled by
47default in case another module is setting timezone names in the database.
48
49Once you have enabled it, go to admin/settings/date-time and set the default
50site timezone name. If you are using user timezones, go to your account settings
51and set up your own timezone name.
52
53==================================================================================
54Install CCK Date Fields:
55==================================================================================
56
571) The CCK date field is included in the Date files at http://drupal.org/project/date.
58
592) Go to admin/build/modules and enable the Date module. Be sure that the Date API module,
60   the Date Timezone module, and the Content module are also installed.
61
623) Go to admin/content/types to view cck content types and edit a content type.
63
644) Make sure the default timezone name has been set at admin/settings/date-time.
65
665) While viewing a content type, select the option to add a new field from the tabs at
67   the top of the page. Several options for date fields should be visible.
68
69==================================================================================
70More documentation is available at http://drupal.org/node/92460.
71==================================================================================   
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.