14 lines
1.0 KiB
PHP
14 lines
1.0 KiB
PHP
<ul class="views">
|
|
<li <?= $this->app->checkMenuSelection('ProjectOverviewController') ?>>
|
|
<?= $this->url->icon('eye', t('Overview'), 'ProjectOverviewController', 'show', array('project_id' => $project['id'], 'search' => $filters['search']), false, 'view-overview', t('Keyboard shortcut: "%s"', 'v o')) ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('BoardViewController') ?>>
|
|
<?= $this->url->icon('th', t('Board'), 'BoardViewController', 'show', array('project_id' => $project['id'], 'search' => $filters['search']), false, 'view-board', t('Keyboard shortcut: "%s"', 'v b')) ?>
|
|
</li>
|
|
<li <?= $this->app->checkMenuSelection('TaskListController') ?>>
|
|
<?= $this->url->icon('list', t('List'), 'TaskListController', 'show', array('project_id' => $project['id'], 'search' => $filters['search']), false, 'view-listing', t('Keyboard shortcut: "%s"', 'v l')) ?>
|
|
</li>
|
|
|
|
<?= $this->hook->render('template:project-header:view-switcher', array('project' => $project, 'filters' => $filters)) ?>
|
|
</ul>
|