| 1 |
|
******************************************************************** |
| 2 |
|
D R U P A L M O D U L E |
| 3 |
|
******************************************************************** |
| 4 |
|
Name: schedule component |
| 5 |
|
Author: Robert Castelo <services at cortextcommunications dot com> |
| 6 |
|
Drupal: 4.7.x |
| 7 |
|
******************************************************************** |
| 8 |
|
DESCRIPTION: |
| 9 |
|
|
| 10 |
|
Component module which provides service to other modules, don't install |
| 11 |
|
this unless another module requires it. |
| 12 |
|
|
| 13 |
|
Handles data, logic, and UI of schedule(s). |
| 14 |
|
|
| 15 |
|
The schedule can be used for most purposes, and includes following |
| 16 |
|
information: |
| 17 |
|
|
| 18 |
|
Type: Type of service being scheduled - ties schedule to the module |
| 19 |
|
using schedule.module. |
| 20 |
|
|
| 21 |
|
Publication ID: The ID of the publication/event being scheduled |
| 22 |
|
|
| 23 |
|
First: Time of first publication/event |
| 24 |
|
|
| 25 |
|
Start: If content is to be included from before first publication/event, |
| 26 |
|
when should content start being included. |
| 27 |
|
|
| 28 |
|
Next: Time of next publication/event. |
| 29 |
|
|
| 30 |
|
Last: Time of last publication/event. |
| 31 |
|
|
| 32 |
|
Every: Schedule interval - month/day/hour/manual |
| 33 |
|
|
| 34 |
|
Frequency: Unit value of interval, e.g. 1 (day) |
| 35 |
|
|
| 36 |
|
Detailed API documentation for this component on the way, but for the |
| 37 |
|
moment, see enewsletter.module for example of how to use this. |
| 38 |
|
|
| 39 |
|
|
| 40 |
|
******************************************************************** |
| 41 |
|
INSTALLATION: |
| 42 |
|
|
| 43 |
|
Note: It is assumed that you have Drupal up and running. Be sure to |
| 44 |
|
check the Drupal web site if you need assistance. If you run into |
| 45 |
|
problems, you should always read the INSTALL.txt that comes with the |
| 46 |
|
Drupal package and read the online documentation. |
| 47 |
|
|
| 48 |
|
1. Place the entire schedule directory into your Drupal modules/ |
| 49 |
|
directory. |
| 50 |
|
|
| 51 |
|
|
| 52 |
|
2. Enable the schedule module by navigating to: |
| 53 |
|
|
| 54 |
|
administer > modules |
| 55 |
|
|
| 56 |
|
Click the 'Save configuration' button at the bottom to commit your |
| 57 |
|
changes. |
| 58 |
|
|
| 59 |
|
|
| 60 |
|
******************************************************************** |
| 61 |
|
TO DO |
| 62 |
|
|
| 63 |
|
Document API |
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|