summaryrefslogtreecommitdiff
path: root/app/Controller/GroupModificationController.php
blob: bd181b746bd6eb3536154e6a505b2f1a12966bea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php

namespace Kanboard\Controller;

/**
 * Class GroupModificationController
 *
 * @package Kanboard\Controller
 * @author  Frederic Guillot
 */
class GroupModificationController extends BaseController
{
    /**
     * Display a form to update a group
     *
     * @access public
     * @param array $values
     * @param array $errors
     */
    public function show(array $values = array(), array $errors = array())
    {
        if (empty($values)) {
            $values = $this->groupModel->getById($this->request->getIntegerParam('group_id'));
        }

        $this->response->html($this->template->render('group_modification/show', array(
            'errors' => $errors,
            'values' => $values,
        )));
    }

    /**
     * Validate and save a group
     *
     * @access public
     */
    public function save()
    {
        $values = $this->request->getValues();
        list($valid, $errors) = $this->groupValidator->validateModification($values);

        if ($valid) {
            if ($this->groupModel->update($values) !== false) {
                $this->flash->success(t('Group updated successfully.'));
                return $this->response->redirect($this->helper->url->to('GroupListController', 'index'), true);
            } else {
                $this->flash->failure(t('Unable to update your group.'));
            }
        }

        return $this->show($values, $errors);
    }
}