Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
* @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