diff --git a/lib/defaults.php b/lib/defaults.php index a43269dd67..ebe1898632 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;