| 1 |
$Id: README.txt,v 1.4 2005/11/04 02:37:08 syscrusher Exp $
|
| 2 |
|
| 3 |
cronplus.module CronPlus adds more "cron" hooks to Drupal beyond the
|
| 4 |
basic one, with each of the new hooks being called
|
| 5 |
at or near specified time intervals (hourly, daily,
|
| 6 |
weekly, monthly, and yearly).
|
| 7 |
|
| 8 |
Homepage: http://drupal.org/node/24208
|
| 9 |
|
| 10 |
Author: Scott Courtney (drupal.org name "syscrusher")
|
| 11 |
email: syscrusher (at) 4th (dot) com
|
| 12 |
|
| 13 |
License: GNU General Public License (GPL) http://gnu.org/
|
| 14 |
|
| 15 |
Status: BETA -- Believed stable, but use with caution.
|
| 16 |
|
| 17 |
Prerequisites: You must have cron.php being invoked at intervals on
|
| 18 |
your system. CronPlus is believed to be compatible
|
| 19 |
with Poor Man's Cron (a contributed module), but this
|
| 20 |
has not been specifically tested.
|
| 21 |
|
| 22 |
This version works with Drupal 5.x. Older versions
|
| 23 |
are available for Drupal 4.5, 4.6, and 4.7.
|
| 24 |
|
| 25 |
Features:
|
| 26 |
|
| 27 |
* Adds hourly, daily, weekly, monthly, and yearly cron hooks to any Drupal
|
| 28 |
module.
|
| 29 |
|
| 30 |
* Implementation of the hooks is totally optional; existing modules that
|
| 31 |
do not use CronPlus will simply be ignored by this module.
|
| 32 |
|
| 33 |
* Administrative preferences allow advisory settings for the preferred
|
| 34 |
time of day and day of week on which the longer-period jobs should
|
| 35 |
be invoked.
|
| 36 |
|
| 37 |
* Modules receive parameters indicating how long it has been since the
|
| 38 |
last time each given hook was invoked, and may use these parameters as
|
| 39 |
they wish.
|
| 40 |
|
| 41 |
* The administrative settings menu also offers a "status report" page that
|
| 42 |
shows what modules are using each of the API hooks, and when each hook
|
| 43 |
was last invoked.
|
| 44 |
|
| 45 |
Related Files:
|
| 46 |
|
| 47 |
* INSTALL.txt Installation instructions -- PLEASE READ!
|
| 48 |
|
| 49 |
* API.txt Information for developers implementing CronPlus hooks.
|
| 50 |
|
| 51 |
* CHANGELOG.txt Change log for the module.
|