diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-07-11 19:36:26 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-07-11 19:36:26 +0200 |
commit | 0fd770765f86d0176ea288314f547ee0f3c33a0a (patch) | |
tree | 8fe62d83daa643cbeef7790f7e1c26346de17f98 /apps/theming/lib/template.php | |
parent | d15fd5cb96043f908f8fdb9e111f1c8686a0434b (diff) | |
download | nextcloud-server-0fd770765f86d0176ea288314f547ee0f3c33a0a.tar.gz nextcloud-server-0fd770765f86d0176ea288314f547ee0f3c33a0a.zip |
Implement "getTitle"
Fixes https://github.com/nextcloud/server/issues/341
Diffstat (limited to 'apps/theming/lib/template.php')
-rw-r--r-- | apps/theming/lib/template.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/theming/lib/template.php b/apps/theming/lib/template.php index 01e3ca8b7c0..a09a854ca69 100644 --- a/apps/theming/lib/template.php +++ b/apps/theming/lib/template.php @@ -77,6 +77,10 @@ class Template extends \OC_Defaults { return $this->config->getAppValue('theming', 'name', $this->name); } + public function getTitle() { + return $this->config->getAppValue('theming', 'name', $this->name); + } + public function getEntity() { return $this->config->getAppValue('theming', 'name', $this->name); } |