mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
11 lines
452 B
PHP
11 lines
452 B
PHP
<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>
|