diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
commit | eeac2329baab1fdae7cbf6c707ed2ffd8beb4c1b (patch) | |
tree | 511c2fe47f8fbb1ea90e59e7a7a7f5e3530aa9ed /app/Template/config/sidebar.php | |
parent | 65e9e5d1bed9f88ecfd43eb2c1e780a7c22c151f (diff) |
Helpers refactoring
Diffstat (limited to 'app/Template/config/sidebar.php')
-rw-r--r-- | app/Template/config/sidebar.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/Template/config/sidebar.php b/app/Template/config/sidebar.php index 4bae9e2e..7f946dee 100644 --- a/app/Template/config/sidebar.php +++ b/app/Template/config/sidebar.php @@ -2,34 +2,34 @@ <h2><?= t('Actions') ?></h2> <ul> <li> - <?= $this->a(t('About'), 'config', 'index') ?> + <?= $this->url->link(t('About'), 'config', 'index') ?> </li> <li> - <?= $this->a(t('Application settings'), 'config', 'application') ?> + <?= $this->url->link(t('Application settings'), 'config', 'application') ?> </li> <li> - <?= $this->a(t('Project settings'), 'config', 'project') ?> + <?= $this->url->link(t('Project settings'), 'config', 'project') ?> </li> <li> - <?= $this->a(t('Board settings'), 'config', 'board') ?> + <?= $this->url->link(t('Board settings'), 'config', 'board') ?> </li> <li> - <?= $this->a(t('Calendar settings'), 'config', 'calendar') ?> + <?= $this->url->link(t('Calendar settings'), 'config', 'calendar') ?> </li> <li> - <?= $this->a(t('Link settings'), 'link', 'index') ?> + <?= $this->url->link(t('Link settings'), 'link', 'index') ?> </li> <li> - <?= $this->a(t('Currency rates'), 'currency', 'index') ?> + <?= $this->url->link(t('Currency rates'), 'currency', 'index') ?> </li> <li> - <?= $this->a(t('Integrations'), 'config', 'integrations') ?> + <?= $this->url->link(t('Integrations'), 'config', 'integrations') ?> </li> <li> - <?= $this->a(t('Webhooks'), 'config', 'webhook') ?> + <?= $this->url->link(t('Webhooks'), 'config', 'webhook') ?> </li> <li> - <?= $this->a(t('API'), 'config', 'api') ?> + <?= $this->url->link(t('API'), 'config', 'api') ?> </li> </ul> </div>
\ No newline at end of file |