Completed
Push — master ( 35b26f...5d8acc )
by Christopher
29s
created
public/old/roles.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     exit;
15 15
 }
16 16
 if (!isAdmin()) {
17
-    header('Location: error.php?no=100&page='.basename($_SERVER['SCRIPT_FILENAME']));
17
+    header('Location: error.php?no=100&page=' . basename($_SERVER['SCRIPT_FILENAME']));
18 18
     exit;
19 19
 }
20 20
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 if ($role && $assignTo) {
35 35
     $sql = "UPDATE roles r SET r.groupId = '$assignTo' WHERE r.id = '$role'";
36 36
     if (!mysqli_query(db(), $sql)) {
37
-        die('Error: '.mysqli_error(db()));
37
+        die('Error: ' . mysqli_error(db()));
38 38
     }
39 39
     header('Location: roles.php');
40 40
     exit;
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $sql = "INSERT INTO roles (name, description, rehersalId, groupId)
71 71
             VALUES ('$newrole', '$newrole', $rehersal, $groupId)";
72 72
         if (!mysqli_query(db(), $sql)) {
73
-            die('Error: '.mysqli_error(db()));
73
+            die('Error: ' . mysqli_error(db()));
74 74
         }
75 75
     } else {
76 76
         // Handle renaming of the roles
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
     $i = 1;
104 104
     while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
105 105
         if ($type == 'option') {
106
-            $list = $list."<option value='".$row['id']."'>".$row['name'].'</option>';
106
+            $list = $list . "<option value='" . $row['id'] . "'>" . $row['name'] . '</option>';
107 107
         } elseif ($type == 'li') {
108
-            $list = $list.'<li>'.$row['name'].'</li>';
108
+            $list = $list . '<li>' . $row['name'] . '</li>';
109 109
         } elseif ($type == 'li-a') {
110
-            $list = $list."<li><a href='roles.php?role=".$roleId.'&assignto='.$row['id']."'>".$row['name'].'</a></li>';
110
+            $list = $list . "<li><a href='roles.php?role=" . $roleId . '&assignto=' . $row['id'] . "'>" . $row['name'] . '</a></li>';
111 111
         }
112 112
         $i++;
113 113
     }
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
             $group = $row['groupId'];
174 174
             $down = $group + 1;
175 175
             $up = $group - 1;
176
-            echo '<div><strong>'.$groupname.'</strong><br />';
176
+            echo '<div><strong>' . $groupname . '</strong><br />';
177 177
         }
178 178
         // Print text input box if a role exists for the group.
179 179
         // Allows user to update role names and move roles between groups
Please login to merge, or discard this patch.
public/old/update.settings.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     exit;
34 34
 }
35 35
 if (!isAdmin()) {
36
-    header('Location: error.php?no=100&page='.basename($_SERVER['SCRIPT_FILENAME']));
36
+    header('Location: error.php?no=100&page=' . basename($_SERVER['SCRIPT_FILENAME']));
37 37
     exit;
38 38
 }
39 39
 
@@ -57,20 +57,20 @@  discard block
 block discarded – undo
57 57
 if ($action == 'update') {
58 58
     //if ($language='de-de')
59 59
     if ($rowSettings['lang_locale'] == 'en_GB') {
60
-        executeDbSql("update settings set lang_locale = 'de_DE'");                     // de_DE
60
+        executeDbSql("update settings set lang_locale = 'de_DE'"); // de_DE
61 61
             executeDbSql("update settings set time_format_long = '%A, %e. %B %Y, %R Uhr, KW%V'"); // de_DE: %A, %e. %B %Y, %R Uhr, KW%V
62 62
             executeDbSql("update settings set time_format_normal = '%d.%m.%Y %H:%M '"); // de_DE: %d.%m.%Y %H:%M
63
-            executeDbSql("update settings set time_format_short = '%a, <strong>%e. %b</strong>, %R'");              // de_DE: %a, <strong>%e. %b</strong>, KW%V
63
+            executeDbSql("update settings set time_format_short = '%a, <strong>%e. %b</strong>, %R'"); // de_DE: %a, <strong>%e. %b</strong>, KW%V
64 64
             executeDbSql("update settings set time_zone = 'Europe/Berlin'"); //de_DE: Europe/Berlin
65 65
             executeDbSql("update settings set google_group_calendar = ''");
66 66
         executeDbSql("update settings set overviewemail = '{{Gottesdienst-Planung [MONTH] [YEAR]}}\r\nHallo zusammen,\r\n\r\nanbei die Gottesdienst-Planung fuer [MONTH] [YEAR]\r\n\r\n[OVERVIEW]\r\n\r\nBitte fruehzeitig Bescheid geben, wenn etwas NICHT passt, ansonsten gehe ich davon aus, dass ihr wie geplant koennt.\r\n\r\nAlles Gute und Gottes Segen f�r Euch und Euren Dienst.\r\nEuer Gottesdienst Orga-Team'");
67 67
     }
68 68
     //else
69 69
     if ($rowSettings['lang_locale'] == 'de_DE') {
70
-        executeDbSql("update settings set lang_locale = 'en_GB'");                     // de_DE
70
+        executeDbSql("update settings set lang_locale = 'en_GB'"); // de_DE
71 71
             executeDbSql("update settings set time_format_long = '%A, %B %e @ %I:%M %p'"); // de_DE: %A, %e. %B %Y, %R Uhr, KW%V
72 72
             executeDbSql("update settings set time_format_normal = '%m/%d/%y %I:%M %p'"); // de_DE: %d.%m.%Y %H:%M
73
-            executeDbSql("update settings set time_format_short = '%a, <strong>%b %e</strong>, %I:%M %p'");              // de_DE: %a, <strong>%e. %b</strong>, KW%V
73
+            executeDbSql("update settings set time_format_short = '%a, <strong>%b %e</strong>, %I:%M %p'"); // de_DE: %a, <strong>%e. %b</strong>, KW%V
74 74
             executeDbSql("update settings set time_zone = 'Europe/London'"); //de_DE: Europe/Berlin
75 75
             executeDbSql("update settings set google_group_calendar = ''");
76 76
         executeDbSql("update settings set overviewemail = 'Hello,\r\n\r\nIn this email you find the Rota for [MONTH] [YEAR].\r\n\r\n[OVERVIEW]\r\n\r\nPlease inform us as soon as possible, if you are not able to serve as scheduled.\r\n\r\nBe blessed.\r\nChurch Support Stuff'");
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     $resultSettings = mysqli_query(db(), $sqlSettings) or die(mysqli_error(db()));
83 83
     $rowSettings = mysqli_fetch_array($resultSettings, MYSQLI_ASSOC);
84 84
 
85
-    $updateNotification = 'Settings updated successfully to: '.$rowSettings['lang_locale'].' <br>&nbsp;<br>';
85
+    $updateNotification = 'Settings updated successfully to: ' . $rowSettings['lang_locale'] . ' <br>&nbsp;<br>';
86 86
 }
87 87
 
88 88
 $formatting = 'true';
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
 	<hr>
95 95
 	This page has only beta status. <br>Please do only use it in testing environments!
96 96
 	<hr>
97
-	<?php echo 'Your web browser identifies your language as: '.$language; ?><br>
98
-	<?php echo 'Church Rota is set to use: '.$rowSettings['lang_locale']; ?><br>&nbsp;<br>
97
+	<?php echo 'Your web browser identifies your language as: ' . $language; ?><br>
98
+	<?php echo 'Church Rota is set to use: ' . $rowSettings['lang_locale']; ?><br>&nbsp;<br>
99 99
 	
100 100
 <?php
101 101
 if ($updateNotification == '') {
Please login to merge, or discard this patch.
public/old/emails.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     exit;
36 36
 }
37 37
 if (!isAdmin()) {
38
-    header('Location: error.php?no=100&page='.basename($_SERVER['SCRIPT_FILENAME']));
38
+    header('Location: error.php?no=100&page=' . basename($_SERVER['SCRIPT_FILENAME']));
39 39
     exit;
40 40
 }
41 41
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     if ($editskillID != '') {
72 72
         $sql = ("INSERT INTO eventPeople (eventID, skillID) VALUES ('$editeventID', '$editskillID')");
73 73
         if (!mysqli_query(db(), $sql)) {
74
-            die('Error: '.mysqli_error(db()));
74
+            die('Error: ' . mysqli_error(db()));
75 75
         }
76 76
 
77 77
         // After we have inserted the data, we want to head back to the main page
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
             $sql = ("INSERT INTO eventPeople (eventID, skillID) VALUES ('$editeventID', '$editskillID')");
90 90
             if (!mysqli_query(db(), $sql)) {
91
-                die('Error: '.mysqli_error(db()));
91
+                die('Error: ' . mysqli_error(db()));
92 92
             }
93 93
         }
94 94
 
Please login to merge, or discard this patch.
public/old/includes/functions.database.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@  discard block
 block discarded – undo
26 26
 function executeDbSql($sql)
27 27
 {
28 28
     if (!mysqli_query(db(), $sql)) {
29
-        die('Error: '.mysqli_error(db()).', SQL: '.$sql);
29
+        die('Error: ' . mysqli_error(db()) . ', SQL: ' . $sql);
30 30
     }
31 31
 }
32 32
 
33 33
 function updateDatabase()
34 34
 {
35 35
     $sql = 'SELECT VERSION( ) AS mysqli_version';
36
-    $result = mysqli_query(db(), $sql) or die('MySQL-Error: '.mysqli_error(db()));
36
+    $result = mysqli_query(db(), $sql) or die('MySQL-Error: ' . mysqli_error(db()));
37 37
     $dbv = mysqli_fetch_array($result, MYSQLI_ASSOC);
38 38
     $mysqli_version = $dbv['mysqli_version'];
39 39
     //echo $mysqli_version."<br>";
@@ -87,41 +87,41 @@  discard block
 block discarded – undo
87 87
             executeDbSql("alter table users add(isOverviewRecipient char(2) NOT NULL DEFAULT '0')");
88 88
             executeDbSql('alter table groups add(short_name char(2))');
89 89
 
90
-            executeDbSql("update settings set lang_locale = 'en_GB'");                     // de_DE
90
+            executeDbSql("update settings set lang_locale = 'en_GB'"); // de_DE
91 91
             executeDbSql('update settings set event_sorting_latest = 0');
92 92
             executeDbSql('update settings set snapshot_show_two_month = 0');
93 93
             executeDbSql('update settings set snapshot_reduce_skills_by_group = 0');
94 94
             executeDbSql('update settings set logged_in_show_snapshot_button = 0');
95 95
             executeDbSql("update settings set time_format_long = '%A, %B %e @ %I:%M %p'"); // de_DE: %A, %e. %B %Y, %R Uhr, KW%V
96 96
             executeDbSql("update settings set time_format_normal = '%m/%d/%y %I:%M %p'"); // de_DE: %d.%m.%Y %H:%M
97
-            executeDbSql("update settings set time_format_short = '%a, <strong>%b %e</strong>, %I:%M %p'");              // de_DE: %a, <strong>%e. %b</strong>, KW%V
97
+            executeDbSql("update settings set time_format_short = '%a, <strong>%b %e</strong>, %I:%M %p'"); // de_DE: %a, <strong>%e. %b</strong>, KW%V
98 98
             executeDbSql("update settings set version = '2.1.0'");
99 99
             executeDbSql('update settings set users_start_with_myevents = 0');
100 100
             executeDbSql("update settings set time_zone = 'Europe/London'"); //de_DE: Europe/Berlin
101 101
             executeDbSql("update settings set google_group_calendar = ''");
102 102
             executeDbSql("update settings set overviewemail = 'Hello,\r\n\r\nIn this email you find the Rota for [MONTH] [YEAR].\r\n\r\n[OVERVIEW]\r\n\r\nPlease inform us as soon as possible, if you are not able to serve as scheduled.\r\n\r\nBe blessed.\r\nChurch Support Stuff'");
103 103
 
104
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.1.0', $_SESSION['userid']);
104
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.1.0', $_SESSION['userid']);
105 105
         case '2.1.0':
106 106
             executeDbSql('create table settings_bkp2_1_0 as select * from settings');
107 107
             executeDbSql('alter table settings add(group_sorting_name int(1))');
108 108
             executeDbSql("update settings set version = '2.1.1'");
109
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.1.1', $_SESSION['userid']);
109
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.1.1', $_SESSION['userid']);
110 110
         case '2.1.1':
111 111
             executeDbSql("update settings set version = '2.1.2'");
112
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.1.2', $_SESSION['userid']);
112
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.1.2', $_SESSION['userid']);
113 113
         case '2.1.2':
114 114
             executeDbSql("alter table settings add(debug_mode int(1) DEFAULT '0')");
115
-            executeDbSql('update settings set group_sorting_name = 0');  //was a workaround, fixed in V2.2.1
115
+            executeDbSql('update settings set group_sorting_name = 0'); //was a workaround, fixed in V2.2.1
116 116
 
117 117
             executeDbSql("update settings set version = '2.2.0'");
118
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.2.0', $_SESSION['userid']);
118
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.2.0', $_SESSION['userid']);
119 119
         case '2.2.0':
120 120
             executeDbSql("alter table users add(isBandAdmin char(2) NOT NULL DEFAULT '0')");
121 121
             executeDbSql('update settings set group_sorting_name = 0'); //due to an error reset it again
122 122
 
123 123
             executeDbSql("update settings set version = '2.2.1'");
124
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.2.1', $_SESSION['userid']);
124
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.2.1', $_SESSION['userid']);
125 125
         case '2.2.1':
126 126
                 $sql = "CREATE TABLE IF NOT EXISTS `statistics` (
127 127
 				  `id` int(11) NOT NULL AUTO_INCREMENT,
@@ -137,21 +137,21 @@  discard block
 block discarded – undo
137 137
             executeDbSql($sql);
138 138
 
139 139
             executeDbSql("update settings set version = '2.3.0'");
140
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.0', $_SESSION['userid']);
140
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.0', $_SESSION['userid']);
141 141
             insertStatistics('system', __FILE__, 'db-update', '2.3.0', $version);
142 142
         case '2.3.0':
143 143
             executeDbSql("alter table users add(isEventEditor char(2) NOT NULL DEFAULT '0')");
144 144
 
145 145
             executeDbSql("update settings set version = '2.3.1'");
146
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.1', $_SESSION['userid']);
146
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.1', $_SESSION['userid']);
147 147
             insertStatistics('system', __FILE__, 'db-update', '2.3.1', $version);
148 148
         case '2.3.1':
149 149
             executeDbSql("update settings set version = '2.3.2'");
150
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.2', $_SESSION['userid']);
150
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.2', $_SESSION['userid']);
151 151
             insertStatistics('system', __FILE__, 'db-update', '2.3.2', $version);
152 152
         case '2.3.2':
153 153
             executeDbSql("update settings set version = '2.3.3'");
154
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.3', $_SESSION['userid']);
154
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.3', $_SESSION['userid']);
155 155
             insertStatistics('system', __FILE__, 'db-update', '2.3.3', $version);
156 156
         case '2.3.3':
157 157
             if (substr($mysqli_version, 0, 1) == 5) {
@@ -199,33 +199,33 @@  discard block
 block discarded – undo
199 199
                     );
200 200
             }
201 201
             executeDbSql("update settings set version = '2.3.4'");
202
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.4', $_SESSION['userid']);
202
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.4', $_SESSION['userid']);
203 203
             insertStatistics('system', __FILE__, 'db-update', '2.3.4', $version);
204 204
         case '2.3.4':
205 205
             executeDbSql("update settings set version = '2.3.5'");
206
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.3.5', $_SESSION['userid']);
206
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.3.5', $_SESSION['userid']);
207 207
             insertStatistics('system', __FILE__, 'db-update', '2.3.5', $version);
208 208
         case '2.3.5':
209 209
             executeDbSql("update settings set version = '2.4.0'");
210
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.0', $_SESSION['userid']);
210
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.0', $_SESSION['userid']);
211 211
             insertStatistics('system', __FILE__, 'db-update', '2.4.0', $version);
212 212
         case '2.4.0':
213 213
             executeDbSql("update settings set version = '2.4.1'");
214
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.1', $_SESSION['userid']);
214
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.1', $_SESSION['userid']);
215 215
             insertStatistics('system', __FILE__, 'db-update', '2.4.1', $version);
216 216
         case '2.4.1':
217 217
             executeDbSql('alter table settings add(days_to_alert int(2) DEFAULT 5) ');
218 218
             executeDbSql("alter table settings add(token varchar(100) DEFAULT '') ");
219 219
             executeDbSql("update settings set version = '2.4.2'");
220
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.2', $_SESSION['userid']);
220
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.2', $_SESSION['userid']);
221 221
             insertStatistics('system', __FILE__, 'db-update', '2.4.2', $version);
222 222
         case '2.4.2':
223 223
             executeDbSql("update settings set version = '2.4.3'");
224
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.3', $_SESSION['userid']);
224
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.3', $_SESSION['userid']);
225 225
             insertStatistics('system', __FILE__, 'db-update', '2.4.3', $version);
226 226
         case '2.4.3':
227 227
             executeDbSql("update settings set version = '2.4.4'");
228
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.4', $_SESSION['userid']);
228
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.4', $_SESSION['userid']);
229 229
             insertStatistics('system', __FILE__, 'db-update', '2.4.4', $version);
230 230
         case '2.4.4':
231 231
             if (substr($mysqli_version, 0, 1) == 5) {
@@ -274,27 +274,27 @@  discard block
 block discarded – undo
274 274
                 );
275 275
             }
276 276
             executeDbSql("update settings set version = '2.4.5'");
277
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.4.5', $_SESSION['userid']);
277
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.4.5', $_SESSION['userid']);
278 278
             insertStatistics('system', __FILE__, 'db-update', '2.4.5', $version);
279 279
         case '2.4.5':
280 280
             executeDbSql("update settings set version = '2.5.0'");
281
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.5.0', $_SESSION['userid']);
281
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.5.0', $_SESSION['userid']);
282 282
             insertStatistics('system', __FILE__, 'db-update', '2.5.0', $version);
283 283
         case '2.5.0':
284 284
             executeDbSql("update settings set version = '2.5.1'");
285
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.5.1', $_SESSION['userid']);
285
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.5.1', $_SESSION['userid']);
286 286
             insertStatistics('system', __FILE__, 'db-update', '2.5.1', $version);
287 287
         case '2.5.1':
288 288
             executeDbSql("update settings set version = '2.5.2'");
289
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.5.2', $_SESSION['userid']);
289
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.5.2', $_SESSION['userid']);
290 290
             insertStatistics('system', __FILE__, 'db-update', '2.5.2', $version);
291 291
         case '2.5.2':
292 292
             executeDbSql("update settings set version = '2.5.3'");
293
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.5.3', $_SESSION['userid']);
293
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.5.3', $_SESSION['userid']);
294 294
             insertStatistics('system', __FILE__, 'db-update', '2.5.3', $version);
