-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefaults.php
executable file
·100 lines (93 loc) · 1.89 KB
/
defaults.php
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
<?php
/**
* OwnCloud - B2DROP Theme File
*
* PHP Version 5-7
*
* @category Owncloud
* @package Theme
* @author EUDAT <b2drop-devel@postit.csc.fi>
* @copyright 2016 EUDAT
* @license AGPL3 https://github.com/EUDAT-B2DROP/b2drop-theme/blob/master/LICENSE
* @link https://github.com/EUDAT-B2DROP/b2drop-theme.git
*/
/**
* OwnCloud - B2DROP Theme Class
*
* PHP Version 5-7
*
* @category Owncloud
* @package Theme
* @author EUDAT <b2drop-devel@postit.csc.fi>
* @copyright 2016 EUDAT
* @license AGPL3 https://github.com/EUDAT-B2DROP/b2drop-theme/blob/master/LICENSE
* @link https://github.com/EUDAT-B2DROP/b2drop-theme.git
*/
class OC_Theme
{
/**
* Create theme object
*/
function __construct()
{
$this->themeName = "b2drop";
$this->slogan = "Sync and Exchange Research Data";
$this->themeFooter = '';
$this->baseUrl = "https://b2drop.eudat.eu";
$this->iTunesAppId = "543672169";
}
/**
* Get iTunes App Id
*
* @return string iTunesAppId
*/
public function getiTunesAppId()
{
return $this->iTunesAppId;
}
/**
* Get theme title
*
* @return string themeName
*/
public function getTitle()
{
return $this->themeName;
}
/**
* Get theme footer
*
* @return string themeFooter
*/
public function getLongFooter()
{
return $this->themeFooter;
}
/**
* Get theme name
*
* @return string themeName
*/
public function getName()
{
return $this->themeName;
}
/**
* Get slogan
*
* @return string slogan
*/
public function getSlogan()
{
return $this->slogan;
}
/**
* Get bae url
*
* @return string baseurl
*/
public function getBaseUrl()
{
return $this->baseUrl;
}
}