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