diff options
Diffstat (limited to 'app/Templates')
114 files changed, 0 insertions, 2945 deletions
diff --git a/app/Templates/action_event.php b/app/Templates/action_event.php deleted file mode 100644 index eee41780..00000000 --- a/app/Templates/action_event.php +++ /dev/null @@ -1,22 +0,0 @@ -<div class="page-header"> - <h2><?= t('Automatic actions for the project "%s"', $project['name']) ?></h2> -</div> - -<h3><?= t('Choose an event') ?></h3> -<form method="post" action="?controller=action&action=params&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('project_id', $values) ?> - <?= Helper\form_hidden('action_name', $values) ?> - - <?= Helper\form_label(t('Event'), 'event_name') ?> - <?= Helper\form_select('event_name', $events, $values) ?><br/> - - <div class="form-help"> - <?= t('When the selected event occurs execute the corresponding action.') ?> - </div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=action&action=index&project_id=<?= $project['id'] ?>"><?= t('cancel') ?></a> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/action_index.php b/app/Templates/action_index.php deleted file mode 100644 index 30874591..00000000 --- a/app/Templates/action_index.php +++ /dev/null @@ -1,65 +0,0 @@ -<div class="page-header"> - <h2><?= t('Automatic actions for the project "%s"', $project['name']) ?></h2> -</div> - -<?php if (! empty($actions)): ?> - -<h3><?= t('Defined actions') ?></h3> -<table> - <tr> - <th><?= t('Event name') ?></th> - <th><?= t('Action name') ?></th> - <th><?= t('Action parameters') ?></th> - <th><?= t('Action') ?></th> - </tr> - - <?php foreach ($actions as $action): ?> - <tr> - <td><?= Helper\in_list($action['event_name'], $available_events) ?></td> - <td><?= Helper\in_list($action['action_name'], $available_actions) ?></td> - <td> - <ul> - <?php foreach ($action['params'] as $param): ?> - <li> - <?= Helper\in_list($param['name'], $available_params) ?> = - <strong> - <?php if (Helper\contains($param['name'], 'column_id')): ?> - <?= Helper\in_list($param['value'], $columns_list) ?> - <?php elseif (Helper\contains($param['name'], 'user_id')): ?> - <?= Helper\in_list($param['value'], $users_list) ?> - <?php elseif (Helper\contains($param['name'], 'project_id')): ?> - <?= Helper\in_list($param['value'], $projects_list) ?> - <?php elseif (Helper\contains($param['name'], 'color_id')): ?> - <?= Helper\in_list($param['value'], $colors_list) ?> - <?php elseif (Helper\contains($param['name'], 'category_id')): ?> - <?= Helper\in_list($param['value'], $categories_list) ?> - <?php elseif (Helper\contains($param['name'], 'label')): ?> - <?= Helper\escape($param['value']) ?> - <?php endif ?> - </strong> - </li> - <?php endforeach ?> - </ul> - </td> - <td> - <a href="?controller=action&action=confirm&project_id=<?= $project['id'] ?>&action_id=<?= $action['id'] ?>"><?= t('Remove') ?></a> - </td> - </tr> - <?php endforeach ?> - -</table> - -<?php endif ?> - -<h3><?= t('Add an action') ?></h3> -<form method="post" action="?controller=action&action=event&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Action'), 'action_name') ?> - <?= Helper\form_select('action_name', $available_actions, $values) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Next step') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/action_params.php b/app/Templates/action_params.php deleted file mode 100644 index f647149b..00000000 --- a/app/Templates/action_params.php +++ /dev/null @@ -1,40 +0,0 @@ -<div class="page-header"> - <h2><?= t('Automatic actions for the project "%s"', $project['name']) ?></h2> -</div> - -<h3><?= t('Define action parameters') ?></h3> -<form method="post" action="?controller=action&action=create&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('project_id', $values) ?> - <?= Helper\form_hidden('event_name', $values) ?> - <?= Helper\form_hidden('action_name', $values) ?> - - <?php foreach ($action_params as $param_name => $param_desc): ?> - - <?php if (Helper\contains($param_name, 'column_id')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_select('params['.$param_name.']', $columns_list, $values) ?><br/> - <?php elseif (Helper\contains($param_name, 'user_id')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_select('params['.$param_name.']', $users_list, $values) ?><br/> - <?php elseif (Helper\contains($param_name, 'project_id')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_select('params['.$param_name.']', $projects_list, $values) ?><br/> - <?php elseif (Helper\contains($param_name, 'color_id')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_select('params['.$param_name.']', $colors_list, $values) ?><br/> - <?php elseif (Helper\contains($param_name, 'category_id')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_select('params['.$param_name.']', $categories_list, $values) ?><br/> - <?php elseif (Helper\contains($param_name, 'label')): ?> - <?= Helper\form_label($param_desc, $param_name) ?> - <?= Helper\form_text('params['.$param_name.']', $values) ?> - <?php endif ?> - - <?php endforeach ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save this action') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=action&action=index&project_id=<?= $project['id'] ?>"><?= t('cancel') ?></a> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/action_remove.php b/app/Templates/action_remove.php deleted file mode 100644 index 668067da..00000000 --- a/app/Templates/action_remove.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove an automatic action') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this action: "%s"?', Helper\in_list($action['event_name'], $available_events).'/'.Helper\in_list($action['action_name'], $available_actions)) ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'action', 'remove', array('project_id' => $project['id'], 'action_id' => $action['id']), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'action', 'index', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/app_forbidden.php b/app/Templates/app_forbidden.php deleted file mode 100644 index 0c035404..00000000 --- a/app/Templates/app_forbidden.php +++ /dev/null @@ -1,9 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Forbidden') ?></h2> - </div> - - <p class="alert alert-error"> - <?= t('Access Forbidden') ?> - </p> -</section>
\ No newline at end of file diff --git a/app/Templates/app_index.php b/app/Templates/app_index.php deleted file mode 100644 index 91eecce4..00000000 --- a/app/Templates/app_index.php +++ /dev/null @@ -1,45 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Dashboard') ?></h2> - </div> - <section id="dashboard"> - <div class="dashboard-left-column"> - <h2><?= t('My tasks') ?></h2> - <?php if (empty($tasks)): ?> - <p class="alert"><?= t('There is nothing assigned to you.') ?></p> - <?php else: ?> - <table> - <tr> - <th> </th> - <th width="15%"><?= t('Project') ?></th> - <th width="40%"><?= t('Title') ?></th> - <th><?= t('Due date') ?></th> - <th><?= t('Date created') ?></th> - </tr> - <?php foreach ($tasks as $task): ?> - <tr> - <td class="task-table task-<?= $task['color_id'] ?>"> - <?= Helper\a('#'.$task['id'], 'task', 'show', array('task_id' => $task['id'])) ?> - </td> - <td> - <?= Helper\a(Helper\escape($task['project_name']), 'board', 'show', array('project_id' => $task['project_id'])) ?> - </td> - <td> - <?= Helper\a(Helper\escape($task['title']), 'task', 'show', array('task_id' => $task['id'])) ?> - </td> - <td> - <?= dt('%B %e, %Y', $task['date_due']) ?> - </td> - <td> - <?= dt('%B %e, %Y', $task['date_creation']) ?> - </td> - </tr> - <?php endforeach ?> - </table> - <?php endif ?> - </div> - <div class="dashboard-right-column"> - <h2><?= t('Activity stream') ?></h2> - <?= Helper\template('project_events', array('events' => $events)) ?> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/app_notfound.php b/app/Templates/app_notfound.php deleted file mode 100644 index 734d16a4..00000000 --- a/app/Templates/app_notfound.php +++ /dev/null @@ -1,9 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Page not found') ?></h2> - </div> - - <p class="alert alert-error"> - <?= t('Sorry, I didn\'t found this information in my database!') ?> - </p> -</section>
\ No newline at end of file diff --git a/app/Templates/board_assignee.php b/app/Templates/board_assignee.php deleted file mode 100644 index 41ede32b..00000000 --- a/app/Templates/board_assignee.php +++ /dev/null @@ -1,24 +0,0 @@ -<section id="main"> - - <div class="page-header board"> - <h2><?= t('Project "%s"', $current_project_name) ?></h2> - </div> - - <section> - <h3><?= t('Change assignee for the task "%s"', $values['title']) ?></h3> - <form method="post" action="?controller=board&action=updateAssignee" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Assignee'), 'owner_id') ?> - <?= Helper\form_select('owner_id', $users_list, $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=board&action=show&project_id=<?= $values['project_id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - </section> - -</section>
\ No newline at end of file diff --git a/app/Templates/board_category.php b/app/Templates/board_category.php deleted file mode 100644 index 36126a1d..00000000 --- a/app/Templates/board_category.php +++ /dev/null @@ -1,24 +0,0 @@ -<section id="main"> - - <div class="page-header board"> - <h2><?= t('Project "%s"', $current_project_name) ?></h2> - </div> - - <section> - <h3><?= t('Change category for the task "%s"', $values['title']) ?></h3> - <form method="post" action="?controller=board&action=updateCategory" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Category'), 'category_id') ?> - <?= Helper\form_select('category_id', $categories_list, $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=board&action=show&project_id=<?= $values['project_id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - </section> - -</section>
\ No newline at end of file diff --git a/app/Templates/board_edit.php b/app/Templates/board_edit.php deleted file mode 100644 index cfaebc50..00000000 --- a/app/Templates/board_edit.php +++ /dev/null @@ -1,58 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit the board for "%s"', $project['name']) ?></h2> -</div> -<section> - -<h3><?= t('Change columns') ?></h3> -<form method="post" action="?controller=board&action=update&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?php $i = 0; ?> - <table> - <tr> - <th><?= t('Position') ?></th> - <th><?= t('Column title') ?></th> - <th><?= t('Task limit') ?></th> - <th><?= t('Actions') ?></th> - </tr> - <?php foreach ($columns as $column): ?> - <tr> - <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']', array('title="column_id='.$column['id'].'"')) ?></td> - <td><?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?></td> - <td><?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?></td> - <td> - <ul> - <?php if ($column['position'] != 1): ?> - <li> - <?= Helper\a(t('Move Up'), 'board', 'moveColumn', array('project_id' => $project['id'], 'column_id' => $column['id'], 'direction' => 'up'), true) ?> - </li> - <?php endif ?> - <?php if ($column['position'] != count($columns)): ?> - <li> - <?= Helper\a(t('Move Down'), 'board', 'moveColumn', array('project_id' => $project['id'], 'column_id' => $column['id'], 'direction' => 'down'), true) ?> - </li> - <?php endif ?> - <li> - <?= Helper\a(t('Remove'), 'board', 'remove', array('project_id' => $project['id'], 'column_id' => $column['id'])) ?> - </li> - </ul> - </td> - </tr> - <?php endforeach ?> - </table> - - <div class="form-actions"> - <input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/> - </div> -</form> - -<h3><?= t('Add a new column') ?></h3> -<form method="post" action="?controller=board&action=add&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('project_id', $values) ?> - <?= Helper\form_label(t('Title'), 'title') ?> - <?= Helper\form_text('title', $values, $errors, array('required')) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Add this column') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/board_index.php b/app/Templates/board_index.php deleted file mode 100644 index bff7dcc9..00000000 --- a/app/Templates/board_index.php +++ /dev/null @@ -1,38 +0,0 @@ -<section id="main"> - - <div class="page-header board"> - <h2> - <?= t('Project "%s"', $current_project_name) ?> - </h2> - </div> - - <div class="project-menu"> - <ul> - <li> - <span class="hide-tablet"><?= t('Filter by user') ?></span> - <?= Helper\form_select('user_id', $users, $filters) ?> - </li> - <li> - <span class="hide-tablet"><?= t('Filter by category') ?></span> - <?= Helper\form_select('category_id', $categories, $filters) ?> - </li> - <li><a href="#" id="filter-due-date"><?= t('Filter by due date') ?></a></li> - <li><a href="?controller=project&action=search&project_id=<?= $current_project_id ?>"><?= t('Search') ?></a></li> - <li><a href="?controller=project&action=tasks&project_id=<?= $current_project_id ?>"><?= t('Completed tasks') ?></a></li> - <li><a href="?controller=project&action=activity&project_id=<?= $current_project_id ?>"><?= t('Activity') ?></a></li> - </ul> - </div> - - <?php if (empty($board)): ?> - <p class="alert alert-error"><?= t('There is no column in your project!') ?></p> - <?php else: ?> - <?= Helper\template('board_show', array( - 'current_project_id' => $current_project_id, - 'board' => $board, - 'categories' => $categories, - 'board_private_refresh_interval' => $board_private_refresh_interval, - 'board_highlight_period' => $board_highlight_period, - )) ?> - <?php endif ?> - -</section> diff --git a/app/Templates/board_public.php b/app/Templates/board_public.php deleted file mode 100644 index 85c90cfa..00000000 --- a/app/Templates/board_public.php +++ /dev/null @@ -1,34 +0,0 @@ -<section id="main" class="public-board"> - - <?php if (empty($columns)): ?> - <p class="alert alert-error"><?= t('There is no column in your project!') ?></p> - <?php else: ?> - <table id="board"> - <tr> - <?php $column_with = round(100 / count($columns), 2); ?> - <?php foreach ($columns as $column): ?> - <th width="<?= $column_with ?>%"> - <?= Helper\escape($column['title']) ?> - <?php if ($column['task_limit']): ?> - <span title="<?= t('Task limit') ?>" class="task-limit">(<?= Helper\escape(count($column['tasks']).'/'.$column['task_limit']) ?>)</span> - <?php endif ?> - </th> - <?php endforeach ?> - </tr> - <tr> - <?php foreach ($columns as $column): ?> - <td class="column <?= $column['task_limit'] && count($column['tasks']) > $column['task_limit'] ? 'task-limit-warning' : '' ?>"> - <?php foreach ($column['tasks'] as $task): ?> - <div class="task-board task-<?= $task['color_id'] ?>"> - - <?= Helper\template('board_task', array('task' => $task, 'categories' => $categories, 'not_editable' => true, 'project' => $project)) ?> - - </div> - <?php endforeach ?> - </td> - <?php endforeach ?> - </tr> - </table> - <?php endif ?> - -</section>
\ No newline at end of file diff --git a/app/Templates/board_remove.php b/app/Templates/board_remove.php deleted file mode 100644 index 4529063b..00000000 --- a/app/Templates/board_remove.php +++ /dev/null @@ -1,15 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove a column') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this column: "%s"?', $column['title']) ?> - <?= t('This action will REMOVE ALL TASKS associated to this column!') ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'board', 'remove', array('project_id' => $project['id'], 'column_id' => $column['id'], 'remove' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'board', 'edit', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/board_show.php b/app/Templates/board_show.php deleted file mode 100644 index e8c3c1ba..00000000 --- a/app/Templates/board_show.php +++ /dev/null @@ -1,49 +0,0 @@ -<table id="board" data-project-id="<?= $current_project_id ?>" data-time="<?= time() ?>" data-check-interval="<?= $board_private_refresh_interval ?>" data-csrf-token=<?= \Core\Security::getCSRFToken() ?>> -<tr> - <?php $column_with = round(100 / count($board), 2); ?> - <?php foreach ($board as $column): ?> - <th width="<?= $column_with ?>%"> - <div class="board-add-icon"> - <a href="?controller=task&action=create&project_id=<?= $column['project_id'] ?>&column_id=<?= $column['id'] ?>" title="<?= t('Add a new task') ?>">+</a> - </div> - <?= Helper\escape($column['title']) ?> - <?php if ($column['task_limit']): ?> - <span title="<?= t('Task limit') ?>" class="task-limit"> - ( - <span id="task-number-column-<?= $column['id'] ?>"><?= count($column['tasks']) ?></span> - / - <?= Helper\escape($column['task_limit']) ?> - ) - </span> - <?php else: ?> - <span title="<?= t('Task count') ?>" class="task-count"> - (<span id="task-number-column-<?= $column['id'] ?>"><?= count($column['tasks']) ?></span>) - </span> - <?php endif ?> - </th> - <?php endforeach ?> -</tr> -<tr> - <?php foreach ($board as $column): ?> - <td - id="column-<?= $column['id'] ?>" - class="column <?= $column['task_limit'] && count($column['tasks']) > $column['task_limit'] ? 'task-limit-warning' : '' ?>" - data-column-id="<?= $column['id'] ?>" - data-task-limit="<?= $column['task_limit'] ?>" - > - <?php foreach ($column['tasks'] as $task): ?> - <div class="task-board draggable-item task-<?= $task['color_id'] ?> <?= $task['date_modification'] > time() - $board_highlight_period ? 'task-board-recent' : '' ?>" - data-task-id="<?= $task['id'] ?>" - data-owner-id="<?= $task['owner_id'] ?>" - data-category-id="<?= $task['category_id'] ?>" - data-due-date="<?= $task['date_due'] ?>" - title="<?= t('View this task') ?>"> - - <?= Helper\template('board_task', array('task' => $task, 'categories' => $categories)) ?> - - </div> - <?php endforeach ?> - </td> - <?php endforeach ?> -</tr> -</table> diff --git a/app/Templates/board_task.php b/app/Templates/board_task.php deleted file mode 100644 index ca854f37..00000000 --- a/app/Templates/board_task.php +++ /dev/null @@ -1,109 +0,0 @@ -<?php if (isset($not_editable)): ?> - - <a href="?controller=task&action=readonly&task_id=<?= $task['id'] ?>&token=<?= $project['token'] ?>">#<?= $task['id'] ?></a> - - <?php if ($task['reference']): ?> - <span class="task-board-reference" title="<?= t('Reference') ?>"> - (<?= $task['reference'] ?>) - </span> - <?php endif ?> - - - - - <span class="task-board-user"> - <?php if (! empty($task['owner_id'])): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <span class="task-board-nobody"><?= t('Nobody assigned') ?></span> - <?php endif ?> - </span> - - <?php if ($task['score']): ?> - <span class="task-score"><?= Helper\escape($task['score']) ?></span> - <?php endif ?> - - <div class="task-board-title"> - <a href="?controller=task&action=readonly&task_id=<?= $task['id'] ?>&token=<?= $project['token'] ?>"> - <?= Helper\escape($task['title']) ?> - </a> - </div> - -<?php else: ?> - - <a class="task-edit-popover" href="?controller=task&action=edit&task_id=<?= $task['id'] ?>" title="<?= t('Edit this task') ?>">#<?= $task['id'] ?></a> - - <?php if ($task['reference']): ?> - <span class="task-board-reference" title="<?= t('Reference') ?>"> - (<?= $task['reference'] ?>) - </span> - <?php endif ?> - - - - - <span class="task-board-user"> - <a class="assignee-popover" href="?controller=board&action=changeAssignee&task_id=<?= $task['id'] ?>" title="<?= t('Change assignee') ?>"> - <?php if (! empty($task['owner_id'])): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?></a> - <?php else: ?> - <?= t('Nobody assigned') ?> - <?php endif ?> - </a> - </span> - - <?php if ($task['score']): ?> - <span class="task-score"><?= Helper\escape($task['score']) ?></span> - <?php endif ?> - - <div class="task-board-title"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> - </div> - -<?php endif ?> - - -<?php if ($task['category_id']): ?> -<div class="task-board-category-container"> - <span class="task-board-category"> - <a class="category-popover" href="?controller=board&action=changeCategory&task_id=<?= $task['id'] ?>" title="<?= t('Change category') ?>"> - <?= Helper\in_list($task['category_id'], $categories) ?> - </a> - </span> -</div> -<?php endif ?> - - -<?php if (! empty($task['date_due']) || ! empty($task['nb_files']) || ! empty($task['nb_comments']) || ! empty($task['description']) || ! empty($task['nb_subtasks'])): ?> -<div class="task-board-footer"> - - <?php if (! empty($task['date_due'])): ?> - <div class="task-board-date <?= time() > $task['date_due'] ? 'task-board-date-overdue' : '' ?>"> - <?= dt('%B %e, %Y', $task['date_due']) ?> - </div> - <?php endif ?> - - <div class="task-board-icons"> - - <?php if (! empty($task['nb_subtasks'])): ?> - <span title="<?= t('Sub-Tasks') ?>"><?= $task['nb_completed_subtasks'].'/'.$task['nb_subtasks'] ?> <i class="fa fa-bars"></i></span> - <?php endif ?> - - <?php if (! empty($task['nb_files'])): ?> - <span title="<?= t('Attachments') ?>"><?= $task['nb_files'] ?> <i class="fa fa-paperclip"></i></span> - <?php endif ?> - - <?php if (! empty($task['nb_comments'])): ?> - <span title="<?= p($task['nb_comments'], t('%d comment', $task['nb_comments']), t('%d comments', $task['nb_comments'])) ?>"><?= $task['nb_comments'] ?> <i class="fa fa-comment-o"></i></span> - <?php endif ?> - - <?php if (! empty($task['description'])): ?> - <span title="<?= t('Description') ?>"> - <?php if (! isset($not_editable)): ?> - <a class="task-description-popover" href="?controller=task&action=description&task_id=<?= $task['id'] ?>"><i class="fa fa-file-text-o" data-href="?controller=task&action=description&task_id=<?= $task['id'] ?>"></i></a> - <?php else: ?> - <i class="fa fa-file-text-o"></i> - <?php endif ?> - </span> - <?php endif ?> - </div> -</div> -<?php endif ?> diff --git a/app/Templates/category_edit.php b/app/Templates/category_edit.php deleted file mode 100644 index 278d7e12..00000000 --- a/app/Templates/category_edit.php +++ /dev/null @@ -1,16 +0,0 @@ -<div class="page-header"> - <h2><?= t('Category modification for the project "%s"', $project['name']) ?></h2> -</div> - -<form method="post" action="?controller=category&action=update&project_id=<?= $project['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Category Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors, array('autofocus required')) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/category_index.php b/app/Templates/category_index.php deleted file mode 100644 index 4635406e..00000000 --- a/app/Templates/category_index.php +++ /dev/null @@ -1,41 +0,0 @@ -<div class="page-header"> - <h2><?= t('Categories') ?></h2> -</div> - -<?php if (! empty($categories)): ?> -<table> - <tr> - <th><?= t('Category Name') ?></th> - <th><?= t('Actions') ?></th> - </tr> - <?php foreach ($categories as $category_id => $category_name): ?> - <tr> - <td><?= Helper\escape($category_name) ?></td> - <td> - <ul> - <li> - <a href="?controller=category&action=edit&project_id=<?= $project['id'] ?>&category_id=<?= $category_id ?>"><?= t('Edit') ?></a> - </li> - <li> - <a href="?controller=category&action=confirm&project_id=<?= $project['id'] ?>&category_id=<?= $category_id ?>"><?= t('Remove') ?></a> - </li> - </ul> - </td> - </tr> - <?php endforeach ?> -</table> -<?php endif ?> - -<h3><?= t('Add a new category') ?></h3> -<form method="post" action="?controller=category&action=save&project_id=<?= $project['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Category Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors, array('autofocus required')) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/category_remove.php b/app/Templates/category_remove.php deleted file mode 100644 index cfc23e07..00000000 --- a/app/Templates/category_remove.php +++ /dev/null @@ -1,16 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Remove a category') ?></h2> - </div> - - <div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this category: "%s"?', $category['name']) ?> - </p> - - <div class="form-actions"> - <a href="?controller=category&action=remove&project_id=<?= $project['id'] ?>&category_id=<?= $category['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=category&project_id=<?= $project['id'] ?>"><?= t('cancel') ?></a> - </div> - </div> -</section>
\ No newline at end of file diff --git a/app/Templates/comment_create.php b/app/Templates/comment_create.php deleted file mode 100644 index 11772f75..00000000 --- a/app/Templates/comment_create.php +++ /dev/null @@ -1,19 +0,0 @@ -<div class="page-header"> - <h2><?= t('Add a comment') ?></h2> -</div> - -<form method="post" action="?controller=comment&action=save&task_id=<?= $task['id'] ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('task_id', $values) ?> - <?= Helper\form_hidden('user_id', $values) ?> - <?= Helper\form_textarea('comment', $values, $errors, array(! isset($skip_cancel) ? 'autofocus' : '', 'required', 'placeholder="'.t('Leave a comment').'"'), 'comment-textarea') ?><br/> - <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?php if (! isset($skip_cancel)): ?> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - <?php endif ?> - </div> -</form> diff --git a/app/Templates/comment_edit.php b/app/Templates/comment_edit.php deleted file mode 100644 index 4ce48964..00000000 --- a/app/Templates/comment_edit.php +++ /dev/null @@ -1,17 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit a comment') ?></h2> -</div> - -<form method="post" action="?controller=comment&action=update&task_id=<?= $task['id'] ?>&comment_id=<?= $comment['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('task_id', $values) ?> - <?= Helper\form_textarea('comment', $values, $errors, array('autofocus', 'required', 'placeholder="'.t('Leave a comment').'"'), 'comment-textarea') ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</form> diff --git a/app/Templates/comment_forbidden.php b/app/Templates/comment_forbidden.php deleted file mode 100644 index eeea8404..00000000 --- a/app/Templates/comment_forbidden.php +++ /dev/null @@ -1,9 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Forbidden') ?></h2> - </div> - - <p class="alert alert-error"> - <?= t('Only administrators or the creator of the comment can access to this page.') ?> - </p> -</section>
\ No newline at end of file diff --git a/app/Templates/comment_remove.php b/app/Templates/comment_remove.php deleted file mode 100644 index 7b117781..00000000 --- a/app/Templates/comment_remove.php +++ /dev/null @@ -1,16 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove a comment') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this comment?') ?> - </p> - - <?= Helper\template('comment_show', array('comment' => $comment, 'task' => $task, 'preview' => true)) ?> - - <div class="form-actions"> - <a href="?controller=comment&action=remove&task_id=<?= $task['id'] ?>&comment_id=<?= $comment['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>#comment-<?= $comment['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/comment_show.php b/app/Templates/comment_show.php deleted file mode 100644 index b2ccc25a..00000000 --- a/app/Templates/comment_show.php +++ /dev/null @@ -1,41 +0,0 @@ -<div class="comment <?= isset($preview) ? 'comment-preview' : '' ?>" id="comment-<?= $comment['id'] ?>"> - - <p class="comment-title"> - <span class="comment-username"><?= Helper\escape($comment['name'] ?: $comment['username']) ?></span> @ <span class="comment-date"><?= dt('%B %e, %Y at %k:%M %p', $comment['date']) ?></span> - </p> - - <div class="comment-inner"> - - <?php if (! isset($preview)): ?> - <ul class="comment-actions"> - <li><a href="#comment-<?= $comment['id'] ?>"><?= t('link') ?></a></li> - <?php if ((! isset($not_editable) || ! $not_editable) && (Helper\is_admin() || Helper\is_current_user($comment['user_id']))): ?> - <li> - <a href="?controller=comment&action=confirm&task_id=<?= $task['id'] ?>&comment_id=<?= $comment['id'] ?>"><?= t('remove') ?></a> - </li> - <li> - <a href="?controller=comment&action=edit&task_id=<?= $task['id'] ?>&comment_id=<?= $comment['id'] ?>"><?= t('edit') ?></a> - </li> - <?php endif ?> - </ul> - <?php endif ?> - - <div class="markdown"> - <?php if (isset($is_public) && $is_public): ?> - <?= Helper\markdown( - $comment['comment'], - array( - 'controller' => 'task', - 'action' => 'readonly', - 'params' => array( - 'token' => $project['token'] - ) - ) - ) ?> - <?php else: ?> - <?= Helper\markdown($comment['comment']) ?> - <?php endif ?> - </div> - - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/config_about.php b/app/Templates/config_about.php deleted file mode 100644 index 3f34f802..00000000 --- a/app/Templates/config_about.php +++ /dev/null @@ -1,41 +0,0 @@ -<div class="page-header"> - <h2><?= t('About') ?></h2> -</div> -<section class="listing"> - <ul> - <li> - <?= t('Official website:') ?> - <a href="http://kanboard.net/" target="_blank" rel="noreferer">http://kanboard.net/</a> - </li> - <li> - <?= t('Application version:') ?> - <strong><?= APP_VERSION ?></strong> - </li> - </ul> -</section> - -<div class="page-header"> - <h2><?= t('Database') ?></h2> -</div> -<section class="listing"> - <ul> - <li> - <?= t('Database driver:') ?> - <strong><?= Helper\escape(DB_DRIVER) ?></strong> - </li> - <?php if (DB_DRIVER === 'sqlite'): ?> - <li> - <?= t('Database size:') ?> - <strong><?= Helper\format_bytes($db_size) ?></strong> - </li> - <li> - <?= Helper\a(t('Download the database'), 'config', 'downloadDb', array(), true) ?> - <?= t('(Gzip compressed Sqlite file)') ?> - </li> - <li> - <?= Helper\a(t('Optimize the database'), 'config', 'optimizeDb', array(), true) ?> - <?= t('(VACUUM command)') ?> - </li> - <?php endif ?> - </ul> -</section>
\ No newline at end of file diff --git a/app/Templates/config_api.php b/app/Templates/config_api.php deleted file mode 100644 index 037ea08d..00000000 --- a/app/Templates/config_api.php +++ /dev/null @@ -1,18 +0,0 @@ -<div class="page-header"> - <h2><?= t('API') ?></h2> -</div> -<section class="listing"> - <ul> - <li> - <?= t('API token:') ?> - <strong><?= Helper\escape($values['api_token']) ?></strong> - </li> - <li> - <?= t('API endpoint:') ?> - <input type="text" readonly="readonly" value="<?= Helper\get_current_base_url().'jsonrpc.php' ?>"> - </li> - <li> - <?= Helper\a(t('Reset token'), 'config', 'token', array('type' => 'api'), true) ?> - </li> - </ul> -</section>
\ No newline at end of file diff --git a/app/Templates/config_application.php b/app/Templates/config_application.php deleted file mode 100644 index 97071bd0..00000000 --- a/app/Templates/config_application.php +++ /dev/null @@ -1,27 +0,0 @@ -<div class="page-header"> - <h2><?= t('Application settings') ?></h2> -</div> -<section> -<form method="post" action="<?= Helper\u('config', 'application') ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Application URL'), 'application_url') ?> - <?= Helper\form_text('application_url', $values, $errors, array('placeholder="http://example.kanboar.net/"')) ?><br/> - <p class="form-help"><?= t('Example: http://example.kanboard.net/ (used by email notifications)') ?></p> - - <?= Helper\form_label(t('Language'), 'application_language') ?> - <?= Helper\form_select('application_language', $languages, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Timezone'), 'application_timezone') ?> - <?= Helper\form_select('application_timezone', $timezones, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Date format'), 'application_date_format') ?> - <?= Helper\form_select('application_date_format', $date_formats, $values, $errors) ?><br/> - <p class="form-help"><?= t('ISO format is always accepted, example: "%s" and "%s"', date('Y-m-d'), date('Y_m_d')) ?></p> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form> -</section>
\ No newline at end of file diff --git a/app/Templates/config_board.php b/app/Templates/config_board.php deleted file mode 100644 index f260d084..00000000 --- a/app/Templates/config_board.php +++ /dev/null @@ -1,29 +0,0 @@ -<div class="page-header"> - <h2><?= t('Board settings') ?></h2> -</div> -<section> -<form method="post" action="<?= Helper\u('config', 'board') ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Task highlight period'), 'board_highlight_period') ?> - <?= Helper\form_number('board_highlight_period', $values, $errors) ?><br/> - <p class="form-help"><?= t('Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)') ?></p> - - <?= Helper\form_label(t('Refresh interval for public board'), 'board_public_refresh_interval') ?> - <?= Helper\form_number('board_public_refresh_interval', $values, $errors) ?><br/> - <p class="form-help"><?= t('Frequency in second (60 seconds by default)') ?></p> - - <?= Helper\form_label(t('Refresh interval for private board'), 'board_private_refresh_interval') ?> - <?= Helper\form_number('board_private_refresh_interval', $values, $errors) ?><br/> - <p class="form-help"><?= t('Frequency in second (0 to disable this feature, 10 seconds by default)') ?></p> - - <?= Helper\form_label(t('Default columns for new projects (Comma-separated)'), 'board_columns') ?> - <?= Helper\form_text('board_columns', $values, $errors) ?><br/> - <p class="form-help"><?= t('Default values are "%s"', $default_columns) ?></p> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form> -</section>
\ No newline at end of file diff --git a/app/Templates/config_layout.php b/app/Templates/config_layout.php deleted file mode 100644 index 3aacb9b7..00000000 --- a/app/Templates/config_layout.php +++ /dev/null @@ -1,13 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Settings') ?></h2> - </div> - <section class="config-show" id="config-section"> - - <?= Helper\template('config_sidebar') ?> - - <div class="config-show-main"> - <?= $config_content_for_layout ?> - </div> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/config_sidebar.php b/app/Templates/config_sidebar.php deleted file mode 100644 index d96159b8..00000000 --- a/app/Templates/config_sidebar.php +++ /dev/null @@ -1,22 +0,0 @@ -<div class="config-show-sidebar"> - <h2><?= t('Actions') ?></h2> - <div class="config-show-actions"> - <ul> - <li> - <?= Helper\a(t('About'), 'config', 'index') ?> - </li> - <li> - <?= Helper\a(t('Application settings'), 'config', 'application') ?> - </li> - <li> - <?= Helper\a(t('Board settings'), 'config', 'board') ?> - </li> - <li> - <?= Helper\a(t('Webhooks'), 'config', 'webhook') ?> - </li> - <li> - <?= Helper\a(t('API'), 'config', 'api') ?> - </li> - </ul> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/config_webhook.php b/app/Templates/config_webhook.php deleted file mode 100644 index 052a2a99..00000000 --- a/app/Templates/config_webhook.php +++ /dev/null @@ -1,38 +0,0 @@ -<div class="page-header"> - <h2><?= t('Webhook settings') ?></h2> -</div> -<section> -<form method="post" action="<?= Helper\u('config', 'webhook') ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Webhook URL for task creation'), 'webhook_url_task_creation') ?> - <?= Helper\form_text('webhook_url_task_creation', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Webhook URL for task modification'), 'webhook_url_task_modification') ?> - <?= Helper\form_text('webhook_url_task_modification', $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form> -</section> - -<div class="page-header"> - <h2><?= t('URL and token') ?></h2> -</div> -<section class="listing"> - <ul> - <li> - <?= t('Webhook token:') ?> - <strong><?= Helper\escape($values['webhook_token']) ?></strong> - </li> - <li> - <?= t('URL for task creation:') ?> - <input type="text" readonly="readonly" value="<?= Helper\get_current_base_url().Helper\u('webhook', 'task', array('token' => $values['webhook_token'])) ?>"> - </li> - <li> - <?= Helper\a(t('Reset token'), 'config', 'token', array('type' => 'webhook'), true) ?> - </li> - </ul> -</section>
\ No newline at end of file diff --git a/app/Templates/event_comment_create.php b/app/Templates/event_comment_create.php deleted file mode 100644 index d2f6f97b..00000000 --- a/app/Templates/event_comment_create.php +++ /dev/null @@ -1,7 +0,0 @@ -<p class="activity-title"> - <?= e('%s commented the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<div class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em><br/> - <div class="markdown"><?= Helper\markdown($comment['comment']) ?></div> -</div>
\ No newline at end of file diff --git a/app/Templates/event_comment_update.php b/app/Templates/event_comment_update.php deleted file mode 100644 index 27cc0be6..00000000 --- a/app/Templates/event_comment_update.php +++ /dev/null @@ -1,7 +0,0 @@ -<p class="activity-title"> - <?= e('%s updated a comment on the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<div class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em><br/> - <div class="markdown"><?= Helper\markdown($comment['comment']) ?></div> -</div>
\ No newline at end of file diff --git a/app/Templates/event_subtask_create.php b/app/Templates/event_subtask_create.php deleted file mode 100644 index 664e9da2..00000000 --- a/app/Templates/event_subtask_create.php +++ /dev/null @@ -1,19 +0,0 @@ -<p class="activity-title"> - <?= e('%s created a subtask for the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<div class="activity-description"> - <p><em><?= Helper\escape($task['title']) ?></em></p> - - <ul> - <li> - <?= Helper\escape($subtask['title']) ?> (<strong><?= Helper\escape($subtask['status_name']) ?></strong>) - </li> - <li> - <?php if ($subtask['username']): ?> - <?= t('Assigned to %s with an estimate of %s/%sh', $subtask['name'] ?: $subtask['username'], $subtask['time_spent'], $subtask['time_estimated']) ?> - <?php else: ?> - <?= t('Not assigned, estimate of %sh', $subtask['time_estimated']) ?> - <?php endif ?> - </li> - </ul> -</div>
\ No newline at end of file diff --git a/app/Templates/event_subtask_update.php b/app/Templates/event_subtask_update.php deleted file mode 100644 index 96a589dd..00000000 --- a/app/Templates/event_subtask_update.php +++ /dev/null @@ -1,19 +0,0 @@ -<p class="activity-title"> - <?= e('%s updated a subtask for the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<div class="activity-description"> - <p><em><?= Helper\escape($task['title']) ?></em></p> - - <ul> - <li> - <?= Helper\escape($subtask['title']) ?> (<strong><?= Helper\escape($subtask['status_name']) ?></strong>) - </li> - <li> - <?php if ($subtask['username']): ?> - <?= t('Assigned to %s with an estimate of %s/%sh', $subtask['name'] ?: $subtask['username'], $subtask['time_spent'], $subtask['time_estimated']) ?> - <?php else: ?> - <?= t('Not assigned, estimate of %sh', $subtask['time_estimated']) ?> - <?php endif ?> - </li> - </ul> -</div> diff --git a/app/Templates/event_task_assignee_change.php b/app/Templates/event_task_assignee_change.php deleted file mode 100644 index b346325e..00000000 --- a/app/Templates/event_task_assignee_change.php +++ /dev/null @@ -1,12 +0,0 @@ -<p class="activity-title"> - <?= e( - '%s change the assignee of the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to %s', - Helper\escape($author), - $task_id, - $task_id, - Helper\escape($task['assignee_name'] ?: $task['assignee_username']) - ) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_close.php b/app/Templates/event_task_close.php deleted file mode 100644 index 48d25678..00000000 --- a/app/Templates/event_task_close.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s closed the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_create.php b/app/Templates/event_task_create.php deleted file mode 100644 index 2515af05..00000000 --- a/app/Templates/event_task_create.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s created the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_move_column.php b/app/Templates/event_task_move_column.php deleted file mode 100644 index f2aac8f7..00000000 --- a/app/Templates/event_task_move_column.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s moved the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to the column "%s"', Helper\escape($author), $task_id, $task_id, Helper\escape($task['column_title'])) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_move_position.php b/app/Templates/event_task_move_position.php deleted file mode 100644 index 26cdeb13..00000000 --- a/app/Templates/event_task_move_position.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s moved the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to the position #%d in the column "%s"', Helper\escape($author), $task_id, $task_id, $task['position'], Helper\escape($task['column_title'])) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_open.php b/app/Templates/event_task_open.php deleted file mode 100644 index 9623be74..00000000 --- a/app/Templates/event_task_open.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s open the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/event_task_update.php b/app/Templates/event_task_update.php deleted file mode 100644 index a270b936..00000000 --- a/app/Templates/event_task_update.php +++ /dev/null @@ -1,6 +0,0 @@ -<p class="activity-title"> - <?= e('%s updated the task <a href="?controller=task&action=show&task_id=%d">#%d</a>', Helper\escape($author), $task_id, $task_id) ?> -</p> -<p class="activity-description"> - <em><?= Helper\escape($task['title']) ?></em> -</p>
\ No newline at end of file diff --git a/app/Templates/file_new.php b/app/Templates/file_new.php deleted file mode 100644 index 7f7f1d1c..00000000 --- a/app/Templates/file_new.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Attach a document') ?></h2> -</div> - -<form action="?controller=file&action=save&task_id=<?= $task['id'] ?>" method="post" enctype="multipart/form-data"> - <?= Helper\form_csrf() ?> - <input type="file" name="files[]" multiple /> - <div class="form-help"><?= t('Maximum size: ') ?><?= is_integer($max_size) ? Helper\format_bytes($max_size) : $max_size ?></div> - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/file_open.php b/app/Templates/file_open.php deleted file mode 100644 index aa181d64..00000000 --- a/app/Templates/file_open.php +++ /dev/null @@ -1,6 +0,0 @@ -<div class="page-header"> - <h2><?= Helper\escape($file['name']) ?></h2> - <div class="task-file-viewer"> - <img src="?controller=file&action=image&file_id=<?= $file['id'] ?>&task_id=<?= $file['task_id'] ?>" alt="<?= Helper\escape($file['name']) ?>"/> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/file_remove.php b/app/Templates/file_remove.php deleted file mode 100644 index af77591c..00000000 --- a/app/Templates/file_remove.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove a file') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this file: "%s"?', Helper\escape($file['name'])) ?> - </p> - - <div class="form-actions"> - <a href="?controller=file&action=remove&task_id=<?= $task['id'] ?>&file_id=<?= $file['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/file_show.php b/app/Templates/file_show.php deleted file mode 100644 index 3832a0f5..00000000 --- a/app/Templates/file_show.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php if (! empty($files)): ?> -<div id="attachments" class="task-show-section"> - - <div class="page-header"> - <h2><?= t('Attachments') ?></h2> - </div> - - <ul class="task-show-files"> - <?php foreach ($files as $file): ?> - <li> - <a href="?controller=file&action=download&file_id=<?= $file['id'] ?>&task_id=<?= $task['id'] ?>"><?= Helper\escape($file['name']) ?></a> - <span class="task-show-file-actions"> - <?php if ($file['is_image']): ?> - <a href="?controller=file&action=open&file_id=<?= $file['id'] ?>&task_id=<?= $task['id'] ?>" class="file-popover"><?= t('open') ?></a>, - <?php endif ?> - <a href="?controller=file&action=confirm&file_id=<?= $file['id'] ?>&task_id=<?= $task['id'] ?>"><?= t('remove') ?></a> - </span> - </li> - <?php endforeach ?> - </ul> - -</div> -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/layout.php b/app/Templates/layout.php deleted file mode 100644 index a86d613b..00000000 --- a/app/Templates/layout.php +++ /dev/null @@ -1,84 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> - <meta name="mobile-web-app-capable" content="yes"> - <meta name="robots" content="noindex,nofollow"> - - <?php if (isset($board_public_refresh_interval)): ?> - <meta http-equiv="refresh" content="<?= $board_public_refresh_interval ?>" > - <?php endif ?> - - <?php if (! isset($not_editable)): ?> - <?= Helper\js('assets/js/jquery-1.11.1.min.js') ?> - <?= Helper\js('assets/js/jquery-ui-1.10.4.custom.min.js') ?> - <?= Helper\js('assets/js/jquery.ui.touch-punch.min.js') ?> - <?= Helper\js('assets/js/chosen.jquery.min.js') ?> - <?= Helper\js('assets/js/app.js') ?> - <?php endif ?> - - <?= Helper\css('assets/css/app.css') ?> - <?= Helper\css('assets/css/font-awesome.min.css') ?> - <?= Helper\css('assets/css/jquery-ui-1.10.4.custom.css'); ?> - <?= Helper\css('assets/css/chosen.min.css'); ?> - - <link rel="icon" type="image/png" href="assets/img/favicon.png"> - <link rel="apple-touch-icon" href="assets/img/touch-icon-iphone.png"> - <link rel="apple-touch-icon" sizes="72x72" href="assets/img/touch-icon-ipad.png"> - <link rel="apple-touch-icon" sizes="114x114" href="assets/img/touch-icon-iphone-retina.png"> - <link rel="apple-touch-icon" sizes="144x144" href="assets/img/touch-icon-ipad-retina.png"> - - <title><?= isset($title) ? Helper\escape($title).' - Kanboard' : 'Kanboard' ?></title> - </head> - <body> - <?php if (isset($no_layout) && $no_layout): ?> - <?= $content_for_layout ?> - <?php else: ?> - <header> - <nav> - <a class="logo" href="?">kanboard</a> - - <ul> - <?php if (isset($board_selector) && ! empty($board_selector)): ?> - <li> - <select id="board-selector" data-placeholder="<?= t('Display another project') ?>"> - <option value=""></option> - <?php foreach($board_selector as $board_id => $board_name): ?> - <option value="<?= $board_id ?>"><?= Helper\escape($board_name) ?></option> - <?php endforeach ?> - </select> - </li> - <?php endif ?> - <li <?= isset($menu) && $menu === 'dashboard' ? 'class="active"' : '' ?>> - <a href="?controller=app"><?= t('Dashboard') ?></a> - </li> - <li <?= isset($menu) && $menu === 'boards' ? 'class="active"' : '' ?>> - <a href="?controller=board"><?= t('Boards') ?></a> - </li> - <li <?= isset($menu) && $menu === 'projects' ? 'class="active"' : '' ?>> - <a href="?controller=project"><?= t('Projects') ?></a> - </li> - <?php if (Helper\is_admin()): ?> - <li <?= isset($menu) && $menu === 'users' ? 'class="active"' : '' ?>> - <a href="?controller=user"><?= t('Users') ?></a> - </li> - <li class="hide-tablet <?= isset($menu) && $menu === 'config' ? 'active' : '' ?>"> - <a href="?controller=config"><?= t('Settings') ?></a> - </li> - <?php endif ?> - <li> - <a href="?controller=user&action=logout<?= Helper\param_csrf() ?>"><?= t('Logout') ?></a> - <span class="username">(<a href="?controller=user&action=show&user_id=<?= Helper\get_user_id() ?>"><?= Helper\escape(Helper\get_username()) ?></a>)</span> - </li> - </ul> - </nav> - </header> - <section class="page"> - <?= Helper\flash('<div class="alert alert-success alert-fade-out">%s</div>') ?> - <?= Helper\flash_error('<div class="alert alert-error">%s</div>') ?> - <?= $content_for_layout ?> - </section> - <?php endif ?> - </body> -</html> diff --git a/app/Templates/notification_comment_creation.php b/app/Templates/notification_comment_creation.php deleted file mode 100644 index 5b334d76..00000000 --- a/app/Templates/notification_comment_creation.php +++ /dev/null @@ -1,7 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<h3><?= t('New comment posted by %s', $comment['name'] ?: $comment['username']) ?></h3> - -<?= Helper\markdown($comment['comment']) ?> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_comment_update.php b/app/Templates/notification_comment_update.php deleted file mode 100644 index 04aafb85..00000000 --- a/app/Templates/notification_comment_update.php +++ /dev/null @@ -1,7 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<h3><?= t('Comment updated') ?></h3> - -<?= Helper\markdown($comment['comment']) ?> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_file_creation.php b/app/Templates/notification_file_creation.php deleted file mode 100644 index d8636820..00000000 --- a/app/Templates/notification_file_creation.php +++ /dev/null @@ -1,5 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<h3><?= t('New attachment added "%s"', $file['name']) ?></h3> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_footer.php b/app/Templates/notification_footer.php deleted file mode 100644 index 533621f4..00000000 --- a/app/Templates/notification_footer.php +++ /dev/null @@ -1,6 +0,0 @@ -<hr/> -Kanboard - -<?php if ($application_url): ?> - - <a href="<?= $application_url.'?controller=task&action=show&task_id='.$task['id'] ?>"><?= t('view the task on Kanboard') ?></a>. -<?php endif ?> diff --git a/app/Templates/notification_subtask_creation.php b/app/Templates/notification_subtask_creation.php deleted file mode 100644 index 2ddfc649..00000000 --- a/app/Templates/notification_subtask_creation.php +++ /dev/null @@ -1,17 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<h3><?= t('New sub-task') ?></h3> - -<ul> - <li><?= t('Title:') ?> <?= Helper\escape($subtask['title']) ?></li> - <li><?= t('Status:') ?> <?= Helper\escape($subtask['status_name']) ?></li> - <li><?= t('Assignee:') ?> <?= Helper\escape($subtask['name'] ?: $subtask['username'] ?: '?') ?></li> - <li> - <?= t('Time tracking:') ?> - <?php if (! empty($subtask['time_estimated'])): ?> - <strong><?= Helper\escape($subtask['time_estimated']).'h' ?></strong> <?= t('estimated') ?> - <?php endif ?> - </li> -</ul> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_subtask_update.php b/app/Templates/notification_subtask_update.php deleted file mode 100644 index 999edbf9..00000000 --- a/app/Templates/notification_subtask_update.php +++ /dev/null @@ -1,21 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<h3><?= t('Sub-task updated') ?></h3> - -<ul> - <li><?= t('Title:') ?> <?= Helper\escape($subtask['title']) ?></li> - <li><?= t('Status:') ?> <?= Helper\escape($subtask['status_name']) ?></li> - <li><?= t('Assignee:') ?> <?= Helper\escape($subtask['name'] ?: $subtask['username'] ?: '?') ?></li> - <li> - <?= t('Time tracking:') ?> - <?php if (! empty($subtask['time_spent'])): ?> - <strong><?= Helper\escape($subtask['time_spent']).'h' ?></strong> <?= t('spent') ?> - <?php endif ?> - - <?php if (! empty($subtask['time_estimated'])): ?> - <strong><?= Helper\escape($subtask['time_estimated']).'h' ?></strong> <?= t('estimated') ?> - <?php endif ?> - </li> -</ul> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_assignee_change.php b/app/Templates/notification_task_assignee_change.php deleted file mode 100644 index d23f769e..00000000 --- a/app/Templates/notification_task_assignee_change.php +++ /dev/null @@ -1,20 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<ul> - <li> - <strong> - <?php if ($task['assignee_username']): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('There is nobody assigned') ?> - <?php endif ?> - </strong> - </li> -</ul> - -<?php if (! empty($task['description'])): ?> - <h2><?= t('Description') ?></h2> - <?= Helper\markdown($task['description']) ?: t('There is no description.') ?> -<?php endif ?> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_close.php b/app/Templates/notification_task_close.php deleted file mode 100644 index d56e71bb..00000000 --- a/app/Templates/notification_task_close.php +++ /dev/null @@ -1,5 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<p><?= t('The task #%d have been closed.', $task['id']) ?></p> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_creation.php b/app/Templates/notification_task_creation.php deleted file mode 100644 index 1b555096..00000000 --- a/app/Templates/notification_task_creation.php +++ /dev/null @@ -1,43 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<ul> - <li> - <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> - </li> - <?php if ($task['date_due']): ?> - <li> - <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> - </li> - <?php endif ?> - <?php if ($task['creator_username']): ?> - <li> - <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> - </li> - <?php endif ?> - <li> - <strong> - <?php if ($task['assignee_username']): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('There is nobody assigned') ?> - <?php endif ?> - </strong> - </li> - <li> - <?= t('Column on the board:') ?> - <strong><?= Helper\escape($task['column_title']) ?></strong> - </li> - <li><?= t('Task position:').' '.Helper\escape($task['position']) ?></li> - <?php if ($task['category_name']): ?> - <li> - <?= t('Category:') ?> <strong><?= Helper\escape($task['category_name']) ?></strong> - </li> - <?php endif ?> -</ul> - -<?php if (! empty($task['description'])): ?> - <h2><?= t('Description') ?></h2> - <?= Helper\markdown($task['description']) ?> -<?php endif ?> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_due.php b/app/Templates/notification_task_due.php deleted file mode 100644 index a32a9efc..00000000 --- a/app/Templates/notification_task_due.php +++ /dev/null @@ -1,20 +0,0 @@ -<h2><?= t('List of due tasks for the project "%s"', $project) ?></h2> - -<ul> - <?php foreach ($tasks as $task): ?> - <li> - (<strong>#<?= $task['id'] ?></strong>) - <?php if ($application_url): ?> - <a href="<?= $application_url.'?controller=task&action=show&task_id='.$task['id'] ?>"><?= Helper\escape($task['title']) ?></a> - <?php else: ?> - <?= Helper\escape($task['title']) ?> - <?php endif ?> - (<?= dt('%B %e, %Y', $task['date_due']) ?>) - <?php if ($task['assignee_username']): ?> - (<strong><?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?></strong>) - <?php endif ?> - </li> - <?php endforeach ?> -</ul> - -<?= Helper\template('notification_footer', array('task' => $task)) ?> diff --git a/app/Templates/notification_task_move_column.php b/app/Templates/notification_task_move_column.php deleted file mode 100644 index c3f94df7..00000000 --- a/app/Templates/notification_task_move_column.php +++ /dev/null @@ -1,11 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<ul> - <li> - <?= t('Column on the board:') ?> - <strong><?= Helper\escape($task['column_title']) ?></strong> - </li> - <li><?= t('Task position:').' '.Helper\escape($task['position']) ?></li> -</ul> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_move_position.php b/app/Templates/notification_task_move_position.php deleted file mode 100644 index c3f94df7..00000000 --- a/app/Templates/notification_task_move_position.php +++ /dev/null @@ -1,11 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<ul> - <li> - <?= t('Column on the board:') ?> - <strong><?= Helper\escape($task['column_title']) ?></strong> - </li> - <li><?= t('Task position:').' '.Helper\escape($task['position']) ?></li> -</ul> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_open.php b/app/Templates/notification_task_open.php deleted file mode 100644 index 5d9f7d5b..00000000 --- a/app/Templates/notification_task_open.php +++ /dev/null @@ -1,5 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<p><?= t('The task #%d have been opened.', $task['id']) ?></p> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/notification_task_update.php b/app/Templates/notification_task_update.php deleted file mode 100644 index b3c07911..00000000 --- a/app/Templates/notification_task_update.php +++ /dev/null @@ -1,43 +0,0 @@ -<h2><?= Helper\escape($task['title']) ?> (#<?= $task['id'] ?>)</h2> - -<ul> - <li> - <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> - </li> - <?php if ($task['date_due']): ?> - <li> - <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> - </li> - <?php endif ?> - <?php if ($task['creator_username']): ?> - <li> - <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> - </li> - <?php endif ?> - <li> - <strong> - <?php if ($task['assignee_username']): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('There is nobody assigned') ?> - <?php endif ?> - </strong> - </li> - <li> - <?= t('Column on the board:') ?> - <strong><?= Helper\escape($task['column_title']) ?></strong> - </li> - <li><?= t('Task position:').' '.Helper\escape($task['position']) ?></li> - <?php if ($task['category_name']): ?> - <li> - <?= t('Category:') ?> <strong><?= Helper\escape($task['category_name']) ?></strong> - </li> - <?php endif ?> -</ul> - -<?php if (! empty($task['description'])): ?> - <h2><?= t('Description') ?></h2> - <?= Helper\markdown($task['description']) ?: t('There is no description.') ?> -<?php endif ?> - -<?= Helper\template('notification_footer', array('task' => $task, 'application_url' => $application_url)) ?>
\ No newline at end of file diff --git a/app/Templates/project_activity.php b/app/Templates/project_activity.php deleted file mode 100644 index d07ba86a..00000000 --- a/app/Templates/project_activity.php +++ /dev/null @@ -1,18 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('%s\'s activity', $project['name']) ?></h2> - <ul> - <li><?= Helper\a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('Search'), 'project', 'search', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('List of projects'), 'project', 'index') ?></li> - </ul> - </div> - <section> - <?php if ($project['is_public']): ?> - <p class="pull-right"><i class="fa fa-rss-square"></i> <?= Helper\a(t('RSS feed'), 'project', 'feed', array('token' => $project['token'])) ?></p> - <?php endif ?> - - <?= Helper\template('project_events', array('events' => $events)) ?> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_disable.php b/app/Templates/project_disable.php deleted file mode 100644 index 7a729fa3..00000000 --- a/app/Templates/project_disable.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Project activation') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to disable this project: "%s"?', $project['name']) ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'project', 'disable', array('project_id' => $project['id'], 'disable' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'show', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/project_duplicate.php b/app/Templates/project_duplicate.php deleted file mode 100644 index a926dcd1..00000000 --- a/app/Templates/project_duplicate.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Clone this project') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to duplicate this project: "%s"?', $project['name']) ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'project', 'duplicate', array('project_id' => $project['id'], 'duplicate' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'show', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/project_edit.php b/app/Templates/project_edit.php deleted file mode 100644 index 8eb2110d..00000000 --- a/app/Templates/project_edit.php +++ /dev/null @@ -1,15 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit project') ?></h2> -</div> -<form method="post" action="<?= Helper\u('project', 'update', array('project_id' => $values['id'])) ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - - <?= Helper\form_label(t('Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors, array('required')) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/project_enable.php b/app/Templates/project_enable.php deleted file mode 100644 index f2a1b0e7..00000000 --- a/app/Templates/project_enable.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Project activation') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to enable this project: "%s"?', $project['name']) ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'project', 'enable', array('project_id' => $project['id'], 'enable' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'show', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/project_events.php b/app/Templates/project_events.php deleted file mode 100644 index 1b606414..00000000 --- a/app/Templates/project_events.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php if (empty($events)): ?> - <p class="alert"><?= t('No activity.') ?></p> -<?php else: ?> - - <?php foreach ($events as $event): ?> - <div class="activity-event"> - <p class="activity-datetime"> - <?php if (Helper\contains($event['event_name'], 'subtask')): ?> - <i class="fa fa-tasks"></i> - <?php elseif (Helper\contains($event['event_name'], 'task')): ?> - <i class="fa fa-newspaper-o"></i> - <?php elseif (Helper\contains($event['event_name'], 'comment')): ?> - <i class="fa fa-comments-o"></i> - <?php endif ?> - <?= dt('%B %e, %Y at %k:%M %p', $event['date_creation']) ?> - </p> - <div class="activity-content"><?= $event['event_content'] ?></div> - </div> - <?php endforeach ?> - -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/project_export.php b/app/Templates/project_export.php deleted file mode 100644 index 02eb389f..00000000 --- a/app/Templates/project_export.php +++ /dev/null @@ -1,24 +0,0 @@ -<div class="page-header"> - <h2> - <?= t('Tasks exportation for "%s"', $project['name']) ?> - </h2> -</div> - -<form method="get" action="?" autocomplete="off"> - - <?= Helper\form_hidden('controller', $values) ?> - <?= Helper\form_hidden('action', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Start Date'), 'from') ?> - <?= Helper\form_text('from', $values, $errors, array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?><br/> - - <?= Helper\form_label(t('End Date'), 'to') ?> - <?= Helper\form_text('to', $values, $errors, array('required', 'placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?> - - <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Execute') ?>" class="btn btn-blue"/> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/project_feed.php b/app/Templates/project_feed.php deleted file mode 100644 index 9d10ecb1..00000000 --- a/app/Templates/project_feed.php +++ /dev/null @@ -1,27 +0,0 @@ -<?= '<?xml version="1.0" encoding="utf-8"?>' ?> -<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom"> - <title><?= t('%s\'s activity', $project['name']) ?></title> - <link rel="alternate" type="text/html" href="<?= Helper\get_current_base_url() ?>"/> - <link rel="self" type="application/atom+xml" href="<?= Helper\get_current_base_url().Helper\u('project', 'feed', array('token' => $project['token'])) ?>"/> - <updated><?= date(DATE_ATOM) ?></updated> - <id><?= Helper\get_current_base_url() ?></id> - <icon><?= Helper\get_current_base_url() ?>assets/img/favicon.png</icon> - - <?php foreach ($events as $e): ?> - <entry> - <title type="text"><?= $e['event_title'] ?></title> - <link rel="alternate" href="<?= Helper\get_current_base_url().Helper\u('task', 'show', array('task_id' => $e['task_id'])) ?>"/> - <id><?= $e['id'].'-'.$e['event_name'].'-'.$e['task_id'].'-'.$e['date_creation'] ?></id> - <published><?= date(DATE_ATOM, $e['date_creation']) ?></published> - <updated><?= date(DATE_ATOM, $e['date_creation']) ?></updated> - <author> - <name><?= Helper\escape($e['author']) ?></name> - </author> - <content type="html"> - <![CDATA[ - <?= $e['event_content'] ?> - ]]> - </content> - </entry> - <?php endforeach ?> -</feed>
\ No newline at end of file diff --git a/app/Templates/project_index.php b/app/Templates/project_index.php deleted file mode 100644 index b575e958..00000000 --- a/app/Templates/project_index.php +++ /dev/null @@ -1,49 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Projects') ?><span id="page-counter"> (<?= $nb_projects ?>)</span></h2> - <ul> - <?php if (Helper\is_admin()): ?> - <li><?= Helper\a(t('New project'), 'project', 'create') ?></li> - <?php endif ?> - <li><?= Helper\a(t('New private project'), 'project', 'create', array('private' => 1)) ?></li> - </ul> - </div> - <section> - <?php if (empty($active_projects) && empty($inactive_projects)): ?> - <p class="alert"><?= t('No project') ?></p> - <?php else: ?> - - <?php if (! empty($active_projects)): ?> - <h3><?= t('Active projects') ?></h3> - <ul class="project-listing"> - <?php foreach ($active_projects as $project): ?> - <li> - <?php if ($project['is_public']): ?> - <i class="fa fa-share-alt fa-fw"></i> - <?php endif ?> - <?php if ($project['is_private']): ?> - <i class="fa fa-lock fa-fw"></i> - <?php endif ?> - <?= Helper\a(Helper\escape($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?> - </li> - <?php endforeach ?> - </ul> - <?php endif ?> - - <?php if (! empty($inactive_projects)): ?> - <h3><?= t('Inactive projects') ?></h3> - <ul class="project-listing"> - <?php foreach ($inactive_projects as $project): ?> - <li> - <?php if ($project['is_private']): ?> - <i class="fa fa-lock"></i> - <?php endif ?> - <?= Helper\a(Helper\escape($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?> - </li> - <?php endforeach ?> - </ul> - <?php endif ?> - - <?php endif ?> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_layout.php b/app/Templates/project_layout.php deleted file mode 100644 index d69bbd53..00000000 --- a/app/Templates/project_layout.php +++ /dev/null @@ -1,17 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Project "%s"', $project['name']) ?> (#<?= $project['id'] ?>)</h2> - <ul> - <li><?= Helper\a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('All projects'), 'project', 'index') ?></li> - </ul> - </div> - <section class="project-show" id="project-section"> - - <?= Helper\template('project_sidebar', array('project' => $project)) ?> - - <div class="project-show-main"> - <?= $project_content_for_layout ?> - </div> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_new.php b/app/Templates/project_new.php deleted file mode 100644 index e1ea5af7..00000000 --- a/app/Templates/project_new.php +++ /dev/null @@ -1,22 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= empty($values['is_private']) ? t('New project') : t('New private project') ?></h2> - <ul> - <li><?= Helper\a(t('All projects'), 'project', 'index') ?></li> - </ul> - </div> - <section> - <form method="post" action="<?= Helper\u('project', 'save') ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('is_private', $values) ?> - <?= Helper\form_label(t('Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors, array('autofocus', 'required')) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'index') ?> - </div> - </form> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_remove.php b/app/Templates/project_remove.php deleted file mode 100644 index a98f94eb..00000000 --- a/app/Templates/project_remove.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove project') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this project: "%s"?', $project['name']) ?> - </p> - - <div class="form-actions"> - <?= Helper\a(t('Yes'), 'project', 'remove', array('project_id' => $project['id'], 'remove' => 'yes'), true, 'btn btn-red') ?> - <?= t('or') ?> <?= Helper\a(t('cancel'), 'project', 'show', array('project_id' => $project['id'])) ?> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/project_search.php b/app/Templates/project_search.php deleted file mode 100644 index 7d5d8795..00000000 --- a/app/Templates/project_search.php +++ /dev/null @@ -1,37 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2> - <?= t('Search in the project "%s"', $project['name']) ?> - <?php if (! empty($nb_tasks)): ?> - <span id="page-counter"> (<?= $nb_tasks ?>)</span> - <?php endif ?> - </h2> - <ul> - <li><?= Helper\a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('Activity'), 'project', 'activity', array('project_id' => $project['id'])) ?></li> - <li><?= Helper\a(t('List of projects'), 'project', 'index') ?></li> - </ul> - </div> - <section> - <form method="get" action="?" autocomplete="off"> - <?= Helper\form_hidden('controller', $values) ?> - <?= Helper\form_hidden('action', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - <?= Helper\form_text('search', $values, array(), array('autofocus', 'required', 'placeholder="'.t('Search').'"')) ?> - <input type="submit" value="<?= t('Search') ?>" class="btn btn-blue"/> - </form> - - <?php if (empty($tasks) && ! empty($values['search'])): ?> - <p class="alert"><?= t('Nothing found.') ?></p> - <?php elseif (! empty($tasks)): ?> - <?= Helper\template('task_table', array( - 'tasks' => $tasks, - 'categories' => $categories, - 'columns' => $columns, - 'pagination' => $pagination, - )) ?> - <?php endif ?> - - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_share.php b/app/Templates/project_share.php deleted file mode 100644 index 8edcbbc0..00000000 --- a/app/Templates/project_share.php +++ /dev/null @@ -1,19 +0,0 @@ -<div class="page-header"> - <h2><?= t('Public access') ?></h2> -</div> - -<?php if ($project['is_public']): ?> - - <div class="listing"> - <ul class="no-bullet"> - <li><strong><i class="fa fa-share-alt"></i> <?= Helper\a(t('Public link'), 'board', 'readonly', array('token' => $project['token'])) ?></strong></li> - <li><strong><i class="fa fa-rss-square"></i> <?= Helper\a(t('RSS feed'), 'project', 'feed', array('token' => $project['token'])) ?></strong></li> - </ul> - <input type="text" readonly="readonly" value="<?= Helper\get_current_base_url().Helper\u('board', 'readonly', array('token' => $project['token'])) ?>"/> - </div> - - <?= Helper\a(t('Disable public access'), 'project', 'share', array('project_id' => $project['id'], 'switch' => 'disable'), true, 'btn btn-red') ?> - -<?php else: ?> - <?= Helper\a(t('Enable public access'), 'project', 'share', array('project_id' => $project['id'], 'switch' => 'enable'), true, 'btn btn-blue') ?> -<?php endif ?> diff --git a/app/Templates/project_show.php b/app/Templates/project_show.php deleted file mode 100644 index facdc60a..00000000 --- a/app/Templates/project_show.php +++ /dev/null @@ -1,55 +0,0 @@ -<div class="page-header"> - <h2><?= t('Summary') ?></h2> -</div> -<ul class="listing"> - <li><strong><?= $project['is_active'] ? t('Active') : t('Inactive') ?></strong></li> - - <?php if ($project['is_private']): ?> - <li><i class="fa fa-lock"></i> <?= t('This project is private') ?></li> - <?php endif ?> - - <?php if ($project['is_public']): ?> - <li><i class="fa fa-share-alt"></i> <?= Helper\a(t('Public link'), 'board', 'readonly', array('token' => $project['token'])) ?></li> - <li><i class="fa fa-rss-square"></i> <?= Helper\a(t('RSS feed'), 'project', 'feed', array('token' => $project['token'])) ?></li> - <?php else: ?> - <li><?= t('Public access disabled') ?></li> - <?php endif ?> - - <?php if ($project['last_modified']): ?> - <li><?= dt('Last modified on %B %e, %Y at %k:%M %p', $project['last_modified']) ?></li> - <?php endif ?> - - <?php if ($stats['nb_tasks'] > 0): ?> - - <?php if ($stats['nb_active_tasks'] > 0): ?> - <li><?= Helper\a(t('%d tasks on the board', $stats['nb_active_tasks']), 'board', 'show', array('project_id' => $project['id'])) ?></li> - <?php endif ?> - - <?php if ($stats['nb_inactive_tasks'] > 0): ?> - <li><?= Helper\a(t('%d closed tasks', $stats['nb_inactive_tasks']), 'project', 'tasks', array('project_id' => $project['id'])) ?></li> - <?php endif ?> - - <li><?= t('%d tasks in total', $stats['nb_tasks']) ?></li> - - <?php else: ?> - <li><?= t('No task for this project') ?></li> - <?php endif ?> -</ul> - -<div class="page-header"> - <h2><?= t('Board') ?></h2> -</div> -<table class="table-stripped"> - <tr> - <th width="50%"><?= t('Column') ?></th> - <th><?= t('Task limit') ?></th> - <th><?= t('Active tasks') ?></th> - </tr> - <?php foreach ($stats['columns'] as $column): ?> - <tr> - <td><?= Helper\escape($column['title']) ?></td> - <td><?= $column['task_limit'] ?: '∞' ?></td> - <td><?= $column['nb_active_tasks'] ?></td> - </tr> - <?php endforeach ?> -</table> diff --git a/app/Templates/project_sidebar.php b/app/Templates/project_sidebar.php deleted file mode 100644 index 7bad1f0e..00000000 --- a/app/Templates/project_sidebar.php +++ /dev/null @@ -1,49 +0,0 @@ -<div class="project-show-sidebar"> - <h2><?= t('Actions') ?></h2> - <div class="project-show-actions"> - <ul> - <li> - <a href="?controller=project&action=show&project_id=<?= $project['id'] ?>"><?= t('Summary') ?></a> - </li> - - <?php if (Helper\is_admin() || $project['is_private']): ?> - <li> - <a href="?controller=project&action=export&project_id=<?= $project['id'] ?>"><?= t('Tasks Export') ?></a> - </li> - <li> - <a href="?controller=project&action=share&project_id=<?= $project['id'] ?>"><?= t('Public access') ?></a> - </li> - <li> - <a href="?controller=project&action=edit&project_id=<?= $project['id'] ?>"><?= t('Edit project') ?></a> - </li> - <li> - <a href="?controller=board&action=edit&project_id=<?= $project['id'] ?>"><?= t('Edit board') ?></a> - </li> - <li> - <a href="?controller=category&action=index&project_id=<?= $project['id'] ?>"><?= t('Category management') ?></a> - </li> - <?php if (Helper\is_admin()): ?> - <li> - <a href="?controller=project&action=users&project_id=<?= $project['id'] ?>"><?= t('User management') ?></a> - </li> - <?php endif ?> - <li> - <a href="?controller=action&action=index&project_id=<?= $project['id'] ?>"><?= t('Automatic actions') ?></a> - </li> - <li> - <a href="?controller=project&action=duplicate&project_id=<?= $project['id'].Helper\param_csrf() ?>"><?= t('Duplicate') ?></a> - </li> - <li> - <?php if ($project['is_active']): ?> - <a href="?controller=project&action=disable&project_id=<?= $project['id'].Helper\param_csrf() ?>"><?= t('Disable') ?></a> - <?php else: ?> - <a href="?controller=project&action=enable&project_id=<?= $project['id'].Helper\param_csrf() ?>"><?= t('Enable') ?></a> - <?php endif ?> - </li> - <li> - <a href="?controller=project&action=remove&project_id=<?= $project['id'] ?>"><?= t('Remove') ?></a> - </li> - <?php endif ?> - </ul> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/project_tasks.php b/app/Templates/project_tasks.php deleted file mode 100644 index 7b6f2d9c..00000000 --- a/app/Templates/project_tasks.php +++ /dev/null @@ -1,23 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Completed tasks for "%s"', $project['name']) ?><span id="page-counter"> (<?= $nb_tasks ?>)</span></h2> - <ul> - <li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('Back to the board') ?></a></li> - <li><a href="?controller=project&action=search&project_id=<?= $project['id'] ?>"><?= t('Search') ?></a></li> - <li><a href="?controller=project&action=activity&project_id=<?= $project['id'] ?>"><?= t('Activity') ?></a></li> - <li><a href="?controller=project&action=index"><?= t('List of projects') ?></a></li> - </ul> - </div> - <section> - <?php if (empty($tasks)): ?> - <p class="alert"><?= t('No task') ?></p> - <?php else: ?> - <?= Helper\template('task_table', array( - 'tasks' => $tasks, - 'categories' => $categories, - 'columns' => $columns, - 'pagination' => $pagination, - )) ?> - <?php endif ?> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/project_users.php b/app/Templates/project_users.php deleted file mode 100644 index 35079df6..00000000 --- a/app/Templates/project_users.php +++ /dev/null @@ -1,57 +0,0 @@ -<div class="page-header"> - <h2><?= t('List of authorized users') ?></h2> -</div> - -<?php if ($project['is_everybody_allowed']): ?> - <div class="alert alert-info"><?= t('Everybody have access to this project.') ?></div> -<?php else: ?> - - <?php if (empty($users['allowed'])): ?> - <div class="alert alert-error"><?= t('Nobody have access to this project.') ?></div> - <?php else: ?> - <div class="listing"> - <p><?= t('Only those users have access to this project:') ?></p> - <ul> - <?php foreach ($users['allowed'] as $user_id => $username): ?> - <li> - <strong><?= Helper\escape($username) ?></strong> - <?php if ($project['is_private'] == 0): ?> - (<?= Helper\a(t('revoke'), 'project', 'revoke', array('project_id' => $project['id'], 'user_id' => $user_id), true) ?>) - <?php endif ?> - </li> - <?php endforeach ?> - </ul> - <p><?= t('Don\'t forget that administrators have access to everything.') ?></p> - </div> - <?php endif ?> - - <?php if ($project['is_private'] == 0 && ! empty($users['not_allowed'])): ?> - <form method="post" action="<?= Helper\u('project', 'allow', array('project_id' => $project['id'])) ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('project_id', array('project_id' => $project['id'])) ?> - - <?= Helper\form_label(t('User'), 'user_id') ?> - <?= Helper\form_select('user_id', $users['not_allowed']) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Allow this user') ?>" class="btn btn-blue"/> - </div> - </form> - <?php endif ?> - -<?php endif ?> - -<?php if ($project['is_private'] == 0): ?> -<form method="post" action="<?= Helper\u('project', 'allowEverybody', array('project_id' => $project['id'])) ?>"> - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', array('id' => $project['id'])) ?> - <?= Helper\form_checkbox('is_everybody_allowed', t('Allow everybody to access to this project'), 1, $project['is_everybody_allowed']) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - </div> -</form> -<?php endif ?> diff --git a/app/Templates/subtask_create.php b/app/Templates/subtask_create.php deleted file mode 100644 index c8ee556b..00000000 --- a/app/Templates/subtask_create.php +++ /dev/null @@ -1,27 +0,0 @@ -<div class="page-header"> - <h2><?= t('Add a sub-task') ?></h2> -</div> - -<form method="post" action="?controller=subtask&action=save&task_id=<?= $task['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('task_id', $values) ?> - - <?= Helper\form_label(t('Title'), 'title') ?> - <?= Helper\form_text('title', $values, $errors, array('required autofocus')) ?><br/> - - <?= Helper\form_label(t('Assignee'), 'user_id') ?> - <?= Helper\form_select('user_id', $users_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Original estimate'), 'time_estimated') ?> - <?= Helper\form_numeric('time_estimated', $values, $errors) ?> <?= t('hours') ?><br/> - - <?= Helper\form_checkbox('another_subtask', t('Create another sub-task'), 1, isset($values['another_subtask']) && $values['another_subtask'] == 1) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</form> diff --git a/app/Templates/subtask_edit.php b/app/Templates/subtask_edit.php deleted file mode 100644 index 91690d0a..00000000 --- a/app/Templates/subtask_edit.php +++ /dev/null @@ -1,32 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit a sub-task') ?></h2> -</div> - -<form method="post" action="?controller=subtask&action=update&task_id=<?= $task['id'] ?>&subtask_id=<?= $subtask['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('task_id', $values) ?> - - <?= Helper\form_label(t('Title'), 'title') ?> - <?= Helper\form_text('title', $values, $errors, array('required autofocus')) ?><br/> - - <?= Helper\form_label(t('Status'), 'status') ?> - <?= Helper\form_select('status', $status_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Assignee'), 'user_id') ?> - <?= Helper\form_select('user_id', $users_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Original estimate'), 'time_estimated') ?> - <?= Helper\form_numeric('time_estimated', $values, $errors) ?> <?= t('hours') ?><br/> - - <?= Helper\form_label(t('Time spent'), 'time_spent') ?> - <?= Helper\form_numeric('time_spent', $values, $errors) ?> <?= t('hours') ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</form> diff --git a/app/Templates/subtask_remove.php b/app/Templates/subtask_remove.php deleted file mode 100644 index 12c99cf1..00000000 --- a/app/Templates/subtask_remove.php +++ /dev/null @@ -1,16 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove a sub-task') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this sub-task?') ?> - </p> - - <p><strong><?= Helper\escape($subtask['title']) ?></strong></p> - - <div class="form-actions"> - <a href="?controller=subtask&action=remove&task_id=<?= $task['id'] ?>&subtask_id=<?= $subtask['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>#subtasks"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/subtask_show.php b/app/Templates/subtask_show.php deleted file mode 100644 index f1b0466f..00000000 --- a/app/Templates/subtask_show.php +++ /dev/null @@ -1,72 +0,0 @@ -<?php if (! empty($subtasks)): ?> -<div id="subtasks" class="task-show-section"> - - <div class="page-header"> - <h2><?= t('Sub-Tasks') ?></h2> - </div> - - <table class="subtasks-table"> - <tr> - <th width="40%"><?= t('Title') ?></th> - <th><?= t('Status') ?></th> - <th><?= t('Assignee') ?></th> - <th><?= t('Time tracking') ?></th> - <?php if (! isset($not_editable)): ?> - <th><?= t('Actions') ?></th> - <?php endif ?> - </tr> - <?php foreach ($subtasks as $subtask): ?> - <tr> - <td><?= Helper\escape($subtask['title']) ?></td> - <td> - <?php if (!isset($not_editable)): ?> - <a href="<?= Helper\u('subtask', 'toggleStatus', array('task_id' => $task['id'], 'subtask_id' => $subtask['id'])) ?>"> - <?php endif ?> - <?php if ($subtask['status'] == 0): ?> - <i class="fa fa-square-o fa-fw"></i><i class="fa"> <?= Helper\escape($subtask['status_name']) ?></i> - <?php elseif ($subtask['status'] == 1): ?> - <i class="fa fa-gears fa-fw"></i><i class="fa"> <?= Helper\escape($subtask['status_name']) ?></i> - <?php else: ?> - <i class="fa fa-check-square-o fa-fw"></i><i class="fa"> <?= Helper\escape($subtask['status_name']) ?></i> - <?php endif ?> - <?php if (! isset($not_editable)): ?> - </a> - <?php endif ?> - </td> - - <td> - <?php if (! empty($subtask['username'])): ?> - <?= Helper\escape($subtask['name'] ?: $subtask['username']) ?> - <?php endif ?> - </td> - <td> - <?php if (! empty($subtask['time_spent'])): ?> - <strong><?= Helper\escape($subtask['time_spent']).'h' ?></strong> <?= t('spent') ?> - <?php endif ?> - - <?php if (! empty($subtask['time_estimated'])): ?> - <strong><?= Helper\escape($subtask['time_estimated']).'h' ?></strong> <?= t('estimated') ?> - <?php endif ?> - </td> - <?php if (! isset($not_editable)): ?> - <td> - <?= Helper\a(t('Edit'), 'subtask', 'edit', array('task_id' => $task['id'], 'subtask_id' => $subtask['id'])) ?> - <?= t('or') ?> - <?= Helper\a(t('Remove'), 'subtask', 'confirm', array('task_id' => $task['id'], 'subtask_id' => $subtask['id'])) ?> - </td> - <?php endif ?> - </tr> - <?php endforeach ?> - </table> - - <?php if (! isset($not_editable)): ?> - <form method="post" action="<?= Helper\u('subtask', 'save', array('task_id' => $task['id'])) ?>" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('task_id', array('task_id' => $task['id'])) ?> - <?= Helper\form_text('title', array(), array(), array('required', 'placeholder="'.t('Type here to create a new sub-task').'"')) ?> - <input type="submit" value="<?= t('Add') ?>" class="btn btn-blue"/> - </form> - <?php endif ?> - -</div> -<?php endif ?> diff --git a/app/Templates/task_close.php b/app/Templates/task_close.php deleted file mode 100644 index 2abfd032..00000000 --- a/app/Templates/task_close.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Close a task') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to close this task: "%s"?', Helper\escape($task['title'])) ?> - </p> - - <div class="form-actions"> - <a href="?controller=task&action=close&confirmation=yes&task_id=<?= $task['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/task_comments.php b/app/Templates/task_comments.php deleted file mode 100644 index 5cfa99ce..00000000 --- a/app/Templates/task_comments.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php if (! empty($comments)): ?> -<div id="comments" class="task-show-section"> - <div class="page-header"> - <h2><?= t('Comments') ?></h2> - </div> - - <?php foreach ($comments as $comment): ?> - <?= Helper\template('comment_show', array( - 'comment' => $comment, - 'task' => $task, - 'project' => $project, - 'not_editable' => isset($not_editable) && $not_editable, - 'is_public' => isset($is_public) && $is_public, - )) ?> - <?php endforeach ?> - - <?php if (! isset($not_editable)): ?> - <?= Helper\template('comment_create', array( - 'skip_cancel' => true, - 'values' => array( - 'user_id' => Helper\get_user_id(), - 'task_id' => $task['id'], - ), - 'errors' => array(), - 'task' => $task - )) ?> - <?php endif ?> -</div> -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/task_details.php b/app/Templates/task_details.php deleted file mode 100644 index a4fdf6ce..00000000 --- a/app/Templates/task_details.php +++ /dev/null @@ -1,83 +0,0 @@ -<div class="task-<?= $task['color_id'] ?> task-show-details"> - <h2><?= Helper\escape($task['title']) ?></h2> - <?php if ($task['score']): ?> - <span class="task-score"><?= Helper\escape($task['score']) ?></span> - <?php endif ?> - <ul> - <?php if ($task['reference']): ?> - <li> - <strong><?= t('Reference: %s', $task['reference']) ?></strong> - </li> - <?php endif ?> - <li> - <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> - </li> - <?php if ($task['date_modification']): ?> - <li> - <?= dt('Last modified on %B %e, %Y at %k:%M %p', $task['date_modification']) ?> - </li> - <?php endif ?> - <?php if ($task['date_completed']): ?> - <li> - <?= dt('Completed on %B %e, %Y at %k:%M %p', $task['date_completed']) ?> - </li> - <?php endif ?> - <?php if ($task['date_started']): ?> - <li> - <?= dt('Started on %B %e, %Y', $task['date_started']) ?> - </li> - <?php endif ?> - <?php if ($task['date_due']): ?> - <li> - <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> - </li> - <?php endif ?> - <?php if ($task['time_estimated']): ?> - <li> - <?= t('Estimated time: %s hours', $task['time_estimated']) ?> - </li> - <?php endif ?> - <?php if ($task['time_spent']): ?> - <li> - <?= t('Time spent: %s hours', $task['time_spent']) ?> - </li> - <?php endif ?> - <?php if ($task['creator_username']): ?> - <li> - <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> - </li> - <?php endif ?> - <li> - <strong> - <?php if ($task['assignee_username']): ?> - <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('There is nobody assigned') ?> - <?php endif ?> - </strong> - </li> - <li> - <?= t('Column on the board:') ?> - <strong><?= Helper\escape($task['column_title']) ?></strong> - (<?= Helper\escape($task['project_name']) ?>) - </li> - <li><?= t('Task position:').' '.Helper\escape($task['position']) ?></li> - <?php if ($task['category_name']): ?> - <li> - <?= t('Category:') ?> <strong><?= Helper\escape($task['category_name']) ?></strong> - </li> - <?php endif ?> - <li> - <?php if ($task['is_active'] == 1): ?> - <?= t('Status is open') ?> - <?php else: ?> - <?= t('Status is closed') ?> - <?php endif ?> - </li> - <?php if ($project['is_public']): ?> - <li> - <a href="?controller=task&action=readonly&task_id=<?= $task['id'] ?>&token=<?= $project['token'] ?>" target="_blank"><?= t('Public link') ?></a> - </li> - <?php endif ?> - </ul> -</div> diff --git a/app/Templates/task_duplicate.php b/app/Templates/task_duplicate.php deleted file mode 100644 index ef903f1d..00000000 --- a/app/Templates/task_duplicate.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Duplicate a task') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to duplicate this task?') ?> - </p> - - <div class="form-actions"> - <a href="?controller=task&action=duplicate&confirmation=yes&task_id=<?= $task['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/task_duplicate_project.php b/app/Templates/task_duplicate_project.php deleted file mode 100644 index 86d2114a..00000000 --- a/app/Templates/task_duplicate_project.php +++ /dev/null @@ -1,24 +0,0 @@ -<div class="page-header"> - <h2><?= t('Duplicate the task to another project') ?></h2> -</div> - -<?php if (empty($projects_list)): ?> - <p class="alert"><?= t('No project') ?></p> -<?php else: ?> - - <form method="post" action="?controller=task&action=copy&task_id=<?= $task['id'] ?>&project_id=<?= $task['project_id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_label(t('Project'), 'project_id') ?> - <?= Helper\form_select('project_id', $projects_list, $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/task_edit.php b/app/Templates/task_edit.php deleted file mode 100644 index 73e00a31..00000000 --- a/app/Templates/task_edit.php +++ /dev/null @@ -1,51 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit a task') ?></h2> -</div> -<section id="task-section"> -<form method="post" action="?controller=task&action=update&task_id=<?= $task['id'] ?>&ajax=<?= $ajax ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <div class="form-column"> - - <?= Helper\form_label(t('Title'), 'title') ?> - <?= Helper\form_text('title', $values, $errors, array('required')) ?><br/> - - <?= Helper\form_label(t('Description'), 'description') ?> - <?= Helper\form_textarea('description', $values, $errors) ?><br/> - <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> - - </div> - - <div class="form-column"> - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Assignee'), 'owner_id') ?> - <?= Helper\form_select('owner_id', $users_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Category'), 'category_id') ?> - <?= Helper\form_select('category_id', $categories_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Color'), 'color_id') ?> - <?= Helper\form_select('color_id', $colors_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Complexity'), 'score') ?> - <?= Helper\form_number('score', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Due Date'), 'date_due') ?> - <?= Helper\form_text('date_due', $values, $errors, array('placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?><br/> - <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> - </div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <?php if ($ajax): ?> - <a href="?controller=board&action=show&project_id=<?= $task['project_id'] ?>"><?= t('cancel') ?></a> - <?php else: ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - <?php endif ?> - </div> -</form> -</section> diff --git a/app/Templates/task_edit_description.php b/app/Templates/task_edit_description.php deleted file mode 100644 index 2d2a4d0b..00000000 --- a/app/Templates/task_edit_description.php +++ /dev/null @@ -1,22 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit the description') ?></h2> -</div> - -<form method="post" action="?controller=task&action=description&task_id=<?= $task['id'] ?>&ajax=<?= $ajax ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_textarea('description', $values, $errors, array('autofocus', 'required', 'placeholder="'.t('Leave a description').'"'), 'description-textarea') ?><br/> - <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <?php if ($ajax): ?> - <a href="?controller=board&action=show&project_id=<?= $task['project_id'] ?>"><?= t('cancel') ?></a> - <?php else: ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - <?php endif ?> - </div> -</form> diff --git a/app/Templates/task_layout.php b/app/Templates/task_layout.php deleted file mode 100644 index ca0a413f..00000000 --- a/app/Templates/task_layout.php +++ /dev/null @@ -1,16 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= Helper\escape($task['project_name']) ?> > <?= t('Task #%d', $task['id']) ?></h2> - <ul> - <li><a href="?controller=board&action=show&project_id=<?= $task['project_id'] ?>"><?= t('Back to the board') ?></a></li> - </ul> - </div> - <section class="task-show" id="task-section"> - - <?= Helper\template('task_sidebar', array('task' => $task, 'hide_remove_menu' => isset($hide_remove_menu))) ?> - - <div class="task-show-main"> - <?= $task_content_for_layout ?> - </div> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/task_move_project.php b/app/Templates/task_move_project.php deleted file mode 100644 index 3bc3bcb8..00000000 --- a/app/Templates/task_move_project.php +++ /dev/null @@ -1,24 +0,0 @@ -<div class="page-header"> - <h2><?= t('Move the task to another project') ?></h2> -</div> - -<?php if (empty($projects_list)): ?> - <p class="alert"><?= t('No project') ?></p> -<?php else: ?> - - <form method="post" action="?controller=task&action=move&task_id=<?= $task['id'] ?>&project_id=<?= $task['project_id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_label(t('Project'), 'project_id') ?> - <?= Helper\form_select('project_id', $projects_list, $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/task_new.php b/app/Templates/task_new.php deleted file mode 100644 index 51142165..00000000 --- a/app/Templates/task_new.php +++ /dev/null @@ -1,55 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('New task') ?></h2> - </div> - <section id="task-section"> - <form method="post" action="?controller=task&action=save" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <div class="form-column"> - <?= Helper\form_label(t('Title'), 'title') ?> - <?= Helper\form_text('title', $values, $errors, array('autofocus', 'required')) ?><br/> - - <?= Helper\form_label(t('Description'), 'description') ?> - <?= Helper\form_textarea('description', $values, $errors) ?><br/> - <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> - - <?php if (! isset($duplicate)): ?> - <?= Helper\form_checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> - <?php endif ?> - </div> - - <div class="form-column"> - <?= Helper\form_hidden('project_id', $values) ?> - - <?= Helper\form_label(t('Assignee'), 'owner_id') ?> - <?= Helper\form_select('owner_id', $users_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Category'), 'category_id') ?> - <?= Helper\form_select('category_id', $categories_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Column'), 'column_id') ?> - <?= Helper\form_select('column_id', $columns_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Color'), 'color_id') ?> - <?= Helper\form_select('color_id', $colors_list, $values, $errors) ?><br/> - - <?= Helper\form_label(t('Complexity'), 'score') ?> - <?= Helper\form_number('score', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Original estimate'), 'time_estimated') ?> - <?= Helper\form_numeric('time_estimated', $values, $errors) ?> <?= t('hours') ?><br/> - - <?= Helper\form_label(t('Due Date'), 'date_due') ?> - <?= Helper\form_text('date_due', $values, $errors, array('placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?><br/> - <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div> - </div> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=board&action=show&project_id=<?= $values['project_id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/task_open.php b/app/Templates/task_open.php deleted file mode 100644 index d28970e3..00000000 --- a/app/Templates/task_open.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Open a task') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to open this task: "%s"?', Helper\escape($task['title'])) ?> - </p> - - <div class="form-actions"> - <a href="?controller=task&action=open&confirmation=yes&task_id=<?= $task['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/task_public.php b/app/Templates/task_public.php deleted file mode 100644 index 13fef1ed..00000000 --- a/app/Templates/task_public.php +++ /dev/null @@ -1,27 +0,0 @@ -<section id="main" class="public-task"> - - <?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?> - - <p class="pull-right"><?= Helper\a(t('Back to the board'), 'board', 'readonly', array('token' => $project['token'])) ?></p> - - <?= Helper\template('task_show_description', array( - 'task' => $task, - 'project' => $project, - 'is_public' => true - )) ?> - - <?= Helper\template('subtask_show', array( - 'task' => $task, - 'subtasks' => $subtasks, - 'not_editable' => true - )) ?> - - <?= Helper\template('task_comments', array( - 'task' => $task, - 'comments' => $comments, - 'project' => $project, - 'not_editable' => true, - 'is_public' => true, - )) ?> - -</section>
\ No newline at end of file diff --git a/app/Templates/task_remove.php b/app/Templates/task_remove.php deleted file mode 100644 index 496ac2d8..00000000 --- a/app/Templates/task_remove.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove a task') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"> - <?= t('Do you really want to remove this task: "%s"?', Helper\escape($task['title'])) ?> - </p> - - <div class="form-actions"> - <a href="?controller=task&action=remove&confirmation=yes&task_id=<?= $task['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/task_show.php b/app/Templates/task_show.php deleted file mode 100644 index ec5d5da4..00000000 --- a/app/Templates/task_show.php +++ /dev/null @@ -1,7 +0,0 @@ -<?= Helper\template('task_details', array('task' => $task, 'project' => $project)) ?> -<?= Helper\template('task_time', array('values' => $values, 'date_format' => $date_format, 'date_formats' => $date_formats)) ?> -<?= Helper\template('task_show_description', array('task' => $task)) ?> -<?= Helper\template('subtask_show', array('task' => $task, 'subtasks' => $subtasks)) ?> -<?= Helper\template('task_timesheet', array('timesheet' => $timesheet)) ?> -<?= Helper\template('file_show', array('task' => $task, 'files' => $files)) ?> -<?= Helper\template('task_comments', array('task' => $task, 'comments' => $comments, 'project' => $project)) ?>
\ No newline at end of file diff --git a/app/Templates/task_show_description.php b/app/Templates/task_show_description.php deleted file mode 100644 index 25312149..00000000 --- a/app/Templates/task_show_description.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php if (! empty($task['description'])): ?> - <div id="description" class="task-show-section"> - <div class="page-header"> - <h2><?= t('Description') ?></h2> - </div> - - <article class="markdown task-show-description"> - <?php if (! isset($is_public)): ?> - <?= Helper\markdown($task['description']) ?> - <?php else: ?> - <?= Helper\markdown( - $task['description'], - array( - 'controller' => 'task', - 'action' => 'readonly', - 'params' => array( - 'token' => $project['token'] - ) - ) - ) ?> - <?php endif ?> - </article> - </div> -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/task_sidebar.php b/app/Templates/task_sidebar.php deleted file mode 100644 index 4cffd5fa..00000000 --- a/app/Templates/task_sidebar.php +++ /dev/null @@ -1,26 +0,0 @@ -<div class="task-show-sidebar"> - <h2><?= t('Actions') ?></h2> - <div class="task-show-actions"> - <ul> - <li><a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('Summary') ?></a></li> - <li><a href="?controller=task&action=edit&task_id=<?= $task['id'] ?>"><?= t('Edit the task') ?></a></li> - <li><a href="?controller=task&action=description&task_id=<?= $task['id'] ?>"><?= t('Edit the description') ?></a></li> - <li><a href="?controller=subtask&action=create&task_id=<?= $task['id'] ?>"><?= t('Add a sub-task') ?></a></li> - <li><a href="?controller=comment&action=create&task_id=<?= $task['id'] ?>"><?= t('Add a comment') ?></a></li> - <li><a href="?controller=file&action=create&task_id=<?= $task['id'] ?>"><?= t('Attach a document') ?></a></li> - <li><a href="?controller=task&action=duplicate&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate') ?></a></li> - <li><a href="?controller=task&action=copy&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate to another project') ?></a></li> - <li><a href="?controller=task&action=move&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Move to another project') ?></a></li> - <li> - <?php if ($task['is_active'] == 1): ?> - <a href="?controller=task&action=close&task_id=<?= $task['id'] ?>"><?= t('Close this task') ?></a> - <?php else: ?> - <a href="?controller=task&action=open&task_id=<?= $task['id'] ?>"><?= t('Open this task') ?></a> - <?php endif ?> - </li> - <?php if (! $hide_remove_menu): ?> - <li><a href="?controller=task&action=remove&task_id=<?= $task['id'] ?>"><?= t('Remove') ?></a></li> - <?php endif ?> - </ul> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/task_table.php b/app/Templates/task_table.php deleted file mode 100644 index fa04fa55..00000000 --- a/app/Templates/task_table.php +++ /dev/null @@ -1,56 +0,0 @@ -<table> - <tr> - <th><?= Helper\order(t('Id'), 'tasks.id', $pagination) ?></th> - <th><?= Helper\order(t('Column'), 'tasks.column_id', $pagination) ?></th> - <th><?= Helper\order(t('Category'), 'tasks.category_id', $pagination) ?></th> - <th><?= Helper\order(t('Title'), 'tasks.title', $pagination) ?></th> - <th><?= Helper\order(t('Assignee'), 'users.username', $pagination) ?></th> - <th><?= Helper\order(t('Due date'), 'tasks.date_due', $pagination) ?></th> - <th><?= Helper\order(t('Date created'), 'tasks.date_creation', $pagination) ?></th> - <th><?= Helper\order(t('Date completed'), 'tasks.date_completed', $pagination) ?></th> - <th><?= Helper\order(t('Status'), 'tasks.is_active', $pagination) ?></th> - </tr> - <?php foreach ($tasks as $task): ?> - <tr> - <td class="task-table task-<?= $task['color_id'] ?>"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>">#<?= Helper\escape($task['id']) ?></a> - </td> - <td> - <?= Helper\in_list($task['column_id'], $columns) ?> - </td> - <td> - <?= Helper\in_list($task['category_id'], $categories, '') ?> - </td> - <td> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> - </td> - <td> - <?php if ($task['assignee_username']): ?> - <?= Helper\escape($task['assignee_name'] ?: $task['assignee_username']) ?> - <?php else: ?> - <?= t('Unassigned') ?> - <?php endif ?> - </td> - <td> - <?= dt('%B %e, %Y', $task['date_due']) ?> - </td> - <td> - <?= dt('%B %e, %Y at %k:%M %p', $task['date_creation']) ?> - </td> - <td> - <?php if ($task['date_completed']): ?> - <?= dt('%B %e, %Y at %k:%M %p', $task['date_completed']) ?> - <?php endif ?> - </td> - <td> - <?php if ($task['is_active'] == \Model\Task::STATUS_OPEN): ?> - <?= t('Open') ?> - <?php else: ?> - <?= t('Closed') ?> - <?php endif ?> - </td> - </tr> - <?php endforeach ?> -</table> - -<?= Helper\paginate($pagination) ?> diff --git a/app/Templates/task_time.php b/app/Templates/task_time.php deleted file mode 100644 index 11a76303..00000000 --- a/app/Templates/task_time.php +++ /dev/null @@ -1,15 +0,0 @@ -<form method="post" action="<?= Helper\u('task', 'time', array('task_id' => $values['id'])) ?>" class="form-inline task-time-form" autocomplete="off"> - <?= Helper\form_csrf() ?> - <?= Helper\form_hidden('id', $values) ?> - - <?= Helper\form_label(t('Start date'), 'date_started') ?> - <?= Helper\form_text('date_started', $values, array(), array('placeholder="'.Helper\in_list($date_format, $date_formats).'"'), 'form-date') ?> - - <?= Helper\form_label(t('Time estimated'), 'time_estimated') ?> - <?= Helper\form_numeric('time_estimated', $values, array(), array('placeholder="'.t('hours').'"')) ?> - - <?= Helper\form_label(t('Time spent'), 'time_spent') ?> - <?= Helper\form_numeric('time_spent', $values, array(), array('placeholder="'.t('hours').'"')) ?> - - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> -</form>
\ No newline at end of file diff --git a/app/Templates/task_timesheet.php b/app/Templates/task_timesheet.php deleted file mode 100644 index cd093657..00000000 --- a/app/Templates/task_timesheet.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php if ($timesheet['time_estimated'] > 0 || $timesheet['time_spent'] > 0): ?> - -<div class="page-header"> - <h2><?= t('Time tracking') ?></h2> -</div> - -<ul class="listing"> - <li><?= t('Estimate:') ?> <strong><?= Helper\escape($timesheet['time_estimated']) ?></strong> <?= t('hours') ?></li> - <li><?= t('Spent:') ?> <strong><?= Helper\escape($timesheet['time_spent']) ?></strong> <?= t('hours') ?></li> - <li><?= t('Remaining:') ?> <strong><?= Helper\escape($timesheet['time_remaining']) ?></strong> <?= t('hours') ?></li> -</ul> - -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/user_edit.php b/app/Templates/user_edit.php deleted file mode 100644 index 14063d49..00000000 --- a/app/Templates/user_edit.php +++ /dev/null @@ -1,30 +0,0 @@ -<div class="page-header"> - <h2><?= t('Edit user') ?></h2> -</div> -<form method="post" action="?controller=user&action=edit&user_id=<?= $user['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_hidden('is_ldap_user', $values) ?> - - <?= Helper\form_label(t('Username'), 'username') ?> - <?= Helper\form_text('username', $values, $errors, array('required', $values['is_ldap_user'] == 1 ? 'readonly' : '')) ?><br/> - - <?= Helper\form_label(t('Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Email'), 'email') ?> - <?= Helper\form_email('email', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Default project'), 'default_project_id') ?> - <?= Helper\form_select('default_project_id', $projects, $values, $errors) ?><br/> - - <?php if (Helper\is_admin()): ?> - <?= Helper\form_checkbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?><br/> - <?php endif ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('cancel') ?></a> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/user_external.php b/app/Templates/user_external.php deleted file mode 100644 index 676b2c73..00000000 --- a/app/Templates/user_external.php +++ /dev/null @@ -1,39 +0,0 @@ -<div class="page-header"> - <h2><?= t('External authentications') ?></h2> -</div> - -<?php if (GOOGLE_AUTH): ?> - <h3><i class="fa fa-google"></i> <?= t('Google Account') ?></h3> - - <p class="listing"> - <?php if (Helper\is_current_user($user['id'])): ?> - <?php if (empty($user['google_id'])): ?> - <a href="?controller=user&action=google<?= Helper\param_csrf() ?>"><?= t('Link my Google Account') ?></a> - <?php else: ?> - <a href="?controller=user&action=unlinkGoogle<?= Helper\param_csrf() ?>"><?= t('Unlink my Google Account') ?></a> - <?php endif ?> - <?php else: ?> - <?= empty($user['google_id']) ? t('No account linked.') : t('Account linked.') ?> - <?php endif ?> - </p> -<?php endif ?> - -<?php if (GITHUB_AUTH): ?> - <h3><i class="fa fa-github"></i> <?= t('Github Account') ?></h3> - - <p class="listing"> - <?php if (Helper\is_current_user($user['id'])): ?> - <?php if (empty($user['github_id'])): ?> - <a href="?controller=user&action=gitHub<?= Helper\param_csrf() ?>"><?= t('Link my GitHub Account') ?></a> - <?php else: ?> - <a href="?controller=user&action=unlinkGitHub<?= Helper\param_csrf() ?>"><?= t('Unlink my GitHub Account') ?></a> - <?php endif ?> - <?php else: ?> - <?= empty($user['github_id']) ? t('No account linked.') : t('Account linked.') ?> - <?php endif ?> - </p> -<?php endif ?> - -<?php if (! GOOGLE_AUTH && ! GITHUB_AUTH): ?> - <p class="alert"><?= t('No external authentication enabled.') ?></p> -<?php endif ?> diff --git a/app/Templates/user_index.php b/app/Templates/user_index.php deleted file mode 100644 index d4e1bbf9..00000000 --- a/app/Templates/user_index.php +++ /dev/null @@ -1,71 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('Users') ?><span id="page-counter"> (<?= $nb_users ?>)</span></h2> - <?php if (Helper\is_admin()): ?> - <ul> - <li><a href="?controller=user&action=create"><?= t('New user') ?></a></li> - </ul> - <?php endif ?> - </div> - <section> - <?php if (empty($users)): ?> - <p class="alert"><?= t('No user') ?></p> - <?php else: ?> - <table> - <tr> - <th><?= t('Id') ?></th> - <th><?= t('Username') ?></th> - <th><?= t('Name') ?></th> - <th><?= t('Email') ?></th> - <th><?= t('Administrator') ?></th> - <th><?= t('Default project') ?></th> - <th><?= t('Notifications') ?></th> - <th><?= t('External accounts') ?></th> - <th><?= t('Account type') ?></th> - </tr> - <?php foreach ($users as $user): ?> - <tr> - <td> - <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>">#<?= $user['id'] ?></a> - </td> - <td> - <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= Helper\escape($user['username']) ?></a> - </td> - <td> - <?= Helper\escape($user['name']) ?> - </td> - <td> - <?= Helper\escape($user['email']) ?> - </td> - <td> - <?= $user['is_admin'] ? t('Yes') : t('No') ?> - </td> - <td> - <?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? Helper\escape($projects[$user['default_project_id']]) : t('None'); ?> - </td> - <td> - <?php if ($user['notifications_enabled'] == 1): ?> - <?= t('Enabled') ?> - <?php else: ?> - <?= t('Disabled') ?> - <?php endif ?> - </td> - <td> - <ul class="no-bullet"> - <?php if ($user['google_id']): ?> - <li><i class="fa fa-google"></i> <?= t('Google account linked') ?></li> - <?php endif ?> - <?php if ($user['github_id']): ?> - <li><i class="fa fa-github"></i> <?= t('Github account linked') ?></li> - <?php endif ?> - </ul> - </td> - <td> - <?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?> - </td> - </tr> - <?php endforeach ?> - </table> - <?php endif ?> - </section> -</section> diff --git a/app/Templates/user_last.php b/app/Templates/user_last.php deleted file mode 100644 index 0b55b0d5..00000000 --- a/app/Templates/user_last.php +++ /dev/null @@ -1,24 +0,0 @@ -<div class="page-header"> - <h2><?= t('Last logins') ?></h2> -</div> - -<?php if (empty($last_logins)): ?> - <p class="alert"><?= t('Never connected.') ?></p> -<?php else: ?> - <table class="table-small"> - <tr> - <th><?= t('Login date') ?></th> - <th><?= t('Authentication method') ?></th> - <th><?= t('IP address') ?></th> - <th><?= t('User agent') ?></th> - </tr> - <?php foreach($last_logins as $login): ?> - <tr> - <td><?= dt('%B %e, %Y at %k:%M %p', $login['date_creation']) ?></td> - <td><?= Helper\escape($login['auth_type']) ?></td> - <td><?= Helper\escape($login['ip']) ?></td> - <td><?= Helper\escape(Helper\summary($login['user_agent'])) ?></td> - </tr> - <?php endforeach ?> - </table> -<?php endif ?>
\ No newline at end of file diff --git a/app/Templates/user_layout.php b/app/Templates/user_layout.php deleted file mode 100644 index 7462b3f0..00000000 --- a/app/Templates/user_layout.php +++ /dev/null @@ -1,19 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= Helper\escape($user['name'] ?: $user['username']).' (#'.$user['id'].')' ?></h2> - <?php if (Helper\is_admin()): ?> - <ul> - <li><a href="?controller=user&action=index"><?= t('All users') ?></a></li> - <li><a href="?controller=user&action=create"><?= t('New user') ?></a></li> - </ul> - <?php endif ?> - </div> - <section class="user-show" id="user-section"> - - <?= Helper\template('user_sidebar', array('user' => $user)) ?> - - <div class="user-show-main"> - <?= $user_content_for_layout ?> - </div> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/user_login.php b/app/Templates/user_login.php deleted file mode 100644 index cf92cd4d..00000000 --- a/app/Templates/user_login.php +++ /dev/null @@ -1,42 +0,0 @@ -<div class="form-login"> - - <div class="page-header"> - <h1><?= t('Sign in') ?></h1> - </div> - - <?php if (isset($errors['login'])): ?> - <p class="alert alert-error"><?= Helper\escape($errors['login']) ?></p> - <?php endif ?> - - <form method="post" action="?controller=user&action=check&redirect_query=<?= urlencode($redirect_query) ?>"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Username'), 'username') ?> - <?= Helper\form_text('username', $values, $errors, array('autofocus', 'required')) ?><br/> - - <?= Helper\form_label(t('Password'), 'password') ?> - <?= Helper\form_password('password', $values, $errors, array('required')) ?> - - <?= Helper\form_checkbox('remember_me', t('Remember Me'), 1) ?><br/> - - <ul> - <?php if (GOOGLE_AUTH): ?> - <li> - <a href="?controller=user&action=google"><?= t('Login with my Google Account') ?></a> - </li> - <?php endif ?> - - <?php if (GITHUB_AUTH): ?> - <li> - <a href="?controller=user&action=gitHub"><?= t('Login with my GitHub Account') ?></a> - </li> - <?php endif ?> - </ul> - - <div class="form-actions"> - <input type="submit" value="<?= t('Sign in') ?>" class="btn btn-blue"/> - </div> - </form> - -</div>
\ No newline at end of file diff --git a/app/Templates/user_new.php b/app/Templates/user_new.php deleted file mode 100644 index 158813cb..00000000 --- a/app/Templates/user_new.php +++ /dev/null @@ -1,39 +0,0 @@ -<section id="main"> - <div class="page-header"> - <h2><?= t('New user') ?></h2> - <ul> - <li><a href="?controller=user"><?= t('All users') ?></a></li> - </ul> - </div> - <section> - <form method="post" action="?controller=user&action=save" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Username'), 'username') ?> - <?= Helper\form_text('username', $values, $errors, array('autofocus', 'required')) ?><br/> - - <?= Helper\form_label(t('Name'), 'name') ?> - <?= Helper\form_text('name', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Email'), 'email') ?> - <?= Helper\form_email('email', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Password'), 'password') ?> - <?= Helper\form_password('password', $values, $errors, array('required')) ?><br/> - - <?= Helper\form_label(t('Confirmation'), 'confirmation') ?> - <?= Helper\form_password('confirmation', $values, $errors, array('required')) ?><br/> - - <?= Helper\form_label(t('Default project'), 'default_project_id') ?> - <?= Helper\form_select('default_project_id', $projects, $values, $errors) ?><br/> - - <?= Helper\form_checkbox('is_admin', t('Administrator'), 1, isset($values['is_admin']) && $values['is_admin'] == 1 ? true : false) ?> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=user"><?= t('cancel') ?></a> - </div> - </form> - </section> -</section>
\ No newline at end of file diff --git a/app/Templates/user_notifications.php b/app/Templates/user_notifications.php deleted file mode 100644 index 13dd9809..00000000 --- a/app/Templates/user_notifications.php +++ /dev/null @@ -1,22 +0,0 @@ -<div class="page-header"> - <h2><?= t('Email notifications') ?></h2> -</div> - -<form method="post" action="?controller=user&action=notifications&user_id=<?= $user['id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_checkbox('notifications_enabled', t('Enable email notifications'), '1', $notifications['notifications_enabled'] == 1) ?><br/> - - <p><?= t('I want to receive notifications only for those projects:') ?><br/><br/></p> - - <div class="form-checkbox-group"> - <?php foreach ($projects as $project_id => $project_name): ?> - <?= Helper\form_checkbox('projects['.$project_id.']', $project_name, '1', isset($notifications['project_'.$project_id])) ?> - <?php endforeach ?> - </div> - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('cancel') ?></a> - </div> -</form>
\ No newline at end of file diff --git a/app/Templates/user_password.php b/app/Templates/user_password.php deleted file mode 100644 index 5da38595..00000000 --- a/app/Templates/user_password.php +++ /dev/null @@ -1,23 +0,0 @@ -<div class="page-header"> - <h2><?= t('Password modification') ?></h2> -</div> - -<form method="post" action="?controller=user&action=password&user_id=<?= $user['id'] ?>" autocomplete="off"> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_csrf() ?> - - <?= Helper\form_label(t('Current password for the user "%s"', Helper\get_username()), 'current_password') ?> - <?= Helper\form_password('current_password', $values, $errors) ?><br/> - - <?= Helper\form_label(t('New password for the user "%s"', Helper\get_username($user)), 'password') ?> - <?= Helper\form_password('password', $values, $errors) ?><br/> - - <?= Helper\form_label(t('Confirmation'), 'confirmation') ?> - <?= Helper\form_password('confirmation', $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('cancel') ?></a> - </div> - -</form>
\ No newline at end of file diff --git a/app/Templates/user_remove.php b/app/Templates/user_remove.php deleted file mode 100644 index c20ccbba..00000000 --- a/app/Templates/user_remove.php +++ /dev/null @@ -1,12 +0,0 @@ -<div class="page-header"> - <h2><?= t('Remove user') ?></h2> -</div> - -<div class="confirm"> - <p class="alert alert-info"><?= t('Do you really want to remove this user: "%s"?', $user['name'] ?: $user['username']) ?></p> - - <div class="form-actions"> - <a href="?controller=user&action=remove&confirmation=yes&user_id=<?= $user['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a> - <?= t('or') ?> <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('cancel') ?></a> - </div> -</div>
\ No newline at end of file diff --git a/app/Templates/user_sessions.php b/app/Templates/user_sessions.php deleted file mode 100644 index b647d726..00000000 --- a/app/Templates/user_sessions.php +++ /dev/null @@ -1,26 +0,0 @@ -<div class="page-header"> - <h2><?= t('Persistent connections') ?></h2> -</div> - -<?php if (empty($sessions)): ?> - <p class="alert"><?= t('No session.') ?></p> -<?php else: ?> - <table class="table-small"> - <tr> - <th><?= t('Creation date') ?></th> - <th><?= t('Expiration date') ?></th> - <th><?= t('IP address') ?></th> - <th><?= t('User agent') ?></th> - <th><?= t('Action') ?></th> - </tr> - <?php foreach($sessions as $session): ?> - <tr> - <td><?= dt('%B %e, %Y at %k:%M %p', $session['date_creation']) ?></td> - <td><?= dt('%B %e, %Y at %k:%M %p', $session['expiration']) ?></td> - <td><?= Helper\escape($session['ip']) ?></td> - <td><?= Helper\escape(Helper\summary($session['user_agent'])) ?></td> - <td><a href="?controller=user&action=removeSession&user_id=<?= $user['id'] ?>&id=<?= $session['id'].Helper\param_csrf() ?>"><?= t('Remove') ?></a></td> - </tr> - <?php endforeach ?> - </table> -<?php endif ?> diff --git a/app/Templates/user_show.php b/app/Templates/user_show.php deleted file mode 100644 index 1c843751..00000000 --- a/app/Templates/user_show.php +++ /dev/null @@ -1,12 +0,0 @@ -<div class="page-header"> - <h2><?= t('Summary') ?></h2> -</div> -<ul class="listing"> - <li><?= t('Username:') ?> <strong><?= Helper\escape($user['username']) ?></strong></li> - <li><?= t('Name:') ?> <strong><?= Helper\escape($user['name']) ?></strong></li> - <li><?= t('Email:') ?> <strong><?= Helper\escape($user['email']) ?></strong></li> - <li><?= t('Default project:') ?> <strong><?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? Helper\escape($projects[$user['default_project_id']]) : t('None'); ?></strong></li> - <li><?= t('Notifications:') ?> <strong><?= $user['notifications_enabled'] == 1 ? t('Enabled') : t('Disabled') ?></strong></li> - <li><?= t('Group:') ?> <strong><?= $user['is_admin'] ? t('Administrator') : t('Regular user') ?></strong></li> - <li><?= t('Account type:') ?> <strong><?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?></strong></li> -</ul> diff --git a/app/Templates/user_sidebar.php b/app/Templates/user_sidebar.php deleted file mode 100644 index 9d8f8b46..00000000 --- a/app/Templates/user_sidebar.php +++ /dev/null @@ -1,42 +0,0 @@ -<div class="project-show-sidebar"> - <h2><?= t('Actions') ?></h2> - <div class="user-show-actions"> - <ul> - <li> - <a href="?controller=user&action=show&user_id=<?= $user['id'] ?>"><?= t('Summary') ?></a> - </li> - - <?php if (Helper\is_admin() || Helper\is_current_user($user['id'])): ?> - <li> - <a href="?controller=user&action=edit&user_id=<?= $user['id'] ?>"><?= t('Edit profile') ?></a> - </li> - - <?php if ($user['is_ldap_user'] == 0): ?> - <li> - <a href="?controller=user&action=password&user_id=<?= $user['id'] ?>"><?= t('Change password') ?></a> - </li> - <?php endif ?> - - <li> - <a href="?controller=user&action=notifications&user_id=<?= $user['id'] ?>"><?= t('Email notifications') ?></a> - </li> - <li> - <a href="?controller=user&action=external&user_id=<?= $user['id'] ?>"><?= t('External accounts') ?></a> - </li> - <li> - <a href="?controller=user&action=last&user_id=<?= $user['id'] ?>"><?= t('Last logins') ?></a> - </li> - <li> - <a href="?controller=user&action=sessions&user_id=<?= $user['id'] ?>"><?= t('Persistent connections') ?></a> - </li> - <?php endif ?> - - <?php if (Helper\is_admin()): ?> - <li> - <a href="?controller=user&action=remove&user_id=<?= $user['id'] ?>"><?= t('Remove') ?></a> - </li> - <?php endif ?> - - </ul> - </div> -</div>
\ No newline at end of file |