2007-07-19 10:40:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2008-12-01 01:15:27 +00: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-02 23:24:10 +00:00
|
|
|
* @todo Improve documentation
|
2012-04-12 18:02:46 +12:00
|
|
|
* @package framework
|
2008-02-25 02:10:37 +00:00
|
|
|
* @subpackage cron
|
2007-07-19 10:40:28 +00:00
|
|
|
*/
|
|
|
|
class DailyTask extends ScheduledTask {
|
2010-05-25 02:58:59 +00:00
|
|
|
|
2012-03-24 16:04:52 +13:00
|
|
|
}
|