summaryrefslogtreecommitdiffstats
path: root/lib/private/BackgroundJob/Legacy/RegularJob.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-04-26 08:47:26 +0200
committerRoeland Jago Douma <rullzer@owncloud.com>2016-04-26 08:47:26 +0200
commit6b5db081a55b9a7675e30a9c43950f412420bcd7 (patch)
tree808ccc7efc0f5c313472f16c5779323f41984dc9 /lib/private/BackgroundJob/Legacy/RegularJob.php
parent0241f7f02cc7249534a03f7d5d5e984bee0b25cb (diff)
downloadnextcloud-server-6b5db081a55b9a7675e30a9c43950f412420bcd7.tar.gz
nextcloud-server-6b5db081a55b9a7675e30a9c43950f412420bcd7.zip
Move \OC\BackgroundJob to PSR-4
Diffstat (limited to 'lib/private/BackgroundJob/Legacy/RegularJob.php')
-rw-r--r--lib/private/BackgroundJob/Legacy/RegularJob.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/private/BackgroundJob/Legacy/RegularJob.php b/lib/private/BackgroundJob/Legacy/RegularJob.php
new file mode 100644
index 00000000000..aedd6ef657a
--- /dev/null
+++ b/lib/private/BackgroundJob/Legacy/RegularJob.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * @author Morris Jobke <hey@morrisjobke.de>
+ * @author Robin Appelman <icewind@owncloud.com>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OC\BackgroundJob\Legacy;
+
+use OCP\AutoloadNotAllowedException;
+
+class RegularJob extends \OC\BackgroundJob\Job {
+ public function run($argument) {
+ try {
+ if (is_callable($argument)) {
+ call_user_func($argument);
+ }
+ } catch (AutoloadNotAllowedException $e) {
+ // job is from a disabled app, ignore
+ return null;
+ }
+ }
+}