Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-06-12 18:19:28 +0400
committerBjörn Schießle <schiessle@owncloud.com>2013-06-13 18:37:30 +0400
commit22394d585560015f1ccef685e5671fb76c9301b5 (patch)
tree10164d1054ea373d6b6e57e3c7af1c7d6cde9da9 /lib/defaults.php
parentae2615e74de3b197aeca052b1251784dd752208b (diff)
add default doc url
Diffstat (limited to 'lib/defaults.php')
-rw-r--r--lib/defaults.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/defaults.php b/lib/defaults.php
index a43269dd67e..ebe18986322 100644
--- a/lib/defaults.php
+++ b/lib/defaults.php
@@ -6,11 +6,13 @@ class OC_Defaults {
private static $communityName = "ownCloud";
private static $communityBaseUrl = "http://owncloud.org";
private static $communitySyncClientUrl = " http://owncloud.org/sync-clients/";
+ private static $communityDocBaseUrl = "http://doc.owncloud.org";
private static $communitySlogan = "web services under your control";
private static $enterpriseEntity = "ownCloud Inc.";
private static $enterpriseName = "ownCloud Enterprise Edition";
private static $enterpriseBaseUrl = "https://owncloud.com";
+ private static $enterpriseDocBaseUrl = "http://doc.owncloud.com";
private static $enterpiseSyncClientUrl = "https://owncloud.com/products/desktop-clients";
private static $enterpriseSlogan = "Your Cloud, Your Data, Your Way!";
@@ -31,6 +33,14 @@ class OC_Defaults {
}
}
+ public static function getDocBaseUrl() {
+ if (OC_Util::getEditionString() === '') {
+ return self::$communityDocBaseUrl;
+ } else {
+ return self::$enterpriseDocBaseUrl;
+ }
+ }
+
public static function getName() {
if (OC_Util::getEditionString() === '') {
return self::$communityName;