diff options
Diffstat (limited to 'app/Controller/ProjectActionDuplicationController.php')
-rw-r--r-- | app/Controller/ProjectActionDuplicationController.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app/Controller/ProjectActionDuplicationController.php b/app/Controller/ProjectActionDuplicationController.php new file mode 100644 index 00000000..790b7ed3 --- /dev/null +++ b/app/Controller/ProjectActionDuplicationController.php @@ -0,0 +1,38 @@ +<?php + +namespace Kanboard\Controller; + +/** + * Duplicate automatic action from another project + * + * @package Kanboard\Controller + * @author Frederic Guillot + */ +class ProjectActionDuplicationController extends BaseController +{ + public function show() + { + $project = $this->getProject(); + $projects = $this->projectUserRole->getProjectsByUser($this->userSession->getId()); + unset($projects[$project['id']]); + + $this->response->html($this->template->render('project_action_duplication/show', array( + 'project' => $project, + 'projects_list' => $projects, + ))); + } + + public function save() + { + $project = $this->getProject(); + $src_project_id = $this->request->getValue('src_project_id'); + + if ($this->action->duplicate($src_project_id, $project['id'])) { + $this->flash->success(t('Actions duplicated successfully.')); + } else { + $this->flash->failure(t('Unable to duplicate actions.')); + } + + $this->response->redirect($this->helper->url->to('ActionController', 'index', array('project_id' => $project['id']))); + } +} |