Open task import in modal box

This commit is contained in:
Frederic Guillot
2017-01-08 12:01:13 -05:00
parent 6bfafb6e82
commit bb222a79cd
7 changed files with 16 additions and 25 deletions

View File

@@ -23,15 +23,14 @@ class TaskImportController extends BaseController
{
$project = $this->getProject();
$this->response->html($this->helper->layout->project('task_import/show', array(
$this->response->html($this->template->render('task_import/show', array(
'project' => $project,
'values' => $values,
'errors' => $errors,
'max_size' => get_upload_max_size(),
'delimiters' => Csv::getDelimiters(),
'enclosures' => Csv::getEnclosures(),
'title' => t('Import tasks from CSV file'),
), 'task_import/sidebar'));
)));
}
/**
@@ -58,7 +57,7 @@ class TaskImportController extends BaseController
$this->flash->failure(t('Nothing have been imported!'));
}
$this->response->redirect($this->helper->url->to('TaskImportController', 'show', array('project_id' => $project['id'])));
$this->response->redirect($this->helper->url->to('TaskImportController', 'show', array('project_id' => $project['id'])), true);
}
}