From 0e055eabe1a7d0e077105f6e9cc48057c9540443 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 17 Sep 2016 15:25:27 -0400 Subject: Add custom role edition --- app/Controller/ProjectRoleController.php | 59 ++++++++++++++++++++++++++++++-- 1 file changed, 57 insertions(+), 2 deletions(-) (limited to 'app/Controller/ProjectRoleController.php') diff --git a/app/Controller/ProjectRoleController.php b/app/Controller/ProjectRoleController.php index 87868748..95503750 100644 --- a/app/Controller/ProjectRoleController.php +++ b/app/Controller/ProjectRoleController.php @@ -69,6 +69,55 @@ class ProjectRoleController extends BaseController } } + /** + * Show form to change existing role + * + * @param array $values + * @param array $errors + * @throws AccessForbiddenException + */ + public function edit(array $values = array(), array $errors = array()) + { + $project = $this->getProject(); + $role = $this->getRole($project['id']); + + if (empty($values)) { + $values = $role; + } + + $this->response->html($this->template->render('project_role/edit', array( + 'role' => $role, + 'project' => $project, + 'values' => $values, + 'errors' => $errors, + ))); + } + + /** + * Update role + */ + public function update() + { + $project = $this->getProject(); + $role = $this->getRole($project['id']); + + $values = $this->request->getValues(); + + list($valid, $errors) = $this->projectRoleValidator->validateModification($values); + + if ($valid) { + if ($this->projectRoleModel->update($role['role_id'], $project['id'], $values['role'])) { + $this->flash->success(t('Your custom project role has been updated successfully.')); + } else { + $this->flash->failure(t('Unable to update custom project role.')); + } + + $this->response->redirect($this->helper->url->to('ProjectRoleController', 'show', array('project_id' => $project['id']))); + } else { + $this->edit($values, $errors); + } + } + /** * Confirm suppression * @@ -77,11 +126,11 @@ class ProjectRoleController extends BaseController public function confirm() { $project = $this->getProject(); - $role_id = $this->request->getIntegerParam('role_id'); + $role = $this->getRole($project['id']); $this->response->html($this->helper->layout->project('project_role/remove', array( 'project' => $project, - 'role' => $this->projectRoleModel->getById($project['id'], $role_id), + 'role' => $role, ))); } @@ -104,4 +153,10 @@ class ProjectRoleController extends BaseController $this->response->redirect($this->helper->url->to('ProjectRoleController', 'show', array('project_id' => $project['id']))); } + + protected function getRole($project_id) + { + $role_id = $this->request->getIntegerParam('role_id'); + return $this->projectRoleModel->getById($project_id, $role_id); + } } -- cgit v1.2.3