Skip to content

Commit

Permalink
Merge pull request #194 from JSoko/patch-1
Browse files Browse the repository at this point in the history
default.php for nextcloud themes example
  • Loading branch information
MariusBluem authored Jun 22, 2016
2 parents 638a713 + 235e2fc commit ce923d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions themes/example/defaults.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* @author Björn Schießle <schiessle@owncloud.com>
* @author Jan-Christoph Borchardt, http://jancborchardt.net
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
Expand All @@ -25,15 +25,15 @@ class OC_Theme {
* @return string URL
*/
public function getBaseUrl() {
return 'https://owncloud.org';
return 'https://nextcloud.com';
}

/**
* Returns the URL where the sync clients are listed
* @return string URL
*/
public function getSyncClientUrl() {
return 'https://owncloud.org/install';
return 'https://nextcloud.com/install';
}

/**
Expand All @@ -57,15 +57,15 @@ public function getiTunesAppId() {
* @return string URL
*/
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';
}

/**
* Returns the documentation URL
* @return string URL
*/
public function getDocBaseUrl() {
return 'https://doc.owncloud.org';
return 'https://docs.nextcloud.org';
}

/**
Expand Down Expand Up @@ -139,7 +139,7 @@ public function getLongFooter() {
}

public function buildDocLinkToKey($key) {
return $this->getDocBaseUrl() . '/server/8.0/go.php?to=' . $key;
return $this->getDocBaseUrl() . '/server/9/go.php?to=' . $key;
}


Expand Down

0 comments on commit ce923d7

Please sign in to comment.