From 004fcbbcc7609ca83807f2e38967ef54f469bf72 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 23 Jul 2016 21:24:54 +0200 Subject: Move to new directory structure --- cron/updater.php | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 cron/updater.php (limited to 'cron') diff --git a/cron/updater.php b/cron/updater.php deleted file mode 100644 index 46790d793..000000000 --- a/cron/updater.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @author Bernhard Posselt - * @copyright Alessandro Cosentino 2012 - * @copyright Bernhard Posselt 2012, 2014 - */ - -namespace OCA\News\Cron; - -use OCA\News\AppInfo\Application; -use OCA\News\Config\Config; -use OCA\News\Service\StatusService; -use OCA\News\Utility\Updater as UpdaterService; - -class Updater { - - public static function run() { - $app = new Application(); - - $container = $app->getContainer(); - - // make it possible to turn off cron updates if you use an external - // script to execute updates in parallel - $useCronUpdates = $container->query(Config::class)->getUseCronUpdates(); - $isProperlyConfigured = $container->query(StatusService::class)->isProperlyConfigured(); - if ($useCronUpdates && $isProperlyConfigured) { - $container->query(UpdaterService::class)->update(); - $container->query(UpdaterService::class)->beforeUpdate(); - $container->query(UpdaterService::class)->afterUpdate(); - } - } - -} -- cgit v1.2.3