blob: 9043c04e7b60f27c76f1195d25f8789bc6f5c80a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?php
/**
* Default strings and values which differ between the enterprise and the
* community edition. Use the get methods to always get the right strings.
*/
class OC_Defaults {
private static $communityEntity = "ownCloud";
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!";
public static function getBaseUrl() {
if (OC_Util::getEditionString() === '') {
return self::$communityBaseUrl;
} else {
return self::$enterpriseBaseUrl;
}
}
public static function getSyncClientUrl() {
if (OC_Util::getEditionString() === '') {
return self::$communitySyncClientUrl;
} else {
return self::$enterpiseSyncClientUrl;
}
}
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;
} else {
return self::$enterpriseName;
}
}
public static function getEntity() {
if (OC_Util::getEditionString() === '') {
return self::$communityEntity;
} else {
return self::$enterpriseEntity;
}
}
public static function getSlogan() {
$l = OC_L10N::get('core');
if (OC_Util::getEditionString() === '') {
return $l->t(self::$communitySlogan);
} else {
return self::$enterpriseSlogan;
}
}
public static function getShortFooter() {
if (OC_Util::getEditionString() === '') {
$footer = "<a href=\"". self::getBaseUrl() . "\" target=\"_blank\">" .self::getEntity() . "</a>".
' – ' . self::getSlogan();
} else {
$footer = "© 2013 <a href=\"".self::getBaseUrl()."\" target=\"_blank\">".self::getEntity()."</a>".
" – " . self::getSlogan();
}
return $footer;
}
public static function getLongFooter() {
if (OC_Util::getEditionString() === '') {
$footer = self::getShortFooter();
} else {
$footer = "© 2013 <a href=\"".self::getBaseUrl()."\" target=\"_blank\">".self::getEntity()."</a>".
"<br/>" . self::getSlogan();
}
return $footer;
}
}
|