diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-26 15:57:39 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-26 15:57:39 -0400 |
commit | 9ca4b43a97ae92fad57b00ac0217d5b7078272fb (patch) | |
tree | cd16f66b175dad4be54f24533b1671015dd34699 /app/Controller/Config.php | |
parent | 47c1bc965254dc539cd8996730fcc00546a32143 (diff) |
Add page to show the list of plugins
Diffstat (limited to 'app/Controller/Config.php')
-rw-r--r-- | app/Controller/Config.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Controller/Config.php b/app/Controller/Config.php index 790bdcd3..1ae390c8 100644 --- a/app/Controller/Config.php +++ b/app/Controller/Config.php @@ -78,6 +78,19 @@ class Config extends Base } /** + * Display the plugin page + * + * @access public + */ + public function plugins() + { + $this->response->html($this->layout('config/plugins', array( + 'plugins' => $this->pluginLoader->plugins, + 'title' => t('Settings').' > '.t('Plugins'), + ))); + } + + /** * Display the application settings page * * @access public |