Add comment to "getMailHeaderColor"

This commit is contained in:
Lukas Reschke 2016-06-27 10:48:23 +02:00
parent 51646bb3f6
commit f7f86d61c4
1 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,11 @@ class Template extends \OC_Defaults {
return $this->config->getAppValue('theming', 'slogan', $this->slogan);
}
/**
* Color that is used for the header as well as for mail headers
*
* @return string
*/
public function getMailHeaderColor() {
return $this->config->getAppValue('theming', 'color', $this->color);
}