Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('checkSales', 5);
     $this->addJob('expireResetPasswords', 60);
     $this->service = OCSAFFILIATES_BOL_Service::getInstance();
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->service = MATCHMAKING_BOL_Service::getInstance();
     $this->send_new_matches_interval = 86400 * (int) OW::getConfig()->getValue('matchmaking', 'send_new_matches_interval');
     $this->last_matches_sent_timestamp = OW::getConfig()->getValue('matchmaking', 'last_matches_sent_timestamp');
     $this->addJob('sendNewMatches', 1);
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     if (OW::getConfig()->configExists('mailbox', 'update_to_revision_7200')) {
         $this->addJob('mailboxUpdate', 2);
     }
     $this->addJob('resetAllUsersLastData', 1);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->service = NOTIFICATIONS_BOL_Service::getInstance();
     $this->addJob('expireUnsubscribe', 60 * 60);
     $this->addJob('deleteExpired', 60 * 60);
     $this->addJob('fillSendQueue', 10);
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('albumsDeleteProcess');
     $this->addJob('contentIndexing');
     $this->addJob('cleareCache', 10);
     $this->addJob('deleteLimitedPhotos', 180);
     $this->addJob('updatePhotoTags');
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     if (OW::getConfig()->getValue('watchdog', WATCHDOG_BOL_WatchdogService::TIME_RESET_SPAM_ATTEMPT) <= time()) {
         $this->addJob('resetSpamAttempt', 0);
     }
     if (OW::getConfig()->getValue('watchdog', WATCHDOG_BOL_WatchdogService::TIME_NEXT_UPDATE) <= time()) {
         $this->addJob('updateDatabase', 0);
     }
 }
Example #7
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('deleteActionSet', 60);
     // 1 hour
     $this->addJob('deleteExpired', 7 * 3600 * 24);
     // once a week
     $this->service = NEWSFEED_BOL_Service::getInstance();
     $this->commands['changePrivacy'] = 'changePrivacy';
     $this->commands['updateFollowPermission'] = 'updateFollowPermission';
     $this->commands['update3500CronJob'] = 'update3500CronJob';
     $this->commands['deleteActions'] = 'deleteActions';
 }
Example #8
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('dbCacheProcess', 1);
     $this->addJob('mailQueueProcess', 5);
     $this->addJob('deleteExpiredOnlineUserProcess', 1);
     //$this->addJob('expireUnverifiedSalesProcess', self::BILLING_SALES_EXPIRE_JOB_RUN_INTERVAL);
     $this->addJob('deleteExpiredOnlineUserProcess', 1);
     $this->addJob('checkPluginUpdates', 60 * 24);
     $this->addJob('deleteExpiredPasswordResetCodes', 10);
     $this->addJob('resetCronFlag', 1);
     $this->addJob('rmTempAttachments', 60 * 24);
     $this->addJob('deleteExpiredCache', 60 * 24);
     $this->addJob('checkRealCron');
 }
Example #9
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('slideDeleteProcess', 30);
     $this->addJob('slideshowUninstallProcess', 1);
 }
Example #10
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('sendExpiryMail', 60 * 24);
 }
Example #11
0
 public function __construct()
 {
     parent::__construct();
 }
Example #12
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('importEvents', 5);
 }
Example #13
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('templatesDeleteProcess', 1);
 }
Example #14
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('clearInvitations', 20);
 }
Example #15
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('validateKey', 24 * 60);
 }
Example #16
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('clearExpiredUsers', 60);
 }
Example #17
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('deleteFeature', 60);
 }
Example #18
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('sendNotify', 60);
 }
Example #19
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('membershipExpireProcess', self::MEMBERSHIP_EXPIRE_JOB_RUN_INTERVAL);
 }
Example #20
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('runDataLinkServiceProcess', self::DATALINK_SERVICE_RUN_INTERVAL);
 }
Example #21
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('deleteBlockIp', 1);
 }
Example #22
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('updateGroupFeeds', 2 * 60);
 }
Example #23
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('queueProcess', 5);
 }
Example #24
0
 public function __construct()
 {
     parent::__construct();
     //$this->addJob('guestsCheckProcess', 60);
 }
Example #25
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('processScheduler', 1);
 }
Example #26
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('topicsDeleteProcess', 1);
     $this->addJob('tempTopicsDeleteProcess', 60);
 }
Example #27
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('deleteUploadFiles', 60 * 60 * 24);
     $this->addJob('mailboxUpdate', 2);
 }
Example #28
0
 public function __construct()
 {
     parent::__construct();
     $this->addJob('thumbsCacheProcess', self::THUMBS_CACHE_JOB_RUN_INTERVAL);
 }