2007-07-19 10:40:28 +00:00
|
|
|
<?php
|
2008-02-25 02:10:37 +00:00
|
|
|
/**
|
|
|
|
* Classes that must be run weekly extend this class
|
2008-12-01 01:15:27 +00:00
|
|
|
*
|
|
|
|
* 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.
|
2013-02-18 14:01:15 +01:00
|
|
|
*
|
|
|
|
* @deprecated 3.1
|
2008-12-01 01:15:27 +00:00
|
|
|
*
|
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 WeeklyTask extends ScheduledTask {
|
|
|
|
|
2012-03-24 16:04:52 +13:00
|
|
|
}
|