From adb9dfeb350bdb92e998fefc2827ffe8b58256a2 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 15 May 2014 03:43:27 +0200 Subject: rename backgroundjob/task.php to cron/updater.php --- cron/updater.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 cron/updater.php (limited to 'cron') diff --git a/cron/updater.php b/cron/updater.php new file mode 100644 index 000000000..ac314760c --- /dev/null +++ b/cron/updater.php @@ -0,0 +1,37 @@ + + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ + + +namespace OCA\News\Cron; + +use \OCA\News\AppInfo\Application; + + +class Updater { + + + static public 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 paralell + if ($container->query('Config')->getUseCronUpdates()) { + $container->query('Updater')->beforeUpdate(); + $container->query('Updater')->update(); + $container->query('Updater')->afterUpdate(); + } + } + + +} -- cgit v1.2.3