2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2008-12-01 02:15:27 +01:00
|
|
|
* Classes that must be run daily extend this class.
|
|
|
|
*
|
|
|
|
* Please note: Subclasses of this task aren't extecuted automatically,
|
|
|
|
* they need to be triggered by an external automation tool like unix cron.
|
|
|
|
* See {@link ScheduledTask} for details.
|
|
|
|
*
|
2008-03-03 00:24:10 +01:00
|
|
|
* @todo Improve documentation
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-02-25 03:10:37 +01:00
|
|
|
* @subpackage cron
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class DailyTask extends ScheduledTask {
|
2010-05-25 04:58:59 +02:00
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|