forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
groups-add.php
81 lines (69 loc) · 2.07 KB
/
groups-add.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
77
78
79
80
81
<?php
/**
* Show the form to add a new group.
*
* @package ProjectSend
* @subpackage Groups
*
*/
$allowed_levels = array(9,8);
require_once 'bootstrap.php';
$active_nav = 'groups';
$page_title = __('Add clients group','cftp_admin');
$page_id = 'group_form';
$new_group = new \ProjectSend\Classes\Groups($dbh);
include_once ADMIN_VIEWS_DIR . DS . 'header.php';
if ($_POST) {
/**
* Clean the posted form values to be used on the groups actions,
* and again on the form if validation failed.
*/
$group_arguments = [
'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. */
$new_group->set($group_arguments);
if ($new_group->validate()) {
$new_response = $new_group->create();
if (!empty($new_response['id'])) {
$rediret_to = BASE_URI . 'groups-edit.php?id=' . $new_response['id'] . '&status=' . $new_response['query'] . '&is_new=1';
header('Location:' . $rediret_to);
exit;
}
}
}
?>
<div class="col-xs-12 col-sm-12 col-lg-6">
<div class="white-box">
<div class="white-box-interior">
<?php
// If the form was submited with errors, show them here.
echo $new_group->getValidationErrors();
if (isset($new_response)) {
/**
* Get the process state and show the corresponding ok or error messages.
*/
switch ($new_response['query']) {
case 0:
$msg = __('There was an error. Please try again.','cftp_admin');
echo system_message('danger',$msg);
break;
}
}
else {
/**
* If not $new_response is set, it means we are just entering for the first time.
* Include the form.
*/
$groups_form_type = 'new_group';
include_once FORMS_DIR . DS . 'groups.php';
}
?>
</div>
</div>
</div>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';