summaryrefslogtreecommitdiff
path: root/app/Template/dashboard
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-03-11 19:36:48 -0500
committerFrederic Guillot <fred@kanboard.net>2017-03-11 19:36:48 -0500
commit8f6b3295e89af4c877f5522b9941fafd51b795c7 (patch)
treed1f29f798ef1d0d10e2b21afb082398957d290c5 /app/Template/dashboard
parentcfd3000d833d3a99df0b4248e3b6160e9be4f22a (diff)
Move dashboard menu for calendar and activity stream
Diffstat (limited to 'app/Template/dashboard')
-rw-r--r--app/Template/dashboard/activity.php4
-rw-r--r--app/Template/dashboard/calendar.php4
-rw-r--r--app/Template/dashboard/layout.php7
-rw-r--r--app/Template/dashboard/sidebar.php6
4 files changed, 5 insertions, 16 deletions
diff --git a/app/Template/dashboard/activity.php b/app/Template/dashboard/activity.php
deleted file mode 100644
index 71a67fb2..00000000
--- a/app/Template/dashboard/activity.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<div class="page-header">
- <h2><?= t('My activity stream') ?></h2>
-</div>
-<?= $this->render('event/events', array('events' => $events)) ?> \ No newline at end of file
diff --git a/app/Template/dashboard/calendar.php b/app/Template/dashboard/calendar.php
deleted file mode 100644
index 0b768b31..00000000
--- a/app/Template/dashboard/calendar.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?= $this->calendar->render(
- $this->url->href('CalendarController', 'user', array('user_id' => $user['id'])),
- $this->url->href('CalendarController', 'save')
-) ?>
diff --git a/app/Template/dashboard/layout.php b/app/Template/dashboard/layout.php
index 15ab8a1a..dbd16886 100644
--- a/app/Template/dashboard/layout.php
+++ b/app/Template/dashboard/layout.php
@@ -12,10 +12,13 @@
</li>
<?php endif ?>
<li>
- <?= $this->url->icon('search', t('Search'), 'SearchController', 'index') ?>
+ <?= $this->url->icon('folder', t('Project management'), 'ProjectListController', 'show') ?>
</li>
<li>
- <?= $this->url->icon('folder', t('Project management'), 'ProjectListController', 'show') ?>
+ <?= $this->modal->medium('dashboard', t('My activity stream'), 'ActivityController', 'user') ?>
+ </li>
+ <li>
+ <?= $this->modal->medium('calendar', t('My calendar'), 'CalendarController', 'user') ?>
</li>
</ul>
</div>
diff --git a/app/Template/dashboard/sidebar.php b/app/Template/dashboard/sidebar.php
index e4c1038a..7507b00d 100644
--- a/app/Template/dashboard/sidebar.php
+++ b/app/Template/dashboard/sidebar.php
@@ -12,12 +12,6 @@
<li <?= $this->app->checkMenuSelection('DashboardController', 'subtasks') ?>>
<?= $this->url->link(t('My subtasks'), 'DashboardController', 'subtasks', array('user_id' => $user['id'])) ?>
</li>
- <li <?= $this->app->checkMenuSelection('DashboardController', 'calendar') ?>>
- <?= $this->url->link(t('My calendar'), 'DashboardController', 'calendar', array('user_id' => $user['id'])) ?>
- </li>
- <li <?= $this->app->checkMenuSelection('DashboardController', 'activity') ?>>
- <?= $this->url->link(t('My activity stream'), 'DashboardController', 'activity', array('user_id' => $user['id'])) ?>
- </li>
<?= $this->hook->render('template:dashboard:sidebar', array('user' => $user)) ?>
</ul>
</div>