forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups-edit.php
76 lines (64 loc) · 2.11 KB
/
groups-edit.php
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Show the form to edit an existing group.
*/
$allowed_levels = array(9, 8);
require_once 'bootstrap.php';
$active_nav = 'groups';
$page_title = __('Edit group', 'cftp_admin');
$page_id = 'group_form';
include_once ADMIN_VIEWS_DIR . DS . 'header.php';
/** Check if the id parameter is on the URI. */
if (!isset($_GET['id'])) {
exit_with_error_code(403);
}
$group_id = $_GET['id'];
if (!group_exists_id($group_id)) {
exit_with_error_code(403);
}
/** Create the object */
$edit_group = new \ProjectSend\Classes\Groups($group_id);
$group_arguments = $edit_group->getProperties();
if ($_POST) {
/**
* Clean the posted form values to be used on the groups actions,
* and again on the form if validation failed.
* Also, overwrites the values gotten from the database so if
* validation failed, the new unsaved values are shown to avoid
* having to type them again.
*/
$group_arguments = array(
'id' => $group_id,
'name' => $_POST['name'],
'description' => $_POST['description'],
'members' => (!empty($_POST["members"])) ? $_POST['members'] : null,
'public' => (isset($_POST["public"])) ? 1 : 0,
);
/** Validate the information from the posted form. */
$edit_group->set($group_arguments);
$edit_response = $edit_group->edit();
if ($edit_response['query'] == 1) {
$flash->success(__('Group saved successfully'));
} else {
$flash->error(__('There was an error saving to the database'));
}
$location = BASE_URI . 'groups-edit.php?id=' . $group_id;
ps_redirect($location);
}
?>
<div class="row">
<div class="col-12 col-sm-12 col-lg-6">
<div class="white-box">
<div class="white-box-interior">
<?php
// If the form was submitted with errors, show them here.
echo $edit_group->getValidationErrors();
$groups_form_type = 'edit_group';
include_once FORMS_DIR . DS . 'groups.php';
?>
</div>
</div>
</div>
</div>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';