For some project we need server run some scheduled task yearly, such as upgrade high school students for GSO.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@48899 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Normann Lou 2008-01-31 03:46:21 +00:00
parent d28faae514
commit 03cabb839d

16
cli/YearlyTask.php Normal file
View File

@ -0,0 +1,16 @@
<?php
/**
* @package sapphire
* @subpackage cron
*/
/**
* Classes that must be run yearly extend this class
* @package sapphire
* @subpackage cron
*/
class YearlyTask extends ScheduledTask {
}
?>