diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-26 08:47:26 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-26 08:47:26 +0200 |
commit | 6b5db081a55b9a7675e30a9c43950f412420bcd7 (patch) | |
tree | 808ccc7efc0f5c313472f16c5779323f41984dc9 /lib/private/BackgroundJob/Legacy/RegularJob.php | |
parent | 0241f7f02cc7249534a03f7d5d5e984bee0b25cb (diff) | |
download | nextcloud-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.php | 38 |
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; + } + } +} |