summaryrefslogtreecommitdiff
path: root/app/Template/config/sidebar.php
blob: dd51bc7498e3c952eb0846b4fc8e72183358e3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<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>