Better handling of empty slogan
This commit is contained in:
parent
c04e7b13c3
commit
e8d6621a24
|
@ -77,6 +77,10 @@ class Template extends \OC_Defaults {
|
|||
return $this->config->getAppValue('theming', 'name', $this->name);
|
||||
}
|
||||
|
||||
public function getHTMLName() {
|
||||
return $this->config->getAppValue('theming', 'name', $this->name);
|
||||
}
|
||||
|
||||
public function getTitle() {
|
||||
return $this->config->getAppValue('theming', 'name', $this->name);
|
||||
}
|
||||
|
@ -93,6 +97,15 @@ class Template extends \OC_Defaults {
|
|||
return $this->config->getAppValue('theming', 'slogan', $this->slogan);
|
||||
}
|
||||
|
||||
public function getShortFooter() {
|
||||
$slogan = $this->getSlogan();
|
||||
$footer = '<a href="'. $this->getBaseUrl() . '" target="_blank"' .
|
||||
' rel="noreferrer">' .$this->getEntity() . '</a>'.
|
||||
($slogan !== '' ? ' – ' . $slogan : '');
|
||||
|
||||
return $footer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Color that is used for the header as well as for mail headers
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue