Blame view

sources/lib/defaults.php 2.78 KB
03e52840d   Kload   Init
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  <?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 $theme;
  
  	private $defaultEntity;
  	private $defaultName;
  	private $defaultBaseUrl;
  	private $defaultSyncClientUrl;
  	private $defaultDocBaseUrl;
  	private $defaultSlogan;
  	private $defaultLogoClaim;
  
  	function __construct() {
  		$l = OC_L10N::get('core');
  
  		$this->defaultEntity = "ownCloud";
  		$this->defaultName = "ownCloud";
  		$this->defaultBaseUrl = "http://owncloud.org";
  		$this->defaultSyncClientUrl = " http://owncloud.org/sync-clients/";
  		$this->defaultDocBaseUrl = "http://doc.owncloud.org";
  		$this->defaultSlogan = $l->t("web services under your control");
  		$this->defaultLogoClaim = "";
  
  		if (class_exists("OC_Theme")) {
  			$this->theme = new OC_Theme();
  		}
  	}
  
  	private function themeExist($method) {
  		if (OC_Util::getTheme() !== '' && method_exists('OC_Theme', $method)) {
  			return true;
  		}
  		return false;
  	}
  
  	public function getBaseUrl() {
  		if ($this->themeExist('getBaseUrl')) {
  			return $this->theme->getBaseUrl();
  		} else {
  			return $this->defaultBaseUrl;
  		}
  	}
  
  	public function getSyncClientUrl() {
  		if ($this->themeExist('getSyncClientUrl')) {
  			return $this->theme->getSyncClientUrl();
  		} else {
  			return $this->defaultSyncClientUrl;
  		}
  	}
  
  	public function getDocBaseUrl() {
  		if ($this->themeExist('getDocBaseUrl')) {
  			return $this->theme->getDocBaseUrl();
  		} else {
  			return $this->defaultDocBaseUrl;
  		}
  	}
  
  	public function getName() {
  		if ($this->themeExist('getName')) {
  			return $this->theme->getName();
  		} else {
  			return $this->defaultName;
  		}
  	}
  
  	public function getEntity() {
  		if ($this->themeExist('getEntity')) {
  			return $this->theme->getEntity();
  		} else {
  			return $this->defaultEntity;
  		}
  	}
  
  	public function getSlogan() {
  		if ($this->themeExist('getSlogan')) {
  			return $this->theme->getSlogan();
  		} else {
  			return $this->defaultSlogan;
  		}
  	}
  
  	public function getLogoClaim() {
  		if ($this->themeExist('getLogoClaim')) {
  			return $this->theme->getLogoClaim();
  		} else {
  			return $this->defaultLogoClaim;
  		}
  	}
  
  	public function getShortFooter() {
  		if ($this->themeExist('getShortFooter')) {
  			$footer = $this->theme->getShortFooter();
  		} else {
  			$footer = "<a href=\"". $this->getBaseUrl() . "\" target=\"_blank\">" .$this->getEntity() . "</a>".
  				' – ' . $this->getSlogan();
  		}
  
  		return $footer;
  	}
  
  	public function getLongFooter() {
  		if ($this->themeExist('getLongFooter')) {
  			$footer = $this->theme->getLongFooter();
  		} else {
  			$footer = $this->getShortFooter();
  		}
  
  		return $footer;
  	}
  
  }