diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-15 18:31:47 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-15 18:31:47 -0400 |
commit | 67b836164997527b91452b19adbcb8aa3c5decf1 (patch) | |
tree | b5876d311912e97b0592c7e208639f7b52813a75 /app/Template/dashboard/layout.php | |
parent | 108e867605dbc7ece4cbcbecc89a674e9c154a9b (diff) |
Refactoring: added controlled middleware and changed response class
Diffstat (limited to 'app/Template/dashboard/layout.php')
-rw-r--r-- | app/Template/dashboard/layout.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app/Template/dashboard/layout.php b/app/Template/dashboard/layout.php new file mode 100644 index 00000000..2a32ac02 --- /dev/null +++ b/app/Template/dashboard/layout.php @@ -0,0 +1,32 @@ +<section id="main"> + <div class="page-header"> + <ul> + <?php if ($this->user->hasAccess('ProjectCreation', 'create')): ?> + <li> + <i class="fa fa-plus fa-fw"></i> + <?= $this->url->link(t('New project'), 'ProjectCreation', 'create', array(), false, 'popover') ?> + </li> + <?php endif ?> + <?php if ($this->app->config('disable_private_project', 0) == 0): ?> + <li> + <i class="fa fa-lock fa-fw"></i> + <?= $this->url->link(t('New private project'), 'ProjectCreation', 'createPrivate', array(), false, 'popover') ?> + </li> + <?php endif ?> + <li> + <i class="fa fa-search fa-fw"></i> + <?= $this->url->link(t('Search'), 'search', 'index') ?> + </li> + <li> + <i class="fa fa-folder fa-fw"></i> + <?= $this->url->link(t('Project management'), 'project', 'index') ?> + </li> + </ul> + </div> + <section class="sidebar-container" id="dashboard"> + <?= $this->render($sidebar_template, array('user' => $user)) ?> + <div class="sidebar-content"> + <?= $content_for_sublayout ?> + </div> + </section> +</section>
\ No newline at end of file |