diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 13:41:54 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 13:41:54 -0400 |
commit | 1353929a7dbd3f2e897fa7d3ab88e959ca573f9f (patch) | |
tree | 30bdbac4e466e74c3dfb4d451422f03c62bcbe41 /app/Controller/ActionProject.php | |
parent | ab48a09f0d674b703467975b376c5ac7352670ae (diff) |
Rename controllers
Diffstat (limited to 'app/Controller/ActionProject.php')
-rw-r--r-- | app/Controller/ActionProject.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/app/Controller/ActionProject.php b/app/Controller/ActionProject.php deleted file mode 100644 index 10b3c9d4..00000000 --- a/app/Controller/ActionProject.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php - -namespace Kanboard\Controller; - -/** - * Duplicate automatic action from another project - * - * @package controller - * @author Frederic Guillot - */ -class ActionProject extends BaseController -{ - public function project() - { - $project = $this->getProject(); - $projects = $this->projectUserRole->getProjectsByUser($this->userSession->getId()); - unset($projects[$project['id']]); - - $this->response->html($this->template->render('action_project/project', 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('action', 'index', array('project_id' => $project['id']))); - } -} |