default.php for nextcloud

changing it to nextcloud
This commit is contained in:
Joachim Sokolowski 2016-06-21 17:27:02 +02:00 committed by GitHub
parent 638a713008
commit 235e2fc68e
1 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
/** /**
* @author Björn Schießle <schiessle@owncloud.com> * @author Björn Schießle <schiessle@owncloud.com>
* @author Jan-Christoph Borchardt, http://jancborchardt.net * @author Jan-Christoph Borchardt, http://jancborchardt.net
* @copyright Copyright (c) 2015, ownCloud, Inc. * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0 * @license AGPL-3.0
* *
* This code is free software: you can redistribute it and/or modify * This code is free software: you can redistribute it and/or modify
@ -25,7 +25,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getBaseUrl() { public function getBaseUrl() {
return 'https://owncloud.org'; return 'https://nextcloud.com';
} }
/** /**
@ -33,7 +33,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getSyncClientUrl() { public function getSyncClientUrl() {
return 'https://owncloud.org/install'; return 'https://nextcloud.com/install';
} }
/** /**
@ -57,7 +57,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getAndroidClientUrl() { public function getAndroidClientUrl() {
return 'https://play.google.com/store/apps/details?id=com.owncloud.android'; return 'https://play.google.com/store/apps/details?id=com.nextcloud.client';
} }
/** /**
@ -65,7 +65,7 @@ class OC_Theme {
* @return string URL * @return string URL
*/ */
public function getDocBaseUrl() { public function getDocBaseUrl() {
return 'https://doc.owncloud.org'; return 'https://docs.nextcloud.org';
} }
/** /**
@ -139,7 +139,7 @@ class OC_Theme {
} }
public function buildDocLinkToKey($key) { public function buildDocLinkToKey($key) {
return $this->getDocBaseUrl() . '/server/8.0/go.php?to=' . $key; return $this->getDocBaseUrl() . '/server/9/go.php?to=' . $key;
} }