[example theme] make it easier for non PHP people to understand what to change
This commit is contained in:
parent
0ef7b84d77
commit
64203331bc
|
@ -20,54 +20,32 @@
|
||||||
|
|
||||||
class OC_Theme {
|
class OC_Theme {
|
||||||
|
|
||||||
private $themeEntity;
|
|
||||||
private $themeName;
|
|
||||||
private $themeTitle;
|
|
||||||
private $themeBaseUrl;
|
|
||||||
private $themeDocBaseUrl;
|
|
||||||
private $themeSyncClientUrl;
|
|
||||||
private $themeSlogan;
|
|
||||||
private $themeMailHeaderColor;
|
|
||||||
|
|
||||||
/* put your custom text in these variables */
|
|
||||||
function __construct() {
|
|
||||||
$this->themeEntity = 'Custom Cloud Co.';
|
|
||||||
$this->themeName = 'Custom Cloud';
|
|
||||||
$this->themeTitle = 'Custom Cloud';
|
|
||||||
$this->themeBaseUrl = 'https://owncloud.org';
|
|
||||||
$this->themeDocBaseUrl = 'https://doc.owncloud.org';
|
|
||||||
$this->themeSyncClientUrl = 'https://owncloud.org/install';
|
|
||||||
$this->themeSlogan = 'Your custom cloud, personalized for you!';
|
|
||||||
$this->themeMailHeaderColor = '#745bca';
|
|
||||||
}
|
|
||||||
/* nothing after this needs to be adjusted */
|
|
||||||
|
|
||||||
public function getBaseUrl() {
|
public function getBaseUrl() {
|
||||||
return $this->themeBaseUrl;
|
return 'https://owncloud.org';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getSyncClientUrl() {
|
public function getSyncClientUrl() {
|
||||||
return $this->themeSyncClientUrl;
|
return 'https://owncloud.org/install';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getDocBaseUrl() {
|
public function getDocBaseUrl() {
|
||||||
return $this->themeDocBaseUrl;
|
return 'https://doc.owncloud.org';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTitle() {
|
public function getTitle() {
|
||||||
return $this->themeTitle;
|
return 'Custom Cloud';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName() {
|
public function getName() {
|
||||||
return $this->themeName;
|
return 'Custom Cloud';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getEntity() {
|
public function getEntity() {
|
||||||
return $this->themeEntity;
|
return 'Custom Cloud Co.';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getSlogan() {
|
public function getSlogan() {
|
||||||
return $this->themeSlogan;
|
return 'Your custom cloud, personalized for you!';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getShortFooter() {
|
public function getShortFooter() {
|
||||||
|
@ -89,7 +67,7 @@ class OC_Theme {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getMailHeaderColor() {
|
public function getMailHeaderColor() {
|
||||||
return $this->themeMailHeaderColor;
|
return '#745bca';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue