summaryrefslogtreecommitdiff
path: root/includes/controller/shifttypes_controller.php
blob: f54111c450a8618c96fc603639dbcfda3df10d65 (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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php

function shifttype_link($shifttype)
{
    return page_link_to('shifttypes') . '&action=view&shifttype_id=' . $shifttype['id'];
}

/**
 * Delete a shifttype.
 */
function shifttype_delete_controller()
{
    if (! isset($_REQUEST['shifttype_id'])) {
        redirect(page_link_to('shifttypes'));
    }
  
    $shifttype = ShiftType($_REQUEST['shifttype_id']);
    if ($shifttype === false) {
        engelsystem_error('Unable to load shifttype.');
    }
  
    if ($shifttype == null) {
        redirect(page_link_to('shifttypes'));
    }
  
    if (isset($_REQUEST['confirmed'])) {
        $result = ShiftType_delete($shifttype['id']);
        if ($result === false) {
            engelsystem_error('Unable to delete shifttype.');
        }
    
        engelsystem_log('Deleted shifttype ' . $shifttype['name']);
        success(sprintf(_('Shifttype %s deleted.'), $shifttype['name']));
        redirect(page_link_to('shifttypes'));
    }
  
    return [
      sprintf(_("Delete shifttype %s"), $shifttype['name']),
      ShiftType_delete_view($shifttype)
  ];
}

/**
 * Edit or create shift type.
 */
function shifttype_edit_controller()
{
    $shifttype_id = null;
    $name = "";
    $angeltype_id = null;
    $description = "";
  
    $angeltypes = AngelTypes();
  
    if (isset($_REQUEST['shifttype_id'])) {
        $shifttype = ShiftType($_REQUEST['shifttype_id']);
        if ($shifttype === false) {
            engelsystem_error('Unable to load shifttype.');
        }
        if ($shifttype == null) {
            error(_('Shifttype not found.'));
            redirect(page_link_to('shifttypes'));
        }
        $shifttype_id = $shifttype['id'];
        $name = $shifttype['name'];
        $angeltype_id = $shifttype['angeltype_id'];
        $description = $shifttype['description'];
    }
  
    if (isset($_REQUEST['submit'])) {
        $valid = true;
    
        if (isset($_REQUEST['name']) && $_REQUEST['name'] != '') {
            $name = strip_request_item('name');
        } else {
            $valid = false;
            error(_('Please enter a name.'));
        }
    
        if (isset($_REQUEST['angeltype_id']) && preg_match("/^[0-9]+$/", $_REQUEST['angeltype_id'])) {
            $angeltype_id = $_REQUEST['angeltype_id'];
        } else {
            $angeltype_id = null;
        }
    
        if (isset($_REQUEST['description'])) {
            $description = strip_request_item_nl('description');
        }
    
        if ($valid) {
            if ($shifttype_id) {
                $result = ShiftType_update($shifttype_id, $name, $angeltype_id, $description);
                if ($result === false) {
                    engelsystem_error('Unable to update shifttype.');
                }
                engelsystem_log('Updated shifttype ' . $name);
                success(_('Updated shifttype.'));
            } else {
                $shifttype_id = ShiftType_create($name, $angeltype_id, $description);
                if ($shifttype_id === false) {
                    engelsystem_error('Unable to create shifttype.');
                }
                engelsystem_log('Created shifttype ' . $name);
                success(_('Created shifttype.'));
            }
            redirect(page_link_to('shifttypes') . '&action=view&shifttype_id=' . $shifttype_id);
        }
    }
  
    return [
      shifttypes_title(),
      ShiftType_edit_view($name, $angeltype_id, $angeltypes, $description, $shifttype_id)
  ];
}

function shifttype_controller()
{
    if (! isset($_REQUEST['shifttype_id'])) {
        redirect(page_link_to('shifttypes'));
    }
    $shifttype = ShiftType($_REQUEST['shifttype_id']);
    if ($shifttype === false) {
        engelsystem_error('Unable to load shifttype.');
    }
    if ($shifttype == null) {
        redirect(page_link_to('shifttypes'));
    }
  
    $angeltype = null;
    if ($shifttype['angeltype_id'] != null) {
        $angeltype = AngelType($shifttype['angeltype_id']);
    }
  
    return [
      $shifttype['name'],
      ShiftType_view($shifttype, $angeltype)
  ];
}

/**
 * List all shift types.
 */
function shifttypes_list_controller()
{
    $shifttypes = ShiftTypes();
    if ($shifttypes === false) {
        engelsystem_error("Unable to load shifttypes.");
    }
  
    return [
      shifttypes_title(),
      ShiftTypes_list_view($shifttypes)
  ];
}

/**
 * Text for shift type related links.
 */
function shifttypes_title()
{
    return _("Shifttypes");
}

/**
 * Route shift type actions
 */
function shifttypes_controller()
{
    if (! isset($_REQUEST['action'])) {
        $_REQUEST['action'] = 'list';
    }
  
    switch ($_REQUEST['action']) {
    default:
    case 'list':
      return shifttypes_list_controller();
    case 'view':
      return shifttype_controller();
    case 'edit':
      return shifttype_edit_controller();
    case 'delete':
      return shifttype_delete_controller();
  }
}