2010-12-07 20:19:27 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Cron jobs handling abstract class
|
|
|
|
*
|
2011-01-05 18:19:58 +01:00
|
|
|
* @package Airtime
|
2010-12-07 20:19:27 +01:00
|
|
|
* @subpackage StorageServer.Cron
|
|
|
|
*/
|
|
|
|
class CronJob
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The croncall.php call this function after the objectcreation.
|
|
|
|
*/
|
|
|
|
function execute()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2011-01-05 18:19:58 +01:00
|
|
|
?>
|