diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-08 15:31:33 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-08 15:31:33 -0500 |
commit | ca00b8cf532bd93419e3f4bc46f9dde5caa90eec (patch) | |
tree | c2c2ca9b795daed99b48d5c44841feb649dd1a56 /app/Template/export/header.php | |
parent | b3a450bace8461fb7989d5406b9d9ec644d7df4a (diff) |
Display project exports in modal box
Diffstat (limited to 'app/Template/export/header.php')
-rw-r--r-- | app/Template/export/header.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/Template/export/header.php b/app/Template/export/header.php new file mode 100644 index 00000000..35591352 --- /dev/null +++ b/app/Template/export/header.php @@ -0,0 +1,17 @@ +<div class="page-header"> + <h2><?= $this->text->e($project['name']) ?> > <?= $title ?></h2> + <ul> + <li <?= $this->app->checkMenuSelection('ExportController', 'tasks') ?>> + <?= $this->modal->replaceLink(t('Tasks'), 'ExportController', 'tasks', array('project_id' => $project['id'])) ?> + </li> + <li <?= $this->app->checkMenuSelection('ExportController', 'subtasks') ?>> + <?= $this->modal->replaceLink(t('Subtasks'), 'ExportController', 'subtasks', array('project_id' => $project['id'])) ?> + </li> + <li <?= $this->app->checkMenuSelection('ExportController', 'transitions') ?>> + <?= $this->modal->replaceLink(t('Task transitions'), 'ExportController', 'transitions', array('project_id' => $project['id'])) ?> + </li> + <li <?= $this->app->checkMenuSelection('ExportController', 'summary') ?>> + <?= $this->modal->replaceLink(t('Daily project summary'), 'ExportController', 'summary', array('project_id' => $project['id'])) ?> + </li> + </ul> +</div> |