Added plugin controller (WIP)

This commit is contained in:
Frederic Guillot
2016-05-18 22:07:49 -04:00
parent bfd59d9e54
commit 49f43090b2
12 changed files with 116 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
<div class="sidebar">
<h2><?= t('Actions') ?></h2>
<ul>
<li <?= $this->app->checkMenuSelection('PluginController', 'show') ?>>
<?= $this->url->link(t('Installed Plugins'), 'PluginController', 'show') ?>
</li>
<li <?= $this->app->checkMenuSelection('PluginController', 'directory') ?>>
<?= $this->url->link(t('Plugin Directory'), 'PluginController', 'directory') ?>
</li>
</ul>
</div>