summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
commit9fb2e711899ae328a7a09295468793ffbc16c27c (patch)
tree1efba503386d939c61767f8fbbf006dcfdcd6a34 /app/Controller
parent8a02ceb40e88c27777a95251083bc21629d62bb0 (diff)
Move tasks templates to a subfolder
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Base.php2
-rw-r--r--app/Controller/Task.php28
2 files changed, 15 insertions, 15 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php
index 9f799a8f..5027cf31 100644
--- a/app/Controller/Base.php
+++ b/app/Controller/Base.php
@@ -282,7 +282,7 @@ abstract class Base
$params['title'] = $params['task']['project_name'].' &gt; '.$params['task']['title'];
$params['board_selector'] = $this->projectPermission->getAllowedProjects($this->acl->getUserId());
- return $this->template->layout('task_layout', $params);
+ return $this->template->layout('task/layout', $params);
}
/**
diff --git a/app/Controller/Task.php b/app/Controller/Task.php
index 481d0ccd..8d38317c 100644
--- a/app/Controller/Task.php
+++ b/app/Controller/Task.php
@@ -32,7 +32,7 @@ class Task extends Base
$this->notfound(true);
}
- $this->response->html($this->template->layout('task_public', array(
+ $this->response->html($this->template->layout('task/public', array(
'project' => $project,
'comments' => $this->comment->getAll($task['id']),
'subtasks' => $this->subTask->getAll($task['id']),
@@ -65,7 +65,7 @@ class Task extends Base
$this->dateParser->format($values, array('date_started'));
- $this->response->html($this->taskLayout('task_show', array(
+ $this->response->html($this->taskLayout('task/show', array(
'project' => $this->project->getById($task['project_id']),
'files' => $this->file->getAll($task['id']),
'comments' => $this->comment->getAll($task['id']),
@@ -101,7 +101,7 @@ class Task extends Base
);
}
- $this->response->html($this->template->$method('task_new', array(
+ $this->response->html($this->template->$method('task/new', array(
'ajax' => $this->request->isAjax(),
'errors' => $errors,
'values' => $values + array('project_id' => $project['id']),
@@ -178,10 +178,10 @@ class Task extends Base
);
if ($ajax) {
- $this->response->html($this->template->load('task_edit', $params));
+ $this->response->html($this->template->load('task/edit', $params));
}
else {
- $this->response->html($this->taskLayout('task_edit', $params));
+ $this->response->html($this->taskLayout('task/edit', $params));
}
}
@@ -214,7 +214,7 @@ class Task extends Base
}
}
- $this->response->html($this->taskLayout('task_edit', array(
+ $this->response->html($this->taskLayout('task/edit', array(
'values' => $values,
'errors' => $errors,
'task' => $task,
@@ -272,7 +272,7 @@ class Task extends Base
$this->response->redirect('?controller=task&action=show&task_id='.$task['id']);
}
- $this->response->html($this->taskLayout('task_close', array(
+ $this->response->html($this->taskLayout('task/close', array(
'task' => $task,
)));
}
@@ -299,7 +299,7 @@ class Task extends Base
$this->response->redirect('?controller=task&action=show&task_id='.$task['id']);
}
- $this->response->html($this->taskLayout('task_open', array(
+ $this->response->html($this->taskLayout('task/open', array(
'task' => $task,
)));
}
@@ -330,7 +330,7 @@ class Task extends Base
$this->response->redirect('?controller=board&action=show&project_id='.$task['project_id']);
}
- $this->response->html($this->taskLayout('task_remove', array(
+ $this->response->html($this->taskLayout('task/remove', array(
'task' => $task,
)));
}
@@ -358,7 +358,7 @@ class Task extends Base
}
}
- $this->response->html($this->taskLayout('task_duplicate', array(
+ $this->response->html($this->taskLayout('task/duplicate', array(
'task' => $task,
)));
}
@@ -409,10 +409,10 @@ class Task extends Base
);
if ($ajax) {
- $this->response->html($this->template->load('task_edit_description', $params));
+ $this->response->html($this->template->load('task/edit_description', $params));
}
else {
- $this->response->html($this->taskLayout('task_edit_description', $params));
+ $this->response->html($this->taskLayout('task/edit_description', $params));
}
}
@@ -447,7 +447,7 @@ class Task extends Base
}
}
- $this->response->html($this->taskLayout('task_move_project', array(
+ $this->response->html($this->taskLayout('task/move_project', array(
'values' => $values,
'errors' => $errors,
'task' => $task,
@@ -486,7 +486,7 @@ class Task extends Base
}
}
- $this->response->html($this->taskLayout('task_duplicate_project', array(
+ $this->response->html($this->taskLayout('task/duplicate_project', array(
'values' => $values,
'errors' => $errors,
'task' => $task,