diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-06-27 10:48:23 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-27 10:48:28 +0200 |
commit | f7f86d61c4f798374d0f0733ac38f01cecc35ad8 (patch) | |
tree | 0b21594388f96073fd4be996a37490a5a8524aa1 | |
parent | 51646bb3f66bd5ffd97759d7b894bd142b2a9525 (diff) | |
download | nextcloud-server-f7f86d61c4f798374d0f0733ac38f01cecc35ad8.tar.gz nextcloud-server-f7f86d61c4f798374d0f0733ac38f01cecc35ad8.zip |
Add comment to "getMailHeaderColor"
-rw-r--r-- | apps/theming/lib/template.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/theming/lib/template.php b/apps/theming/lib/template.php index 741fc1daa6a..01e3ca8b7c0 100644 --- a/apps/theming/lib/template.php +++ b/apps/theming/lib/template.php @@ -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); } |