diff options
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 |