mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
39 lines
No EOL
1.9 KiB
PHP
39 lines
No EOL
1.9 KiB
PHP
<div class="sidebar">
|
|
<h2><?= t('Actions') ?></h2>
|
|
<ul>
|
|
<li <?= $this->app->checkMenuSelection('config', 'index') ?>>
|
|
<?= $this->url->link(t('About'), 'config', 'index') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'plugins') ?>>
|
|
<?= $this->url->link(t('Plugins'), 'config', 'plugins') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'application') ?>>
|
|
<?= $this->url->link(t('Application settings'), 'config', 'application') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'project') ?>>
|
|
<?= $this->url->link(t('Project settings'), 'config', 'project') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'board') ?>>
|
|
<?= $this->url->link(t('Board settings'), 'config', 'board') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'calendar') ?>>
|
|
<?= $this->url->link(t('Calendar settings'), 'config', 'calendar') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('link') ?>>
|
|
<?= $this->url->link(t('Link settings'), 'link', 'index') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('currency', 'index') ?>>
|
|
<?= $this->url->link(t('Currency rates'), 'currency', 'index') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'integrations') ?>>
|
|
<?= $this->url->link(t('Integrations'), 'config', 'integrations') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'webhook') ?>>
|
|
<?= $this->url->link(t('Webhooks'), 'config', 'webhook') ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('config', 'api') ?>>
|
|
<?= $this->url->link(t('API'), 'config', 'api') ?>
|
|
</li>
|
|
<?= $this->hook->render('template:config:sidebar') ?>
|
|
</ul>
|
|
</div>
|