295 295
         case '2.5.3':
296 296
             executeDbSql("update settings set version = '2.6.0'");
297
-            notifyInfo(__FILE__, 'db-update='.$version.'->2.6.0', $_SESSION['userid']);
297
+            notifyInfo(__FILE__, 'db-update=' . $version . '->2.6.0', $_SESSION['userid']);
298 298
             insertStatistics('system', __FILE__, 'db-update', '2.6.0', $version);
299 299
         case '2.6.0':
300 300
             $sql = "ALTER TABLE users
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
             executeDbSql($sql);
371 371
             executeDbSql("update settings set version = '3.0.0-pre1'");
372 372
 
373
-            notifyInfo(__FILE__, 'db-update='.$version.'->3.0.0-pre1', $_SESSION['userid']);
373
+            notifyInfo(__FILE__, 'db-update=' . $version . '->3.0.0-pre1', $_SESSION['userid']);
374 374
             insertStatistics('system', __FILE__, 'db-update', '3.0.0-pre1', $version);
375 375
         case '3.0.0-pre1':
376 376
             $sql = "CREATE TABLE IF NOT EXISTS notifications (
Please login to merge, or discard this patch.
public/old/settings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     exit;
36 36
 }
37 37
 if (!isAdmin()) {
38
-    header('Location: error.php?no=100&page='.basename($_SERVER['SCRIPT_FILENAME']));
38
+    header('Location: error.php?no=100&page=' . basename($_SERVER['SCRIPT_FILENAME']));
39 39
     exit;
40 40
 }
