Template helpers refactoring

This commit is contained in:
Frédéric Guillot
2014-12-28 11:28:50 -05:00
parent 88d84073ae
commit 34d7450d3c
155 changed files with 1605 additions and 1609 deletions

View File

@@ -89,7 +89,7 @@ class Task extends Base
public function create(array $values = array(), array $errors = array())
{
$project = $this->getProject();
$method = $this->request->isAjax() ? 'load' : 'layout';
$method = $this->request->isAjax() ? 'render' : 'layout';
if (empty($values)) {
@@ -179,7 +179,7 @@ class Task extends Base
);
if ($ajax) {
$this->response->html($this->template->load('task/edit', $params));
$this->response->html($this->template->render('task/edit', $params));
}
else {
$this->response->html($this->taskLayout('task/edit', $params));
@@ -410,7 +410,7 @@ class Task extends Base
);
if ($ajax) {
$this->response->html($this->template->load('task/edit_description', $params));
$this->response->html($this->template->render('task/edit_description', $params));
}
else {
$this->response->html($this->taskLayout('task/edit_description', $params));