getEntity();
$footer = '© ' . date('Y');
// Add link if entity name is not empty
if ($entity !== '') {
$footer .= ' ' . $entity . '' . '
';
}
$footer .= $this->getSlogan();
return $footer;
}
/**
* Returns long version of the footer
* @return string long footer
*/
public function getLongFooter(): string {
$footer = '© ' . date('Y') . ' ' . $this->getEntity() . '' .
'
' . $this->getSlogan();
return $footer;
}
/**
* Generate a documentation link for a given key
* @return string documentation link
*/
public function buildDocLinkToKey($key): string {
return $this->getDocBaseUrl() . '/server/15/go.php?to=' . $key;
}
/**
* Returns mail header color
* @return string
*/
public function getColorPrimary(): string {
return '#745bca';
}
/**
* Returns background color to be used
* @return string
*/
public function getColorBackground(): string {
return '#3d85c6';
}
/**
* Returns variables to overload defaults from core/css/variables.scss
* @return array
*/
public function getScssVariables(): array {
return [
'color-primary' => '#745bca'
];
}
}