41 41
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 		skin='$skin'";
168 168
 
169 169
     if (!mysqli_query(db(), $sql)) {
170
-        die('Error: '.mysqli_error(db()));
170
+        die('Error: ' . mysqli_error(db()));
171 171
     }
172 172
     header('Location: settings.php');
173 173
 }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 	<!-- Content Header (Page header) -->
195 195
 	<section class="content-header">
196 196
 		<h1>Settings
197
-			<?php echo '<small>v'.$row['version'].'</small>'; ?>
197
+			<?php echo '<small>v' . $row['version'] . '</small>'; ?>
198 198
 		</h1>
199 199
 		<ol class="breadcrumb">
200 200
 			<li><a href="<?php echo siteSettings()->getSiteUrl() ?>"><i class="fa fa-dashboard"></i> Home</a></li>
Please login to merge, or discard this patch.
src/dependencies.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 $container = $app->getContainer();
22 22
 
23 23
 // TWIG view renderer
24
-$container['view'] = function ($c) {
24
+$container['view'] = function($c) {
25 25
     $settings = $c->get('settings')['renderer'];
26 26
     $view = new Twig($settings['template_path'], [
27 27
         'cache' => false, // or 'path/to/cache'
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     $env = $view->getEnvironment();
47 47
     $env->addGlobal('site', new Site());
48 48
     $env->addGlobal('currenturl', $c->get('request')->getUri());
49
-    $env->addGlobal('currentpath', $c->get('request')->getUri()->getBasePath().'/'.$c->get('request')->getUri()->getPath());
49
+    $env->addGlobal('currentpath', $c->get('request')->getUri()->getBasePath() . '/' . $c->get('request')->getUri()->getPath());
50 50
 
51 51
     if (isset($_SESSION['userId'])) {
52 52
         $u = UserQuery::create()->findPk($_SESSION['userId']);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 };
60 60
 
61 61
 // monolog
62
-$container['logger'] = function ($c) {
62
+$container['logger'] = function($c) {
63 63
     $settings = $c->get('settings')['logger'];
64 64
     $logger = new Monolog\Logger($settings['name']);
65 65
     $logger->pushProcessor(new Monolog\Processor\UidProcessor());
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     return $logger;
69 69
 };
70 70
 
71
-$container['auth'] = function ($c) {
71
+$container['auth'] = function($c) {
72 72
     $authConfig = getConfig()['auth'];
73 73
 
74 74
     // full domain e.g. https://example.com
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             break;
87 87
 
88 88
         case 'onebody':
89
-            $url = $authConfig['onebody']['url'].'/';
89
+            $url = $authConfig['onebody']['url'] . '/';
90 90
             $email = new EmailAddress($authConfig['onebody']['email']);
91 91
             $apiKey = $authConfig['onebody']['apiKey'];
92 92
 
@@ -116,6 +116,6 @@  discard block
 block discarded – undo
116 116
     return new Authentication($c, $authProvider, $allowedRoutes);
117 117
 };
118 118
 
119
-$container['csrf'] = function ($c) {
119
+$container['csrf'] = function($c) {
120 120
     return new Guard();
121 121
 };
Please login to merge, or discard this patch.
src/middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // Application middleware
9 9
 
10 10
 // 4) add route information to twig
11
-$app->add(function (Request $request, Response $response, callable $next) {
11
+$app->add(function(Request $request, Response $response, callable $next) {
12 12
     $route = $request->getAttribute('route');
13 13
 
14 14
     // return NotFound for non existent route
Please login to merge, or discard this patch.
src/routes.php 1 patch
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -22,35 +22,35 @@  discard block
 block discarded – undo
22 22
 // USER
23 23
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 24
 
25
-$app->group('/user', function () {
26
-    $this->get('s', UserController::class.':getAllUsers')->setName('users');
25
+$app->group('/user', function() {
26
+    $this->get('s', UserController::class . ':getAllUsers')->setName('users');
27 27
 
28
-    $this->get('/{id}/widget-only', UserController::class.':getUserWidgetOnly')->setName('user-widget-only');
28
+    $this->get('/{id}/widget-only', UserController::class . ':getUserWidgetOnly')->setName('user-widget-only');
29 29
 
30
-    $this->get('/new', UserController::class.':getNewUserForm')->setName('user-new');
31
-    $this->get('/{id}/edit', UserController::class.':getUserEditForm')->setName('user-edit');
32
-    $this->get('/{id}/password', UserController::class.':getUserPasswordForm')->setName('user-password');
30
+    $this->get('/new', UserController::class . ':getNewUserForm')->setName('user-new');
31
+    $this->get('/{id}/edit', UserController::class . ':getUserEditForm')->setName('user-edit');
32
+    $this->get('/{id}/password', UserController::class . ':getUserPasswordForm')->setName('user-password');
33 33
 
34
-    $this->get('/me', UserController::class.':getCurrentUser')->setName('user-me');
35
-    $this->get('/{id}', UserController::class.':getUser')->setName('user');
34
+    $this->get('/me', UserController::class . ':getCurrentUser')->setName('user-me');
35
+    $this->get('/{id}', UserController::class . ':getUser')->setName('user');
36 36
 
37
-    $this->post('[/{id}]', UserController::class.':postUser')->setName('user-post');
38
-    $this->post('/{id}/password', UserController::class.':postUserPasswordChange')->setName('user-password-post');
37
+    $this->post('[/{id}]', UserController::class . ':postUser')->setName('user-post');
38
+    $this->post('/{id}/password', UserController::class . ':postUserPasswordChange')->setName('user-password-post');
39 39
 
40 40
     // roles
41
-    $this->get('/{id}/roles', RoleController::class.':getAssignRolesForm')->setName('user-roles');
42
-    $this->post('/{id}/roles', RoleController::class.':postUserAssignRoles')->setName('user-assign-post');
41
+    $this->get('/{id}/roles', RoleController::class . ':getAssignRolesForm')->setName('user-roles');
42
+    $this->post('/{id}/roles', RoleController::class . ':postUserAssignRoles')->setName('user-assign-post');
43 43
 
44 44
     // availability
45
-    $this->get('/{id}/availability', AvailabilityController::class.':getAvailabilityForm')->setName('user-availability');
46
-    $this->post('/{id}/availability', AvailabilityController::class.':postAvailability')->setName('user-availability-post');
45
+    $this->get('/{id}/availability', AvailabilityController::class . ':getAvailabilityForm')->setName('user-availability');
46
+    $this->post('/{id}/availability', AvailabilityController::class . ':postAvailability')->setName('user-availability-post');
47 47
 
48 48
     // calendar
49
-    $this->group('/me/calendar', function () {
50
-        $this->get('s', CalendarController::class.':getCalendarTokens')->setName('user-calendars');
51
-        $this->get('/new', CalendarController::class.':getNewCalendarForm')->setName('user-calendars');
52
-        $this->get('/{id}/revoke', CalendarController::class.':getRevokeCalendar')->setName('user-calendar-revoke');
53
-        $this->post('/new', CalendarController::class.':postNewCalendar')->setName('user-calendar-new-post');
49
+    $this->group('/me/calendar', function() {
50
+        $this->get('s', CalendarController::class . ':getCalendarTokens')->setName('user-calendars');
51
+        $this->get('/new', CalendarController::class . ':getNewCalendarForm')->setName('user-calendars');
52
+        $this->get('/{id}/revoke', CalendarController::class . ':getRevokeCalendar')->setName('user-calendar-revoke');
53
+        $this->post('/new', CalendarController::class . ':postNewCalendar')->setName('user-calendar-new-post');
54 54
     });
55 55
 });
56 56
 
@@ -58,103 +58,103 @@  discard block
 block discarded – undo
58 58
 // EVENT
59 59
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
60 60
 
61
-$app->group('/event', function () {
62
-    $this->get('s', EventController::class.':getAllEvents')->setName('events');
63
-    $this->get('s/type/{id}', EventController::class.':getAllEventsWithType')->setName('events-eventtype');
64
-    $this->get('s/subtype/{id}', EventController::class.':getAllEventsWithSubType')->setName('events-eventsubtype');
61
+$app->group('/event', function() {
62
+    $this->get('s', EventController::class . ':getAllEvents')->setName('events');
63
+    $this->get('s/type/{id}', EventController::class . ':getAllEventsWithType')->setName('events-eventtype');
64
+    $this->get('s/subtype/{id}', EventController::class . ':getAllEventsWithSubType')->setName('events-eventsubtype');
65 65
 
66
-    $this->get('s/print/info', EventController::class.':getAllEventInfoToPrint')->setName('events-print-info');
66
+    $this->get('s/print/info', EventController::class . ':getAllEventInfoToPrint')->setName('events-print-info');
67 67
 
68
-    $this->get('/new', EventController::class.':getNewEventForm')->setName('event-new');
69
-    $this->get('/{id}/edit', EventController::class.':getEventEditForm')->setName('event-edit');
70
-    $this->get('/{id}/copy', EventController::class.':getEventCopyForm')->setName('event-copy');
71
-    $this->get('/{id}/assign', EventController::class.':getEventAssignForm')->setName('event-assign');
68
+    $this->get('/new', EventController::class . ':getNewEventForm')->setName('event-new');
69
+    $this->get('/{id}/edit', EventController::class . ':getEventEditForm')->setName('event-edit');
70
+    $this->get('/{id}/copy', EventController::class . ':getEventCopyForm')->setName('event-copy');
71
+    $this->get('/{id}/assign', EventController::class . ':getEventAssignForm')->setName('event-assign');
72 72
 
73
-    $this->get('/{id}', EventController::class.':getEvent')->setName('event');
73
+    $this->get('/{id}', EventController::class . ':getEvent')->setName('event');
74 74
 
75
-    $this->post('[/{id}]', EventController::class.':postEvent')->setName('event-post');
76
-    $this->post('/{id}/assign', EventController::class.':postEventAssign')->setName('event-assign-post');
77
-    $this->post('/{id}/comment', EventController::class.':postEventComment')->setName('event-comment-post');
75
+    $this->post('[/{id}]', EventController::class . ':postEvent')->setName('event-post');
76
+    $this->post('/{id}/assign', EventController::class . ':postEventAssign')->setName('event-assign-post');
77
+    $this->post('/{id}/comment', EventController::class . ':postEventComment')->setName('event-comment-post');
78 78
 });
79 79
 
80 80
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
81 81
 // RESOURCE
82 82
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
83 83
 
84
-$app->group('/resource', function () {
85
-    $this->get('s', ResourceController::class.':getAllResources')->setName('resources');
84
+$app->group('/resource', function() {
85
+    $this->get('s', ResourceController::class . ':getAllResources')->setName('resources');
86 86
 
87
-    $this->get('[/new]', ResourceController::class.':getNewResourceForm')->setName('resource-new');
88
-    $this->get('/{id}/edit', ResourceController::class.':getResourceEditForm')->setName('resource-edit');
87
+    $this->get('[/new]', ResourceController::class . ':getNewResourceForm')->setName('resource-new');
88
+    $this->get('/{id}/edit', ResourceController::class . ':getResourceEditForm')->setName('resource-edit');
89 89
 
90
-    $this->get('/{id}', ResourceController::class.':getResourceFile')->setName('resource');
90
+    $this->get('/{id}', ResourceController::class . ':getResourceFile')->setName('resource');
91 91
 
92
-    $this->post('[/{id}]', ResourceController::class.':postResource')->setName('resource-post');
92
+    $this->post('[/{id}]', ResourceController::class . ':postResource')->setName('resource-post');
93 93
 });
94 94
 
95 95
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96 96
 // ROLES & GROUPS
97 97
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
98 98
 
99
-$app->group('/group', function () {
100
-    $this->get('/{id}', GroupController::class.':getGroup')->setName('group');
101
-    $this->get('/{id}/roles', GroupController::class.':getGroupRoles')->setName('group-roles');
99
+$app->group('/group', function() {
100
+    $this->get('/{id}', GroupController::class . ':getGroup')->setName('group');
101
+    $this->get('/{id}/roles', GroupController::class . ':getGroupRoles')->setName('group-roles');
102 102
 
103
-    $this->get('/{id}/events', EventController::class.':getAllEventsToPrintForGroup')->setName('group-events-print');
103
+    $this->get('/{id}/events', EventController::class . ':getAllEventsToPrintForGroup')->setName('group-events-print');
104 104
 
105
-    $this->post('[/{id}]', GroupController::class.':postGroup')->setName('group-post');
105
+    $this->post('[/{id}]', GroupController::class . ':postGroup')->setName('group-post');
106 106
 });
107 107
 
108 108
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
109 109
 // AUTH
110 110
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
111 111
 
112
-$app->get('/login', AuthController::class.':getLoginForm')->setName('login');
112
+$app->get('/login', AuthController::class . ':getLoginForm')->setName('login');
113 113
 
114
-$app->get('/login/{provider}', AuthController::class.':getLoginAuth')->setName('login-auth');
115
-$app->get('/login/{provider}/callback', AuthController::class.':getLoginCallback')->setName('login-callback');
116
-$app->get('/signup', PendingUserController::class.':getSignUpForm')->setName('sign-up');
117
-$app->get('/signup/cancel', PendingUserController::class.':getSignUpCancel')->setName('sign-up-cancel');
114
+$app->get('/login/{provider}', AuthController::class . ':getLoginAuth')->setName('login-auth');
115
+$app->get('/login/{provider}/callback', AuthController::class . ':getLoginCallback')->setName('login-callback');
116
+$app->get('/signup', PendingUserController::class . ':getSignUpForm')->setName('sign-up');
117
+$app->get('/signup/cancel', PendingUserController::class . ':getSignUpCancel')->setName('sign-up-cancel');
118 118
 
119
-$app->get('/logout', AuthController::class.':getLogout')->setName('logout');
119
+$app->get('/logout', AuthController::class . ':getLogout')->setName('logout');
120 120
 
121
-$app->post('/login', AuthController::class.':postLogin')->setName('login-post');
122
-$app->post('/signup', PendingUserController::class.':postSignUp')->setName('sign-up-post');
121
+$app->post('/login', AuthController::class . ':postLogin')->setName('login-post');
122
+$app->post('/signup', PendingUserController::class . ':postSignUp')->setName('sign-up-post');
123 123
 
124 124
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
125 125
 // NOTIFICATIONS
126 126
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
127 127
 
128
-$app->get('/notification/{id}[/{referrer}]', NotificationController::class.':getNotificationClick')->setName('notification');
128
+$app->get('/notification/{id}[/{referrer}]', NotificationController::class . ':getNotificationClick')->setName('notification');
129 129
 
130 130
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
131 131
 // CALENDAR
132 132
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
133 133
 
134
-$app->get('/calendar/{token}.{format}', CalendarController::class.':getRenderedCalendar')->setName('user-calendar');
134
+$app->get('/calendar/{token}.{format}', CalendarController::class . ':getRenderedCalendar')->setName('user-calendar');
135 135
 
136 136
 // legacy
137
-$app->get('/calendar.php', CalendarController::class.':getLegacyRenderedCalendar')->setName('user-calendar');
137
+$app->get('/calendar.php', CalendarController::class . ':getLegacyRenderedCalendar')->setName('user-calendar');
138 138
 
139 139
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
140 140
 // OTHER
141 141
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
142 142
 
143
-$app->get('/settings', function ($request, $response, $args) {
143
+$app->get('/settings', function($request, $response, $args) {
144 144
     // Sample log message
145 145
     $this->logger->info("Fetch settings GET '/settings'");
146 146
 
147
-    $url = $this->router->pathFor('home').'old/settings.php';
147
+    $url = $this->router->pathFor('home') . 'old/settings.php';
148 148
 
149 149
     return $response->withStatus(303)->withHeader('Location', $url);
150 150
     //return $this->view->render($response, 'settings.twig', []);
151 151
 })->setName('settings');
152 152
 
153
-$app->get('/token', function ($request, $response, $args) {
153
+$app->get('/token', function($request, $response, $args) {
154 154
     return $response->getBody()->write(Crypt::generateToken(30));
155 155
 })->setName('token');
156 156
 
157
-$app->get('/', function ($request, $response, $args) {
157
+$app->get('/', function($request, $response, $args) {
158 158
     // Sample log message
159 159
     $this->logger->info("Fetch home GET '/'");
160 160
 
@@ -174,19 +174,19 @@  discard block
 block discarded – undo
174 174
 // INSTALL
175 175
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
176 176
 
177
-$app->group('/install', function () {
178
-    $this->get('', InstallController::class.':getInstall')->setName('install');
177
+$app->group('/install', function() {
178
+    $this->get('', InstallController::class . ':getInstall')->setName('install');
179 179
 
180
-    $this->get('/database', InstallController::class.':getInstallDatabase')->setName('install-database');
180
+    $this->get('/database', InstallController::class . ':getInstallDatabase')->setName('install-database');
181 181
 
182
-    $this->get('/user', InstallController::class.':getFirstUserForm')->setName('install-user');
183
-    $this->post('/user', InstallController::class.':postFirstUserForm')->setName('install-user-post');
182
+    $this->get('/user', InstallController::class . ':getFirstUserForm')->setName('install-user');
183
+    $this->post('/user', InstallController::class . ':postFirstUserForm')->setName('install-user-post');
184 184
 });
185 185
 
186 186
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
187 187
 // JOBS
188 188
 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
189 189
 
190
-$app->group('/job', function () {
191
-    $this->get('/daily/{token}', JobController::class.':getDaily')->setName('job-daily');
190
+$app->group('/job', function() {
191
+    $this->get('/daily/{token}', JobController::class . ':getDaily')->setName('job-daily');
192 192
 });
Please login to merge, or discard this patch.
src/classes/Controller/InstallController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
 
25 25
         $stage = 1;
26 26
 
27
-        $configPath = __DIR__.'/../../../config';
27
+        $configPath = __DIR__ . '/../../../config';
28 28
         if (
29
-            file_exists($configPath.'/auth.php')
30
-            && file_exists($configPath.'/database.php')
31
-            && file_exists($configPath.'/email.php')
32
-            && file_exists($configPath.'/recording.php')
29
+            file_exists($configPath . '/auth.php')
30
+            && file_exists($configPath . '/database.php')
31
+            && file_exists($configPath . '/email.php')
32
+            && file_exists($configPath . '/recording.php')
33 33
         ) {
34 34
             $stage = 2;
35 35
         }
@@ -77,17 +77,17 @@  discard block
 block discarded – undo
77 77
             'command'      => 'sql:build',
78 78
             '-vvv'         => true,
79 79
             '--overwrite'  => true,
80
-            '--config-dir' => __DIR__.'/../../../generated-conf',
81
-            '--schema-dir' => __DIR__.'/../../../',
82
-            '--output-dir' => __DIR__.'/../../../build/sql',
80
+            '--config-dir' => __DIR__ . '/../../../generated-conf',
81
+            '--schema-dir' => __DIR__ . '/../../../',
82
+            '--output-dir' => __DIR__ . '/../../../build/sql',
83 83
         ]);
84 84
         $propelGenerator->run($input, $output);
85 85
 
86 86
         $input = new ArrayInput([
87 87
             'command'      => 'sql:insert',
88 88
             '-vvv'         => true,
89
-            '--config-dir' => __DIR__.'/../../../generated-conf',
90
-            '--sql-dir'    => __DIR__.'/../../../build/sql',
89
+            '--config-dir' => __DIR__ . '/../../../generated-conf',
90
+            '--sql-dir'    => __DIR__ . '/../../../build/sql',
91 91
         ]);
92 92
         $propelGenerator->run($input, $output);
93 93
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             $existingUserCount = UserQuery::create()->count();
100 100
         } catch (\Propel\Runtime\Exception\PropelException $e) {
101 101
             if ($e->getPrevious()->getCode() === '42S02') {
102
-                return $response->getBody()->write('Error installing database:'."\n".$outputString);
102
+                return $response->getBody()->write('Error installing database:' . "\n" . $outputString);
103 103
             }
104 104
         }
105 105
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
         return $this->view->render($response, 'login-credentials.twig', [
154 154
             'username' => $user->getEmail(),
155
-            'message'  => 'Your password is: '.$password.' Copy it somewhere safe as it will not be displayed again. You can change it once you\'ve logged in.',
155
+            'message'  => 'Your password is: ' . $password . ' Copy it somewhere safe as it will not be displayed again. You can change it once you\'ve logged in.',
156 156
         ]);
157 157
     }
158 158
 
Please login to merge, or discard this patch.