blob: 44c1a7e150b2eb9febf0f3ced67314a6d6ae1b50 (
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
97
98
|
<?php
/**
* Default strings and values which differ between the enterprise and the
* community edition. Use the get methods to always get the right strings.
*/
if (file_exists(OC::$SERVERROOT . '/themes/' . OC_Util::getTheme() . '/defaults.php')) {
require_once 'themes/' . OC_Util::getTheme() . '/defaults.php';
}
class OC_Defaults {
private static $defaultEntity = "ownCloud";
private static $defaultName = "ownCloud";
private static $defaultBaseUrl = "http://owncloud.org";
private static $defaultSyncClientUrl = " http://owncloud.org/sync-clients/";
private static $defaultDocBaseUrl = "http://doc.owncloud.org";
private static $defaultSlogan = "web services under your control";
private function themeExist($method) {
if (OC_Util::getTheme() !== '' && method_exists('OC_Theme', $method)) {
return true;
}
return false;
}
public static function getBaseUrl() {
if (self::themeExist('getBaseUrl')) {
return OC_Theme::getBaseUrl();
} else {
return self::$defaultBaseUrl;
}
}
public static function getSyncClientUrl() {
if (self::themeExist('getSyncClientUrl')) {
return OC_Theme::getSyncClientUrl();
} else {
return self::$defaultSyncClientUrl;
}
}
public static function getDocBaseUrl() {
if (self::themeExist('getDocBaseUrl')) {
return OC_Theme::getDocBaseUrl();
} else {
return self::$defaultDocBaseUrl;
}
}
public static function getName() {
if (self::themeExist('getName')) {
return OC_Theme::getName();
} else {
return self::$defaultName;
}
}
public static function getEntity() {
if (self::themeExist('getEntity')) {
return OC_Theme::getEntity();
} else {
return self::$defaultEntity;
}
}
public static function getSlogan() {
$l = OC_L10N::get('core');
if (self::themeExist('getSlogan')) {
return OC_Theme::getSlogan();
} else {
return $l->t(self::$defaultSlogan);
}
}
public static function getShortFooter() {
if (self::themeExist('getShortFooter')) {
$footer = OC_Theme::getShortFooter();
} else {
$footer = "<a href=\"". self::getBaseUrl() . "\" target=\"_blank\">" .self::getEntity() . "</a>".
' – ' . self::getSlogan();
}
return $footer;
}
public static function getLongFooter() {
if (self::themeExist('getLongFooter')) {
$footer = OC_Theme::getLongFooter();
} else {
$footer = self::getShortFooter();
}
return $footer;
}
}
|