Add page to show the list of plugins

This commit is contained in:
Frederic Guillot
2015-09-26 15:57:39 -04:00
parent 47c1bc9652
commit 9ca4b43a97
30 changed files with 194 additions and 2 deletions

View File

@@ -77,6 +77,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
*