summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-19 12:36:23 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-19 12:36:23 +0100
commit177387b13c6a9f850b1e8b78493c7f74d5dab9e1 (patch)
tree89f94f37ee7a8454e68ed514e3659e8df1785559
parent54cbfcbaa1a090cbb09e300a6db4468fb1ea92dc (diff)
downloadnextcloud-server-177387b13c6a9f850b1e8b78493c7f74d5dab9e1.tar.gz
nextcloud-server-177387b13c6a9f850b1e8b78493c7f74d5dab9e1.zip
Install cron job on install and update
-rw-r--r--apps/dav/appinfo/app.php6
-rw-r--r--apps/dav/appinfo/install.php25
-rw-r--r--apps/dav/appinfo/update.php25
3 files changed, 52 insertions, 4 deletions
diff --git a/apps/dav/appinfo/app.php b/apps/dav/appinfo/app.php
index 6f694663934..b5bf9bd0e73 100644
--- a/apps/dav/appinfo/app.php
+++ b/apps/dav/appinfo/app.php
@@ -19,12 +19,10 @@
*
*/
-use OCA\DAV\CardDAV\CardDavBackend;
-use OCA\DAV\CardDAV\SyncService;
+use OCA\Dav\AppInfo\Application;
-$app = new \OCA\Dav\AppInfo\Application();
+$app = new Application();
$app->registerHooks();
-$app->setupCron();
\OC::$server->registerService('CardDAVSyncService', function() use ($app) {
diff --git a/apps/dav/appinfo/install.php b/apps/dav/appinfo/install.php
new file mode 100644
index 00000000000..aaa36052cd2
--- /dev/null
+++ b/apps/dav/appinfo/install.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
+ *
+ * @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/>
+ *
+ */
+
+use OCA\Dav\AppInfo\Application;
+
+$app = new Application();
+$app->setupCron();
diff --git a/apps/dav/appinfo/update.php b/apps/dav/appinfo/update.php
new file mode 100644
index 00000000000..aaa36052cd2
--- /dev/null
+++ b/apps/dav/appinfo/update.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
+ *
+ * @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/>
+ *
+ */
+
+use OCA\Dav\AppInfo\Application;
+
+$app = new Application();
+$app->setupCron();