summaryrefslogtreecommitdiff
path: root/app/Template/project_header/dropdown.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-13 22:36:41 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-13 22:36:41 -0400
commitae70f47cc12587414c03b11a377cba97e1f10361 (patch)
treee42aaa89320597c1b15d56cf02b81fb80f8809c2 /app/Template/project_header/dropdown.php
parent64e10a645accf8c80c0e7b6686de2ed38621805a (diff)
Added dropdown for projects
Diffstat (limited to 'app/Template/project_header/dropdown.php')
-rw-r--r--app/Template/project_header/dropdown.php49
1 files changed, 47 insertions, 2 deletions
diff --git a/app/Template/project_header/dropdown.php b/app/Template/project_header/dropdown.php
index 759a5135..fdfcaf26 100644
--- a/app/Template/project_header/dropdown.php
+++ b/app/Template/project_header/dropdown.php
@@ -29,6 +29,51 @@
</span>
</li>
<?php endif ?>
- <?= $this->render('project/dropdown', array('project' => $project)) ?>
+
+ <li>
+ <i class="fa fa-dashboard fa-fw"></i>&nbsp;
+ <?= $this->url->link(t('Activity'), 'activity', 'project', array('project_id' => $project['id'])) ?>
+ </li>
+
+ <?php if ($this->user->hasProjectAccess('customfilter', 'index', $project['id'])): ?>
+ <li>
+ <i class="fa fa-filter fa-fw"></i>&nbsp;
+ <?= $this->url->link(t('Custom filters'), 'customfilter', 'index', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endif ?>
+
+ <?php if ($project['is_public']): ?>
+ <li>
+ <i class="fa fa-share-alt fa-fw"></i>&nbsp;<?= $this->url->link(t('Public link'), 'board', 'readonly', array('token' => $project['token']), false, '', '', true) ?>
+ </li>
+ <?php endif ?>
+
+ <?= $this->hook->render('template:project:dropdown', array('project' => $project)) ?>
+
+ <?php if ($this->user->hasProjectAccess('analytic', 'tasks', $project['id'])): ?>
+ <li>
+ <i class="fa fa-line-chart fa-fw"></i>&nbsp;
+ <?= $this->url->link(t('Analytics'), 'analytic', 'tasks', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endif ?>
+
+ <?php if ($this->user->hasProjectAccess('export', 'tasks', $project['id'])): ?>
+ <li>
+ <i class="fa fa-download fa-fw"></i>&nbsp;
+ <?= $this->url->link(t('Exports'), 'export', 'tasks', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endif ?>
+
+ <?php if ($this->user->hasProjectAccess('ProjectEdit', 'edit', $project['id'])): ?>
+ <li>
+ <i class="fa fa-cog fa-fw"></i>&nbsp;
+ <?= $this->url->link(t('Settings'), 'project', 'show', array('project_id' => $project['id'])) ?>
+ </li>
+ <?php endif ?>
+
+ <li>
+ <i class="fa fa-folder fa-fw" aria-hidden="true"></i>
+ <?= $this->url->link(t('Manage projects'), 'project', 'index') ?>
+ </li>
</ul>
-</div> \ No newline at end of file
+</div>