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 --- appinfo/app.json | 2 +- backgroundjob/task.php | 37 ------------------------------------- cron/updater.php | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 backgroundjob/task.php create mode 100644 cron/updater.php diff --git a/appinfo/app.json b/appinfo/app.json index 33e54d8a2..9a44435ef 100644 --- a/appinfo/app.json +++ b/appinfo/app.json @@ -28,7 +28,7 @@ "documentation": { "developer": "https://github.com/owncloud/news/wiki" }, - "jobs": ["OCA\\News\\BackgroundJob\\Task"], + "jobs": ["OCA\\News\\Cron\\Updater"], "hooks": { "OC_User::pre_deleteUser": "OCA\\News\\Hooks\\User::deleteUser" }, diff --git a/backgroundjob/task.php b/backgroundjob/task.php deleted file mode 100644 index a7ffc3e8c..000000000 --- a/backgroundjob/task.php +++ /dev/null @@ -1,37 +0,0 @@ - - * @author Bernhard Posselt - * @copyright Alessandro Cosentino 2012 - * @copyright Bernhard Posselt 2012, 2014 - */ - - -namespace OCA\News\BackgroundJob; - -use \OCA\News\AppInfo\Application; - - -class Task { - - - 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(); - } - } - - -} 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