@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('save_template')) { |
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -$id = (int)$_POST['id']; |
|
9 | +$id = (int) $_POST['id']; |
|
10 | 10 | $name = $modx->db->escape(trim($_POST['name'])); |
11 | 11 | $description = $modx->db->escape($_POST['description']); |
12 | 12 | $caption = $modx->db->escape($_POST['caption']); |
@@ -17,17 +17,17 @@ discard block |
||
17 | 17 | $display = $modx->db->escape($_POST['display']); |
18 | 18 | $params = $modx->db->escape($_POST['params']); |
19 | 19 | $locked = $_POST['locked'] == 'on' ? 1 : 0; |
20 | -$origin = isset($_REQUEST['or']) ? (int)$_REQUEST['or'] : 76; |
|
21 | -$originId = isset($_REQUEST['oid']) ? (int)$_REQUEST['oid'] : null; |
|
20 | +$origin = isset($_REQUEST['or']) ? (int) $_REQUEST['or'] : 76; |
|
21 | +$originId = isset($_REQUEST['oid']) ? (int) $_REQUEST['oid'] : null; |
|
22 | 22 | $currentdate = time() + $modx->config['server_offset_time']; |
23 | 23 | |
24 | 24 | //Kyle Jaebker - added category support |
25 | 25 | if (empty($_POST['newcategory']) && $_POST['categoryid'] > 0) { |
26 | - $categoryid = (int)$_POST['categoryid']; |
|
26 | + $categoryid = (int) $_POST['categoryid']; |
|
27 | 27 | } elseif (empty($_POST['newcategory']) && $_POST['categoryid'] <= 0) { |
28 | 28 | $categoryid = 0; |
29 | 29 | } else { |
30 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
30 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
31 | 31 | $categoryid = checkCategory($_POST['newcategory']); |
32 | 32 | if (!$categoryid) { |
33 | 33 | $categoryid = newCategory($_POST['newcategory']); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | // finished emptying cache - redirect |
100 | 100 | if ($_POST['stay'] != '') { |
101 | 101 | $a = ($_POST['stay'] == '2') ? "301&id=$newid" : "300"; |
102 | - $header = "Location: index.php?a=" . $a . "&r=2&stay=" . $_POST['stay']; |
|
102 | + $header = "Location: index.php?a=".$a."&r=2&stay=".$_POST['stay']; |
|
103 | 103 | header($header); |
104 | 104 | } else { |
105 | 105 | $header = "Location: index.php?a=76&r=2"; |
@@ -160,11 +160,11 @@ discard block |
||
160 | 160 | // finished emptying cache - redirect |
161 | 161 | if ($_POST['stay'] != '') { |
162 | 162 | $a = ($_POST['stay'] == '2') ? "301&id=$id" : "300"; |
163 | - $header = "Location: index.php?a=" . $a . "&r=2&stay=" . $_POST['stay'] . "&or=" . $origin . "&oid=" . $originId; |
|
163 | + $header = "Location: index.php?a=".$a."&r=2&stay=".$_POST['stay']."&or=".$origin."&oid=".$originId; |
|
164 | 164 | header($header); |
165 | 165 | } else { |
166 | 166 | $modx->unlockElement(2, $id); |
167 | - $header = "Location: index.php?a=" . $origin . "&r=2" . (empty($originId) ? '' : '&id=' . $originId); |
|
167 | + $header = "Location: index.php?a=".$origin."&r=2".(empty($originId) ? '' : '&id='.$originId); |
|
168 | 168 | header($header); |
169 | 169 | } |
170 | 170 |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('delete_eventlog')) { |
|
5 | +if (!$modx->hasPermission('delete_eventlog')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -if (isset($_GET['cls']) && $_GET['cls']==1) { |
|
9 | +if (isset($_GET['cls']) && $_GET['cls'] == 1) { |
|
10 | 10 | $where = ''; |
11 | 11 | } else { |
12 | - $id = isset($_GET['id'])? (int)$_GET['id'] : 0; |
|
13 | - if($id==0) { |
|
12 | + $id = isset($_GET['id']) ? (int) $_GET['id'] : 0; |
|
13 | + if ($id == 0) { |
|
14 | 14 | $modx->webAlertAndQuit($_lang["error_no_id"]); |
15 | 15 | } |
16 | 16 | $where = "id='{$id}'"; |
@@ -19,5 +19,5 @@ discard block |
||
19 | 19 | // delete event log |
20 | 20 | $modx->db->delete($modx->getFullTableName('event_log'), $where); |
21 | 21 | |
22 | -$header="Location: index.php?a=114"; |
|
22 | +$header = "Location: index.php?a=114"; |
|
23 | 23 | header($header); |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('save_user')) { |
|
5 | +if (!$modx->hasPermission('save_user')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | |
15 | 15 | $input = $_POST; |
16 | 16 | |
17 | -$id = (int)$input['id']; |
|
17 | +$id = (int) $input['id']; |
|
18 | 18 | $oldusername = $input['oldusername']; |
19 | 19 | $newusername = !empty ($input['newusername']) ? trim($input['newusername']) : "New User"; |
20 | 20 | $fullname = $input['fullname']; |
@@ -44,56 +44,56 @@ discard block |
||
44 | 44 | $user_groups = $input['user_groups']; |
45 | 45 | |
46 | 46 | // verify password |
47 | -if($passwordgenmethod == "spec" && $input['specifiedpassword'] != $input['confirmpassword']) { |
|
47 | +if ($passwordgenmethod == "spec" && $input['specifiedpassword'] != $input['confirmpassword']) { |
|
48 | 48 | webAlertAndQuit("Password typed is mismatched"); |
49 | 49 | } |
50 | 50 | |
51 | 51 | // verify email |
52 | -if($email == '' || !preg_match("/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,24}$/i", $email)) { |
|
52 | +if ($email == '' || !preg_match("/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,24}$/i", $email)) { |
|
53 | 53 | webAlertAndQuit("E-mail address doesn't seem to be valid!"); |
54 | 54 | } |
55 | 55 | |
56 | 56 | // verify admin security |
57 | -if($_SESSION['mgrRole'] != 1) { |
|
57 | +if ($_SESSION['mgrRole'] != 1) { |
|
58 | 58 | // Check to see if user tried to spoof a "1" (admin) role |
59 | - if(!$modx->hasPermission('save_role')) { |
|
59 | + if (!$modx->hasPermission('save_role')) { |
|
60 | 60 | webAlertAndQuit("Illegal attempt to create/modify administrator by non-administrator!"); |
61 | 61 | } |
62 | 62 | // Verify that the user being edited wasn't an admin and the user ID got spoofed |
63 | 63 | $rs = $modx->db->select('count(internalKey)', $tbl_user_attributes, "internalKey='{$id}' AND role=1"); |
64 | 64 | $limit = $modx->db->getValue($rs); |
65 | - if($limit > 0) { |
|
65 | + if ($limit > 0) { |
|
66 | 66 | webAlertAndQuit("You cannot alter an administrative user."); |
67 | 67 | } |
68 | 68 | |
69 | 69 | } |
70 | 70 | |
71 | -switch($input['mode']) { |
|
71 | +switch ($input['mode']) { |
|
72 | 72 | case '11' : // new user |
73 | 73 | // check if this user name already exist |
74 | 74 | $rs = $modx->db->select('count(id)', $tbl_manager_users, sprintf("username='%s'", $modx->db->escape($newusername))); |
75 | 75 | $limit = $modx->db->getValue($rs); |
76 | - if($limit > 0) { |
|
76 | + if ($limit > 0) { |
|
77 | 77 | webAlertAndQuit("User name is already in use!"); |
78 | 78 | } |
79 | 79 | |
80 | 80 | // check if the email address already exist |
81 | 81 | $rs = $modx->db->select('count(internalKey)', $tbl_user_attributes, sprintf("email='%s' AND id!='%s'", $modx->db->escape($email), $id)); |
82 | 82 | $limit = $modx->db->getValue($rs); |
83 | - if($limit > 0) { |
|
83 | + if ($limit > 0) { |
|
84 | 84 | webAlertAndQuit("Email is already in use!"); |
85 | 85 | } |
86 | 86 | |
87 | 87 | // generate a new password for this user |
88 | - if($specifiedpassword != "" && $passwordgenmethod == "spec") { |
|
89 | - if(strlen($specifiedpassword) < 6) { |
|
88 | + if ($specifiedpassword != "" && $passwordgenmethod == "spec") { |
|
89 | + if (strlen($specifiedpassword) < 6) { |
|
90 | 90 | webAlertAndQuit("Password is too short!"); |
91 | 91 | } else { |
92 | 92 | $newpassword = $specifiedpassword; |
93 | 93 | } |
94 | - } elseif($specifiedpassword == "" && $passwordgenmethod == "spec") { |
|
94 | + } elseif ($specifiedpassword == "" && $passwordgenmethod == "spec") { |
|
95 | 95 | webAlertAndQuit("You didn't specify a password for this user!"); |
96 | - } elseif($passwordgenmethod == 'g') { |
|
96 | + } elseif ($passwordgenmethod == 'g') { |
|
97 | 97 | $newpassword = generate_password(8); |
98 | 98 | } else { |
99 | 99 | webAlertAndQuit("No password generation method specified!"); |
@@ -141,11 +141,11 @@ discard block |
||
141 | 141 | /*******************************************************************************/ |
142 | 142 | // put the user in the user_groups he/ she should be in |
143 | 143 | // first, check that up_perms are switched on! |
144 | - if($use_udperms == 1) { |
|
145 | - if(!empty($user_groups)) { |
|
146 | - for($i = 0; $i < count($user_groups); $i++) { |
|
144 | + if ($use_udperms == 1) { |
|
145 | + if (!empty($user_groups)) { |
|
146 | + for ($i = 0; $i < count($user_groups); $i++) { |
|
147 | 147 | $f = array(); |
148 | - $f['user_group'] = (int)$user_groups[$i]; |
|
148 | + $f['user_group'] = (int) $user_groups[$i]; |
|
149 | 149 | $f['member'] = $internalKey; |
150 | 150 | $modx->db->insert($f, $tbl_member_groups); |
151 | 151 | } |
@@ -153,20 +153,20 @@ discard block |
||
153 | 153 | } |
154 | 154 | // end of user_groups stuff! |
155 | 155 | |
156 | - if($passwordnotifymethod == 'e') { |
|
156 | + if ($passwordnotifymethod == 'e') { |
|
157 | 157 | sendMailMessage($email, $newusername, $newpassword, $fullname); |
158 | - if($input['stay'] != '') { |
|
158 | + if ($input['stay'] != '') { |
|
159 | 159 | $a = ($input['stay'] == '2') ? "12&id={$internalKey}" : "11"; |
160 | - $header = "Location: index.php?a={$a}&r=2&stay=" . $input['stay']; |
|
160 | + $header = "Location: index.php?a={$a}&r=2&stay=".$input['stay']; |
|
161 | 161 | header($header); |
162 | 162 | } else { |
163 | 163 | $header = "Location: index.php?a=75&r=2"; |
164 | 164 | header($header); |
165 | 165 | } |
166 | 166 | } else { |
167 | - if($input['stay'] != '') { |
|
167 | + if ($input['stay'] != '') { |
|
168 | 168 | $a = ($input['stay'] == '2') ? "12&id={$internalKey}" : "11"; |
169 | - $stayUrl = "index.php?a={$a}&r=2&stay=" . $input['stay']; |
|
169 | + $stayUrl = "index.php?a={$a}&r=2&stay=".$input['stay']; |
|
170 | 170 | } else { |
171 | 171 | $stayUrl = "index.php?a=75&r=2"; |
172 | 172 | } |
@@ -199,36 +199,36 @@ discard block |
||
199 | 199 | break; |
200 | 200 | case '12' : // edit user |
201 | 201 | // generate a new password for this user |
202 | - if($genpassword == 1) { |
|
203 | - if($specifiedpassword != "" && $passwordgenmethod == "spec") { |
|
204 | - if(strlen($specifiedpassword) < 6) { |
|
202 | + if ($genpassword == 1) { |
|
203 | + if ($specifiedpassword != "" && $passwordgenmethod == "spec") { |
|
204 | + if (strlen($specifiedpassword) < 6) { |
|
205 | 205 | webAlertAndQuit("Password is too short!"); |
206 | 206 | } else { |
207 | 207 | $newpassword = $specifiedpassword; |
208 | 208 | } |
209 | - } elseif($specifiedpassword == "" && $passwordgenmethod == "spec") { |
|
209 | + } elseif ($specifiedpassword == "" && $passwordgenmethod == "spec") { |
|
210 | 210 | webAlertAndQuit("You didn't specify a password for this user!"); |
211 | - } elseif($passwordgenmethod == 'g') { |
|
211 | + } elseif ($passwordgenmethod == 'g') { |
|
212 | 212 | $newpassword = generate_password(8); |
213 | 213 | } else { |
214 | 214 | webAlertAndQuit("No password generation method specified!"); |
215 | 215 | } |
216 | 216 | } |
217 | - if($passwordnotifymethod == 'e') { |
|
217 | + if ($passwordnotifymethod == 'e') { |
|
218 | 218 | sendMailMessage($email, $newusername, $newpassword, $fullname); |
219 | 219 | } |
220 | 220 | |
221 | 221 | // check if the username already exist |
222 | 222 | $rs = $modx->db->select('count(id)', $tbl_manager_users, sprintf("username='%s' AND id!='%s'", $modx->db->escape($newusername), $id)); |
223 | 223 | $limit = $modx->db->getValue($rs); |
224 | - if($limit > 0) { |
|
224 | + if ($limit > 0) { |
|
225 | 225 | webAlertAndQuit("User name is already in use!"); |
226 | 226 | } |
227 | 227 | |
228 | 228 | // check if the email address already exists |
229 | 229 | $rs = $modx->db->select('count(internalKey)', $tbl_user_attributes, sprintf("email='%s' AND internalKey!='%s'", $modx->db->escape($email), $id)); |
230 | 230 | $limit = $modx->db->getValue($rs); |
231 | - if($limit > 0) { |
|
231 | + if ($limit > 0) { |
|
232 | 232 | webAlertAndQuit("Email is already in use!"); |
233 | 233 | } |
234 | 234 | |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | // update user name and password |
242 | 242 | $field = array(); |
243 | 243 | $field['username'] = $modx->db->escape($newusername); |
244 | - if($genpassword == 1) { |
|
244 | + if ($genpassword == 1) { |
|
245 | 245 | $field['password'] = $modx->phpass->HashPassword($newpassword); |
246 | 246 | } |
247 | 247 | $modx->db->update($field, $tbl_manager_users, "id='{$id}'"); |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | )); |
270 | 270 | |
271 | 271 | // invoke OnManagerChangePassword event |
272 | - if($genpassword == 1) { |
|
272 | + if ($genpassword == 1) { |
|
273 | 273 | $modx->invokeEvent("OnManagerChangePassword", array( |
274 | 274 | "userid" => $id, |
275 | 275 | "username" => $newusername, |
@@ -286,13 +286,13 @@ discard block |
||
286 | 286 | /*******************************************************************************/ |
287 | 287 | // put the user in the user_groups he/ she should be in |
288 | 288 | // first, check that up_perms are switched on! |
289 | - if($use_udperms == 1) { |
|
289 | + if ($use_udperms == 1) { |
|
290 | 290 | // as this is an existing user, delete his/ her entries in the groups before saving the new groups |
291 | 291 | $modx->db->delete($tbl_member_groups, "member='{$id}'"); |
292 | - if(!empty($user_groups)) { |
|
293 | - for($i = 0; $i < count($user_groups); $i++) { |
|
292 | + if (!empty($user_groups)) { |
|
293 | + for ($i = 0; $i < count($user_groups); $i++) { |
|
294 | 294 | $field = array(); |
295 | - $field['user_group'] = (int)$user_groups[$i]; |
|
295 | + $field['user_group'] = (int) $user_groups[$i]; |
|
296 | 296 | $field['member'] = $id; |
297 | 297 | $modx->db->insert($field, $tbl_member_groups); |
298 | 298 | } |
@@ -300,13 +300,13 @@ discard block |
||
300 | 300 | } |
301 | 301 | // end of user_groups stuff! |
302 | 302 | /*******************************************************************************/ |
303 | - if($id == $modx->getLoginUserID() && ($genpassword !== 1 && $passwordnotifymethod != 's')) { |
|
303 | + if ($id == $modx->getLoginUserID() && ($genpassword !== 1 && $passwordnotifymethod != 's')) { |
|
304 | 304 | $modx->webAlertAndQuit($_lang["user_changeddata"], 'javascript:top.location.href="index.php?a=8";'); |
305 | 305 | } |
306 | - if($genpassword == 1 && $passwordnotifymethod == 's') { |
|
307 | - if($input['stay'] != '') { |
|
306 | + if ($genpassword == 1 && $passwordnotifymethod == 's') { |
|
307 | + if ($input['stay'] != '') { |
|
308 | 308 | $a = ($input['stay'] == '2') ? "12&id={$id}" : "11"; |
309 | - $stayUrl = "index.php?a={$a}&r=2&stay=" . $input['stay']; |
|
309 | + $stayUrl = "index.php?a={$a}&r=2&stay=".$input['stay']; |
|
310 | 310 | } else { |
311 | 311 | $stayUrl = "index.php?a=75&r=2"; |
312 | 312 | } |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | <div class="sectionHeader"><?php echo $_lang['user_title']; ?></div> |
327 | 327 | <div class="sectionBody"> |
328 | 328 | <div id="disp"> |
329 | - <p><?php echo sprintf($_lang["password_msg"], $modx->htmlspecialchars($newusername), $modx->htmlspecialchars($newpassword)) . (($id == $modx->getLoginUserID()) ? ' ' . $_lang['user_changeddata'] : ''); ?></p> |
|
329 | + <p><?php echo sprintf($_lang["password_msg"], $modx->htmlspecialchars($newusername), $modx->htmlspecialchars($newpassword)).(($id == $modx->getLoginUserID()) ? ' '.$_lang['user_changeddata'] : ''); ?></p> |
|
330 | 330 | </div> |
331 | 331 | </div> |
332 | 332 | </div> |
@@ -334,9 +334,9 @@ discard block |
||
334 | 334 | |
335 | 335 | include_once "footer.inc.php"; |
336 | 336 | } else { |
337 | - if($input['stay'] != '') { |
|
337 | + if ($input['stay'] != '') { |
|
338 | 338 | $a = ($input['stay'] == '2') ? "12&id={$id}" : "11"; |
339 | - $header = "Location: index.php?a={$a}&r=2&stay=" . $input['stay']; |
|
339 | + $header = "Location: index.php?a={$a}&r=2&stay=".$input['stay']; |
|
340 | 340 | header($header); |
341 | 341 | } else { |
342 | 342 | $header = "Location: index.php?a=75&r=2"; |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | } |
350 | 350 | |
351 | 351 | // Send an email to the user |
352 | -function sendMailMessage($email, $uid, $pwd, $ufn) { |
|
352 | +function sendMailMessage($email, $uid, $pwd, $ufn){ |
|
353 | 353 | global $modx, $_lang, $signupemail_message; |
354 | 354 | global $emailsubject, $emailsender; |
355 | 355 | global $site_name; |
@@ -371,14 +371,14 @@ discard block |
||
371 | 371 | $param['to'] = $email; |
372 | 372 | $param['type'] = 'text'; |
373 | 373 | $rs = $modx->sendmail($param); |
374 | - if(!$rs) { |
|
374 | + if (!$rs) { |
|
375 | 375 | $modx->manager->saveFormValues(); |
376 | 376 | $modx->messageQuit("{$email} - {$_lang['error_sending_email']}"); |
377 | 377 | } |
378 | 378 | } |
379 | 379 | |
380 | 380 | // Save User Settings |
381 | -function saveUserSettings($id) { |
|
381 | +function saveUserSettings($id){ |
|
382 | 382 | global $modx; |
383 | 383 | $tbl_user_settings = $modx->getFullTableName('user_settings'); |
384 | 384 | |
@@ -430,27 +430,27 @@ discard block |
||
430 | 430 | |
431 | 431 | // get user setting field names |
432 | 432 | $settings = array(); |
433 | - foreach($_POST as $n => $v) { |
|
434 | - if(in_array($n, $ignore) || (!in_array($n, $defaults) && is_scalar($v) && trim($v) == '') || (!in_array($n, $defaults) && is_array($v) && empty($v))) { |
|
433 | + foreach ($_POST as $n => $v) { |
|
434 | + if (in_array($n, $ignore) || (!in_array($n, $defaults) && is_scalar($v) && trim($v) == '') || (!in_array($n, $defaults) && is_array($v) && empty($v))) { |
|
435 | 435 | continue; |
436 | 436 | } // ignore blacklist and empties |
437 | 437 | $settings[$n] = $v; // this value should be saved |
438 | 438 | } |
439 | 439 | |
440 | - foreach($defaults as $k) { |
|
441 | - if(isset($settings['default_' . $k]) && $settings['default_' . $k] == '1') { |
|
440 | + foreach ($defaults as $k) { |
|
441 | + if (isset($settings['default_'.$k]) && $settings['default_'.$k] == '1') { |
|
442 | 442 | unset($settings[$k]); |
443 | 443 | } |
444 | - unset($settings['default_' . $k]); |
|
444 | + unset($settings['default_'.$k]); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | $modx->db->delete($tbl_user_settings, "user='{$id}'"); |
448 | 448 | |
449 | - foreach($settings as $n => $vl) { |
|
450 | - if(is_array($vl)) { |
|
449 | + foreach ($settings as $n => $vl) { |
|
450 | + if (is_array($vl)) { |
|
451 | 451 | $vl = implode(",", $vl); |
452 | 452 | } |
453 | - if($vl != '') { |
|
453 | + if ($vl != '') { |
|
454 | 454 | $f = array(); |
455 | 455 | $f['user'] = $id; |
456 | 456 | $f['setting_name'] = $n; |
@@ -462,20 +462,20 @@ discard block |
||
462 | 462 | } |
463 | 463 | |
464 | 464 | // Web alert - sends an alert to web browser |
465 | -function webAlertAndQuit($msg) { |
|
465 | +function webAlertAndQuit($msg){ |
|
466 | 466 | global $id, $modx; |
467 | 467 | $mode = $_POST['mode']; |
468 | 468 | $modx->manager->saveFormValues($mode); |
469 | - $modx->webAlertAndQuit($msg, "index.php?a={$mode}" . ($mode == '12' ? "&id={$id}" : '')); |
|
469 | + $modx->webAlertAndQuit($msg, "index.php?a={$mode}".($mode == '12' ? "&id={$id}" : '')); |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | // Generate password |
473 | -function generate_password($length = 10) { |
|
473 | +function generate_password($length = 10){ |
|
474 | 474 | $allowable_characters = "abcdefghjkmnpqrstuvxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789"; |
475 | 475 | $ps_len = strlen($allowable_characters); |
476 | 476 | mt_srand((double) microtime() * 1000000); |
477 | 477 | $pass = ""; |
478 | - for($i = 0; $i < $length; $i++) { |
|
478 | + for ($i = 0; $i < $length; $i++) { |
|
479 | 479 | $pass .= $allowable_characters[mt_rand(0, $ps_len - 1)]; |
480 | 480 | } |
481 | 481 | return $pass; |
@@ -1,46 +1,46 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('settings')) { |
|
5 | +if (!$modx->hasPermission('settings')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | $data = $_POST; |
9 | 9 | // lose the POST now, gets rid of quirky issue with Safari 3 - see FS#972 |
10 | 10 | unset($_POST); |
11 | 11 | |
12 | -if($data['friendly_urls']==='1' && strpos($_SERVER['SERVER_SOFTWARE'],'IIS')===false) |
|
12 | +if ($data['friendly_urls'] === '1' && strpos($_SERVER['SERVER_SOFTWARE'], 'IIS') === false) |
|
13 | 13 | { |
14 | - $htaccess = $modx->config['base_path'] . '.htaccess'; |
|
15 | - $sample_htaccess = $modx->config['base_path'] . 'ht.access'; |
|
16 | - $dir = '/' . trim($modx->config['base_url'],'/'); |
|
17 | - if(is_file($htaccess)) |
|
14 | + $htaccess = $modx->config['base_path'].'.htaccess'; |
|
15 | + $sample_htaccess = $modx->config['base_path'].'ht.access'; |
|
16 | + $dir = '/'.trim($modx->config['base_url'], '/'); |
|
17 | + if (is_file($htaccess)) |
|
18 | 18 | { |
19 | 19 | $_ = file_get_contents($htaccess); |
20 | - if(strpos($_,'RewriteBase')===false) |
|
20 | + if (strpos($_, 'RewriteBase') === false) |
|
21 | 21 | { |
22 | 22 | $warnings[] = $_lang["settings_friendlyurls_alert2"]; |
23 | 23 | } |
24 | - elseif(is_writable($htaccess)) |
|
24 | + elseif (is_writable($htaccess)) |
|
25 | 25 | { |
26 | - $_ = preg_replace('@RewriteBase.+@',"RewriteBase {$dir}", $_); |
|
27 | - if(!@file_put_contents($htaccess,$_)) |
|
26 | + $_ = preg_replace('@RewriteBase.+@', "RewriteBase {$dir}", $_); |
|
27 | + if (!@file_put_contents($htaccess, $_)) |
|
28 | 28 | { |
29 | 29 | $warnings[] = $_lang["settings_friendlyurls_alert2"]; |
30 | 30 | } |
31 | 31 | } |
32 | 32 | } |
33 | - elseif(is_file($sample_htaccess)) |
|
33 | + elseif (is_file($sample_htaccess)) |
|
34 | 34 | { |
35 | - if(!@rename($sample_htaccess,$htaccess)) |
|
35 | + if (!@rename($sample_htaccess, $htaccess)) |
|
36 | 36 | { |
37 | 37 | $warnings[] = $_lang["settings_friendlyurls_alert"]; |
38 | 38 | } |
39 | - elseif($modx->config['base_url']!=='/') |
|
39 | + elseif ($modx->config['base_url'] !== '/') |
|
40 | 40 | { |
41 | 41 | $_ = file_get_contents($htaccess); |
42 | - $_ = preg_replace('@RewriteBase.+@',"RewriteBase {$dir}", $_); |
|
43 | - if(!@file_put_contents($htaccess,$_)) |
|
42 | + $_ = preg_replace('@RewriteBase.+@', "RewriteBase {$dir}", $_); |
|
43 | + if (!@file_put_contents($htaccess, $_)) |
|
44 | 44 | { |
45 | 45 | $warnings[] = $_lang["settings_friendlyurls_alert2"]; |
46 | 46 | } |
@@ -48,17 +48,17 @@ discard block |
||
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | -if (file_exists(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/css/styles.min.css')) { |
|
52 | - unlink(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/css/styles.min.css'); |
|
51 | +if (file_exists(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/css/styles.min.css')) { |
|
52 | + unlink(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/css/styles.min.css'); |
|
53 | 53 | } |
54 | 54 | |
55 | -$data['filemanager_path'] = str_replace('[(base_path)]',MODX_BASE_PATH,$data['filemanager_path']); |
|
56 | -$data['rb_base_dir'] = str_replace('[(base_path)]',MODX_BASE_PATH,$data['rb_base_dir']); |
|
55 | +$data['filemanager_path'] = str_replace('[(base_path)]', MODX_BASE_PATH, $data['filemanager_path']); |
|
56 | +$data['rb_base_dir'] = str_replace('[(base_path)]', MODX_BASE_PATH, $data['rb_base_dir']); |
|
57 | 57 | |
58 | 58 | if (isset($data) && count($data) > 0) { |
59 | - if(isset($data['manager_language'])) { |
|
60 | - $lang_path = MODX_MANAGER_PATH . 'includes/lang/' . $data['manager_language'] . '.inc.php'; |
|
61 | - if(is_file($lang_path)) { |
|
59 | + if (isset($data['manager_language'])) { |
|
60 | + $lang_path = MODX_MANAGER_PATH.'includes/lang/'.$data['manager_language'].'.inc.php'; |
|
61 | + if (is_file($lang_path)) { |
|
62 | 62 | include($lang_path); |
63 | 63 | global $modx_lang_attribute; |
64 | 64 | $data['lang_code'] = !$modx_lang_attribute ? 'en' : $modx_lang_attribute; |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | } |
67 | 67 | $savethese = array(); |
68 | 68 | $data['sys_files_checksum'] = $modx->manager->getSystemChecksum($data['check_files_onlogin']); |
69 | - $data['mail_check_timeperiod'] = (int)$data['mail_check_timeperiod'] < 60 ? 60 : $data['mail_check_timeperiod']; // updateMail() in mainMenu no faster than every minute |
|
69 | + $data['mail_check_timeperiod'] = (int) $data['mail_check_timeperiod'] < 60 ? 60 : $data['mail_check_timeperiod']; // updateMail() in mainMenu no faster than every minute |
|
70 | 70 | foreach ($data as $k => $v) { |
71 | 71 | switch ($k) { |
72 | 72 | case 'settings_version':{ |
73 | - if($modx->getVersionData('version')!=$data['settings_version']){ |
|
74 | - $modx->logEvent(17,2,'<pre>'.var_export($data['settings_version'],true).'</pre>','fake settings_version'); |
|
73 | + if ($modx->getVersionData('version') != $data['settings_version']) { |
|
74 | + $modx->logEvent(17, 2, '<pre>'.var_export($data['settings_version'], true).'</pre>', 'fake settings_version'); |
|
75 | 75 | $v = $modx->getVersionData('version'); |
76 | 76 | } |
77 | 77 | break; |
@@ -92,21 +92,21 @@ discard block |
||
92 | 92 | case 'rb_base_url': |
93 | 93 | case 'filemanager_path': |
94 | 94 | $v = trim($v); |
95 | - $v = rtrim($v,'/') . '/'; |
|
95 | + $v = rtrim($v, '/').'/'; |
|
96 | 96 | break; |
97 | 97 | case 'manager_language': |
98 | - $langDir = realpath(MODX_MANAGER_PATH . 'includes/lang'); |
|
99 | - $langFile = realpath(MODX_MANAGER_PATH . 'includes/lang/' . $v . '.inc.php'); |
|
98 | + $langDir = realpath(MODX_MANAGER_PATH.'includes/lang'); |
|
99 | + $langFile = realpath(MODX_MANAGER_PATH.'includes/lang/'.$v.'.inc.php'); |
|
100 | 100 | $langFileDir = dirname($langFile); |
101 | - if($langDir !== $langFileDir || !file_exists($langFile)) { |
|
101 | + if ($langDir !== $langFileDir || !file_exists($langFile)) { |
|
102 | 102 | $v = 'english'; |
103 | 103 | } |
104 | 104 | break; |
105 | 105 | case 'smtppw': |
106 | 106 | if ($v !== '********************' && $v !== '') { |
107 | 107 | $v = trim($v); |
108 | - $v = base64_encode($v) . substr(str_shuffle('abcdefghjkmnpqrstuvxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'), 0, 7); |
|
109 | - $v = str_replace('=','%',$v); |
|
108 | + $v = base64_encode($v).substr(str_shuffle('abcdefghjkmnpqrstuvxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'), 0, 7); |
|
109 | + $v = str_replace('=', '%', $v); |
|
110 | 110 | } elseif ($v === '********************') { |
111 | 111 | $k = ''; |
112 | 112 | } |
@@ -115,14 +115,14 @@ discard block |
||
115 | 115 | $v = str_replace(array(' ,', ', '), ',', $v); |
116 | 116 | if ($v !== ',') { |
117 | 117 | $v = ($v != 'MODX_SITE_HOSTNAMES') ? $v : ''; |
118 | - $configString = '<?php' . "\n" . 'define(\'MODX_SITE_HOSTNAMES\', \'' . $v . '\');' . "\n"; |
|
119 | - @file_put_contents(MODX_BASE_PATH . 'assets/cache/siteHostnames.php', $configString); |
|
118 | + $configString = '<?php'."\n".'define(\'MODX_SITE_HOSTNAMES\', \''.$v.'\');'."\n"; |
|
119 | + @file_put_contents(MODX_BASE_PATH.'assets/cache/siteHostnames.php', $configString); |
|
120 | 120 | } |
121 | 121 | $k = ''; |
122 | 122 | break; |
123 | 123 | case 'session_timeout': |
124 | 124 | $mail_check_timeperiod = $data['mail_check_timeperiod']; |
125 | - $v = (int)$v < ($data['mail_check_timeperiod']/60+1) ? ($data['mail_check_timeperiod']/60+1) : $v; // updateMail() in mainMenu pings as per mail_check_timeperiod, so +1min is minimum |
|
125 | + $v = (int) $v < ($data['mail_check_timeperiod'] / 60 + 1) ? ($data['mail_check_timeperiod'] / 60 + 1) : $v; // updateMail() in mainMenu pings as per mail_check_timeperiod, so +1min is minimum |
|
126 | 126 | break; |
127 | 127 | default: |
128 | 128 | break; |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | $modx->config[$k] = $v; |
133 | 133 | |
134 | - if(!empty($k)) $savethese[] = '(\''.$modx->db->escape($k).'\', \''.$modx->db->escape($v).'\')'; |
|
134 | + if (!empty($k)) $savethese[] = '(\''.$modx->db->escape($k).'\', \''.$modx->db->escape($v).'\')'; |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | // Run a single query to save all the values |
@@ -141,16 +141,16 @@ discard block |
||
141 | 141 | |
142 | 142 | // Reset Template Pages |
143 | 143 | if (isset($data['reset_template'])) { |
144 | - $newtemplate = (int)$data['default_template']; |
|
145 | - $oldtemplate = (int)$data['old_template']; |
|
144 | + $newtemplate = (int) $data['default_template']; |
|
145 | + $oldtemplate = (int) $data['old_template']; |
|
146 | 146 | $tbl = $modx->getFullTableName('site_content'); |
147 | 147 | $reset = $data['reset_template']; |
148 | - if($reset==1) $modx->db->update(array('template' => $newtemplate), $tbl, "type='document'"); |
|
149 | - else if($reset==2) $modx->db->update(array('template' => $newtemplate), $tbl, "template='{$oldtemplate}'"); |
|
148 | + if ($reset == 1) $modx->db->update(array('template' => $newtemplate), $tbl, "type='document'"); |
|
149 | + else if ($reset == 2) $modx->db->update(array('template' => $newtemplate), $tbl, "template='{$oldtemplate}'"); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | // empty cache |
153 | 153 | $modx->clearCache('full'); |
154 | 154 | } |
155 | -$header="Location: index.php?a=7&r=10"; |
|
155 | +$header = "Location: index.php?a=7&r=10"; |
|
156 | 156 | header($header); |
@@ -1,13 +1,13 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('save_plugin') && !$modx->hasPermission('save_snippet') && !$modx->hasPermission('save_template') && !$modx->hasPermission('save_module')) { |
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -$id = isset($_GET['catId'])? (int)$_GET['catId'] : 0; |
|
10 | -if ($id==0) { |
|
9 | +$id = isset($_GET['catId']) ? (int) $_GET['catId'] : 0; |
|
10 | +if ($id == 0) { |
|
11 | 11 | $modx->webAlertAndQuit($_lang["error_no_id"]); |
12 | 12 | } |
13 | 13 | |
@@ -19,5 +19,5 @@ discard block |
||
19 | 19 | deleteCategory($id); |
20 | 20 | |
21 | 21 | // finished emptying cache - redirect |
22 | -$header="Location: index.php?a=76"; |
|
22 | +$header = "Location: index.php?a=76"; |
|
23 | 23 | header($header); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('save_document')) { |
@@ -28,18 +28,18 @@ discard block |
||
28 | 28 | $document_groups = (isset($_POST['chkalldocs']) && $_POST['chkalldocs'] == 'on') ? array() : $_POST['docgroups']; |
29 | 29 | $type = $_POST['type']; |
30 | 30 | $contentType = $modx->db->escape($_POST['contentType']); |
31 | -$contentdispo = (int)$_POST['content_dispo']; |
|
31 | +$contentdispo = (int) $_POST['content_dispo']; |
|
32 | 32 | $longtitle = $modx->db->escape($_POST['longtitle']); |
33 | -$donthit = (int)$_POST['donthit']; |
|
33 | +$donthit = (int) $_POST['donthit']; |
|
34 | 34 | $menutitle = $modx->db->escape($_POST['menutitle']); |
35 | -$hidemenu = (int)$_POST['hidemenu']; |
|
35 | +$hidemenu = (int) $_POST['hidemenu']; |
|
36 | 36 | $aliasvisible = $_POST['alias_visible']; |
37 | 37 | |
38 | 38 | /************* webber ********/ |
39 | -$sd=isset($_POST['dir'])?'&dir='.$_POST['dir']:'&dir=DESC'; |
|
40 | -$sb=isset($_POST['sort'])?'&sort='.$_POST['sort']:'&sort=pub_date'; |
|
41 | -$pg=isset($_POST['page'])?'&page='.(int)$_POST['page']:''; |
|
42 | -$add_path=$sd.$sb.$pg; |
|
39 | +$sd = isset($_POST['dir']) ? '&dir='.$_POST['dir'] : '&dir=DESC'; |
|
40 | +$sb = isset($_POST['sort']) ? '&sort='.$_POST['sort'] : '&sort=pub_date'; |
|
41 | +$pg = isset($_POST['page']) ? '&page='.(int) $_POST['page'] : ''; |
|
42 | +$add_path = $sd.$sb.$pg; |
|
43 | 43 | |
44 | 44 | |
45 | 45 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | // auto assign alias |
74 | 74 | if (!$alias && $automatic_alias) { |
75 | 75 | $alias = strtolower($modx->stripAlias(trim($pagetitle))); |
76 | - if(!$allow_duplicate_alias) { |
|
76 | + if (!$allow_duplicate_alias) { |
|
77 | 77 | if ($modx->db->getValue($modx->db->select('COUNT(id)', $tbl_site_content, "id<>'$id' AND alias='$alias'")) != 0) { |
78 | 78 | $cnt = 1; |
79 | 79 | $tempAlias = $alias; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | $alias = $tempAlias; |
86 | 86 | } |
87 | - }else{ |
|
87 | + } else { |
|
88 | 88 | if ($modx->db->getValue($modx->db->select('COUNT(id)', $tbl_site_content, "id<>'$id' AND parent=$parent AND alias='$alias'")) != 0) { |
89 | 89 | $cnt = 1; |
90 | 90 | $tempAlias = $alias; |
@@ -165,19 +165,19 @@ discard block |
||
165 | 165 | } |
166 | 166 | |
167 | 167 | // get document groups for current user |
168 | -$tmplvars = array (); |
|
168 | +$tmplvars = array(); |
|
169 | 169 | if ($_SESSION['mgrDocgroups']) { |
170 | 170 | $docgrp = implode(",", $_SESSION['mgrDocgroups']); |
171 | 171 | } |
172 | 172 | |
173 | 173 | // ensure that user has not made this document inaccessible to themselves |
174 | -if($_SESSION['mgrRole'] != 1 && is_array($document_groups)) { |
|
174 | +if ($_SESSION['mgrRole'] != 1 && is_array($document_groups)) { |
|
175 | 175 | $document_group_list = implode(',', $document_groups); |
176 | - $document_group_list = implode(',', array_filter(explode(',',$document_group_list), 'is_numeric')); |
|
177 | - if(!empty($document_group_list)) { |
|
176 | + $document_group_list = implode(',', array_filter(explode(',', $document_group_list), 'is_numeric')); |
|
177 | + if (!empty($document_group_list)) { |
|
178 | 178 | $rs = $modx->db->select('COUNT(mg.id)', "{$tbl_membergroup_access} AS mga, {$tbl_member_groups} AS mg", "mga.membergroup = mg.user_group AND mga.documentgroup IN({$document_group_list}) AND mg.member = {$_SESSION['mgrInternalKey']}"); |
179 | 179 | $count = $modx->db->getValue($rs); |
180 | - if($count == 0) { |
|
180 | + if ($count == 0) { |
|
181 | 181 | if ($actionToTake == 'edit') { |
182 | 182 | $modx->manager->saveFormValues(27); |
183 | 183 | $modx->webAlertAndQuit(sprintf($_lang["resource_permissions_error"]), "index.php?a=27&id={$id}"); |
@@ -195,45 +195,45 @@ discard block |
||
195 | 195 | INNER JOIN {$tbl_site_tmplvar_templates} AS tvtpl ON tvtpl.tmplvarid = tv.id |
196 | 196 | LEFT JOIN {$tbl_site_tmplvar_contentvalues} AS tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$id}' |
197 | 197 | LEFT JOIN {$tbl_site_tmplvar_access} AS tva ON tva.tmplvarid=tv.id", |
198 | - "tvtpl.templateid = '{$template}' AND (1='{$_SESSION['mgrRole']}' OR ISNULL(tva.documentgroup)" . ((!$docgrp) ? "" : " OR tva.documentgroup IN ($docgrp)") . ")", |
|
198 | + "tvtpl.templateid = '{$template}' AND (1='{$_SESSION['mgrRole']}' OR ISNULL(tva.documentgroup)".((!$docgrp) ? "" : " OR tva.documentgroup IN ($docgrp)").")", |
|
199 | 199 | "tv.rank" |
200 | 200 | ); |
201 | 201 | while ($row = $modx->db->getRow($rs)) { |
202 | 202 | $tmplvar = ''; |
203 | 203 | switch ($row['type']) { |
204 | 204 | case 'url': |
205 | - $tmplvar = $_POST["tv" . $row['id']]; |
|
206 | - if ($_POST["tv" . $row['id'] . '_prefix'] != '--') { |
|
207 | - $tmplvar = str_replace(array ( |
|
205 | + $tmplvar = $_POST["tv".$row['id']]; |
|
206 | + if ($_POST["tv".$row['id'].'_prefix'] != '--') { |
|
207 | + $tmplvar = str_replace(array( |
|
208 | 208 | "feed://", |
209 | 209 | "ftp://", |
210 | 210 | "http://", |
211 | 211 | "https://", |
212 | 212 | "mailto:" |
213 | 213 | ), "", $tmplvar); |
214 | - $tmplvar = $_POST["tv" . $row['id'] . '_prefix'] . $tmplvar; |
|
214 | + $tmplvar = $_POST["tv".$row['id'].'_prefix'].$tmplvar; |
|
215 | 215 | } |
216 | 216 | break; |
217 | 217 | case 'file': |
218 | - $tmplvar = $_POST["tv" . $row['id']]; |
|
218 | + $tmplvar = $_POST["tv".$row['id']]; |
|
219 | 219 | break; |
220 | 220 | default: |
221 | - if (is_array($_POST["tv" . $row['id']])) { |
|
221 | + if (is_array($_POST["tv".$row['id']])) { |
|
222 | 222 | // handles checkboxes & multiple selects elements |
223 | - $feature_insert = array (); |
|
224 | - $lst = $_POST["tv" . $row['id']]; |
|
223 | + $feature_insert = array(); |
|
224 | + $lst = $_POST["tv".$row['id']]; |
|
225 | 225 | while (list ($featureValue, $feature_item) = each($lst)) { |
226 | 226 | $feature_insert[count($feature_insert)] = $feature_item; |
227 | 227 | } |
228 | 228 | $tmplvar = implode("||", $feature_insert); |
229 | 229 | } else { |
230 | - $tmplvar = $_POST["tv" . $row['id']]; |
|
230 | + $tmplvar = $_POST["tv".$row['id']]; |
|
231 | 231 | } |
232 | 232 | break; |
233 | 233 | } |
234 | 234 | // save value if it was modified |
235 | 235 | if (strlen($tmplvar) > 0 && $tmplvar != $row['default_text']) { |
236 | - $tmplvars[$row['id']] = array ( |
|
236 | + $tmplvars[$row['id']] = array( |
|
237 | 237 | $row['id'], |
238 | 238 | $tmplvar |
239 | 239 | ); |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | // check to see if the user is allowed to save the document in the place he wants to save it in |
257 | 257 | if ($use_udperms == 1) { |
258 | 258 | if ($existingDocument['parent'] != $parent) { |
259 | - include_once MODX_MANAGER_PATH ."processors/user_documents_permissions.class.php"; |
|
259 | + include_once MODX_MANAGER_PATH."processors/user_documents_permissions.class.php"; |
|
260 | 260 | $udperms = new udperms(); |
261 | 261 | $udperms->user = $modx->getLoginUserID(); |
262 | 262 | $udperms->document = $parent; |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | case 'new' : |
279 | 279 | |
280 | 280 | // invoke OnBeforeDocFormSave event |
281 | - switch($modx->config['docid_incrmnt_method']) |
|
281 | + switch ($modx->config['docid_incrmnt_method']) |
|
282 | 282 | { |
283 | 283 | case '1': |
284 | 284 | $from = "{$tbl_site_content} AS T0 LEFT JOIN {$tbl_site_content} AS T1 ON T0.id + 1 = T1.id"; |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | $id = $modx->db->getValue($rs); |
288 | 288 | break; |
289 | 289 | case '2': |
290 | - $rs = $modx->db->select('MAX(id)+1',$tbl_site_content); |
|
290 | + $rs = $modx->db->select('MAX(id)+1', $tbl_site_content); |
|
291 | 291 | $id = $modx->db->getValue($rs); |
292 | 292 | break; |
293 | 293 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | $id = ''; |
296 | 296 | } |
297 | 297 | |
298 | - $modx->invokeEvent("OnBeforeDocFormSave", array ( |
|
298 | + $modx->invokeEvent("OnBeforeDocFormSave", array( |
|
299 | 299 | "mode" => "new", |
300 | 300 | "id" => $id |
301 | 301 | )); |
@@ -310,48 +310,47 @@ discard block |
||
310 | 310 | $publishedon = ($published ? $currentdate : 0); |
311 | 311 | $publishedby = ($published ? $modx->getLoginUserID() : 0); |
312 | 312 | |
313 | - if ((!empty($pub_date))&&($published)){ |
|
314 | - $publishedon=$pub_date; |
|
315 | - } |
|
316 | - |
|
317 | - $dbInsert = array |
|
318 | - ( |
|
319 | - "introtext" => $introtext , |
|
320 | - "content" => $content , |
|
321 | - "pagetitle" => $pagetitle , |
|
322 | - "longtitle" => $longtitle , |
|
323 | - "type" => $type , |
|
324 | - "description" => $description , |
|
325 | - "alias" => $alias , |
|
326 | - "link_attributes" => $link_attributes , |
|
327 | - "isfolder" => $isfolder , |
|
328 | - "richtext" => $richtext , |
|
329 | - "published" => $published , |
|
330 | - "parent" => $parent , |
|
331 | - "template" => $template , |
|
332 | - "menuindex" => $menuindex , |
|
333 | - "searchable" => $searchable , |
|
334 | - "cacheable" => $cacheable , |
|
335 | - "createdby" => $modx->getLoginUserID() , |
|
336 | - "createdon" => $currentdate , |
|
337 | - "editedby" => $modx->getLoginUserID() , |
|
338 | - "editedon" => $currentdate , |
|
339 | - "publishedby" => $publishedby , |
|
340 | - "publishedon" => $publishedon , |
|
341 | - "pub_date" => $pub_date , |
|
342 | - "unpub_date" => $unpub_date , |
|
343 | - "contentType" => $contentType , |
|
344 | - "content_dispo" => $contentdispo , |
|
345 | - "donthit" => $donthit , |
|
346 | - "menutitle" => $menutitle , |
|
347 | - "hidemenu" => $hidemenu , |
|
313 | + if ((!empty($pub_date)) && ($published)) { |
|
314 | + $publishedon = $pub_date; |
|
315 | + } |
|
316 | + |
|
317 | + $dbInsert = array( |
|
318 | + "introtext" => $introtext, |
|
319 | + "content" => $content, |
|
320 | + "pagetitle" => $pagetitle, |
|
321 | + "longtitle" => $longtitle, |
|
322 | + "type" => $type, |
|
323 | + "description" => $description, |
|
324 | + "alias" => $alias, |
|
325 | + "link_attributes" => $link_attributes, |
|
326 | + "isfolder" => $isfolder, |
|
327 | + "richtext" => $richtext, |
|
328 | + "published" => $published, |
|
329 | + "parent" => $parent, |
|
330 | + "template" => $template, |
|
331 | + "menuindex" => $menuindex, |
|
332 | + "searchable" => $searchable, |
|
333 | + "cacheable" => $cacheable, |
|
334 | + "createdby" => $modx->getLoginUserID(), |
|
335 | + "createdon" => $currentdate, |
|
336 | + "editedby" => $modx->getLoginUserID(), |
|
337 | + "editedon" => $currentdate, |
|
338 | + "publishedby" => $publishedby, |
|
339 | + "publishedon" => $publishedon, |
|
340 | + "pub_date" => $pub_date, |
|
341 | + "unpub_date" => $unpub_date, |
|
342 | + "contentType" => $contentType, |
|
343 | + "content_dispo" => $contentdispo, |
|
344 | + "donthit" => $donthit, |
|
345 | + "menutitle" => $menutitle, |
|
346 | + "hidemenu" => $hidemenu, |
|
348 | 347 | "alias_visible" => $aliasvisible |
349 | 348 | ); |
350 | 349 | |
351 | 350 | if ($id != '') |
352 | 351 | $dbInsert["id"] = $id; |
353 | 352 | |
354 | - $key = $modx->db->insert( $dbInsert, $tbl_site_content); |
|
353 | + $key = $modx->db->insert($dbInsert, $tbl_site_content); |
|
355 | 354 | |
356 | 355 | $tvChanges = array(); |
357 | 356 | foreach ($tmplvars as $field => $value) { |
@@ -373,7 +372,7 @@ discard block |
||
373 | 372 | foreach ($document_groups as $value_pair) { |
374 | 373 | // first, split the pair (this is a new document, so ignore the second value |
375 | 374 | list($group) = explode(',', $value_pair); // @see actions/mutate_content.dynamic.php @ line 1138 (permissions list) |
376 | - $new_groups[] = '('.(int)$group.','.$key.')'; |
|
375 | + $new_groups[] = '('.(int) $group.','.$key.')'; |
|
377 | 376 | } |
378 | 377 | $saved = true; |
379 | 378 | if (!empty($new_groups)) { |
@@ -382,7 +381,7 @@ discard block |
||
382 | 381 | } else { |
383 | 382 | $isManager = $modx->hasPermission('access_permissions'); |
384 | 383 | $isWeb = $modx->hasPermission('web_access_permissions'); |
385 | - if($use_udperms && !($isManager || $isWeb) && $parent != 0) { |
|
384 | + if ($use_udperms && !($isManager || $isWeb) && $parent != 0) { |
|
386 | 385 | // inherit document access permissions |
387 | 386 | $modx->db->insert( |
388 | 387 | array( |
@@ -401,17 +400,17 @@ discard block |
||
401 | 400 | } |
402 | 401 | |
403 | 402 | // invoke OnDocFormSave event |
404 | - $modx->invokeEvent("OnDocFormSave", array ( |
|
403 | + $modx->invokeEvent("OnDocFormSave", array( |
|
405 | 404 | "mode" => "new", |
406 | 405 | "id" => $key |
407 | 406 | )); |
408 | 407 | |
409 | 408 | // secure web documents - flag as private |
410 | - include MODX_MANAGER_PATH . "includes/secure_web_documents.inc.php"; |
|
409 | + include MODX_MANAGER_PATH."includes/secure_web_documents.inc.php"; |
|
411 | 410 | secureWebDocument($key); |
412 | 411 | |
413 | 412 | // secure manager documents - flag as private |
414 | - include MODX_MANAGER_PATH . "includes/secure_mgr_documents.inc.php"; |
|
413 | + include MODX_MANAGER_PATH."includes/secure_mgr_documents.inc.php"; |
|
415 | 414 | secureMgrDocument($key); |
416 | 415 | |
417 | 416 | // Set the item name for logger |
@@ -430,13 +429,13 @@ discard block |
||
430 | 429 | // document |
431 | 430 | if ($_POST['mode'] == "4") |
432 | 431 | $a = ($_POST['stay'] == '2') ? "27&id=$key" : "4&pid=$parent"; |
433 | - $header = "Location: index.php?a=" . $a . "&r=1&stay=" . $_POST['stay']; |
|
432 | + $header = "Location: index.php?a=".$a."&r=1&stay=".$_POST['stay']; |
|
434 | 433 | } else { |
435 | 434 | $header = "Location: index.php?a=3&id=$key&r=1"; |
436 | 435 | } |
437 | 436 | |
438 | 437 | if (headers_sent()) { |
439 | - $header = str_replace('Location: ','',$header); |
|
438 | + $header = str_replace('Location: ', '', $header); |
|
440 | 439 | echo "<script>document.location.href='$header';</script>\n"; |
441 | 440 | } else { |
442 | 441 | header($header); |
@@ -490,7 +489,7 @@ discard block |
||
490 | 489 | if (!$was_published && $published) { |
491 | 490 | $publishedon = $currentdate; |
492 | 491 | $publishedby = $modx->getLoginUserID(); |
493 | - }elseif ((!empty($pub_date)&& $pub_date<=$currentdate && $published)) { |
|
492 | + }elseif ((!empty($pub_date) && $pub_date <= $currentdate && $published)) { |
|
494 | 493 | $publishedon = $pub_date; |
495 | 494 | $publishedby = $modx->getLoginUserID(); |
496 | 495 | }elseif ($was_published && !$published) { |
@@ -502,7 +501,7 @@ discard block |
||
502 | 501 | } |
503 | 502 | |
504 | 503 | // invoke OnBeforeDocFormSave event |
505 | - $modx->invokeEvent("OnBeforeDocFormSave", array ( |
|
504 | + $modx->invokeEvent("OnBeforeDocFormSave", array( |
|
506 | 505 | "mode" => "upd", |
507 | 506 | "id" => $id |
508 | 507 | )); |
@@ -527,7 +526,7 @@ discard block |
||
527 | 526 | . "menuindex={$menuindex}, " |
528 | 527 | . "searchable={$searchable}, " |
529 | 528 | . "cacheable={$cacheable}, " |
530 | - . "editedby=" . $modx->getLoginUserID() . ", " |
|
529 | + . "editedby=".$modx->getLoginUserID().", " |
|
531 | 530 | . "editedon={$currentdate}, " |
532 | 531 | . "publishedon={$publishedon}, " |
533 | 532 | . "publishedby={$publishedby}, " |
@@ -541,7 +540,7 @@ discard block |
||
541 | 540 | |
542 | 541 | // update template variables |
543 | 542 | $rs = $modx->db->select('id, tmplvarid', $tbl_site_tmplvar_contentvalues, "contentid='{$id}'"); |
544 | - $tvIds = array (); |
|
543 | + $tvIds = array(); |
|
545 | 544 | while ($row = $modx->db->getRow($rs)) { |
546 | 545 | $tvIds[$row['tmplvarid']] = $row['id']; |
547 | 546 | } |
@@ -594,7 +593,7 @@ discard block |
||
594 | 593 | 'groups.id, groups.document_group', |
595 | 594 | "{$tbl_document_groups} AS groups |
596 | 595 | LEFT JOIN {$tbl_documentgroup_names} AS dgn ON dgn.id = groups.document_group", |
597 | - "((1=".(int)$isManager." AND dgn.private_memgroup) OR (1=".(int)$isWeb." AND dgn.private_webgroup)) AND groups.document = '{$id}'" |
|
596 | + "((1=".(int) $isManager." AND dgn.private_memgroup) OR (1=".(int) $isWeb." AND dgn.private_webgroup)) AND groups.document = '{$id}'" |
|
598 | 597 | ); |
599 | 598 | $old_groups = array(); |
600 | 599 | while ($row = $modx->db->getRow($rs)) $old_groups[$row['document_group']] = $row['id']; |
@@ -606,7 +605,7 @@ discard block |
||
606 | 605 | unset($old_groups[$group]); |
607 | 606 | continue; |
608 | 607 | } elseif ($link_id == 'new') { |
609 | - $insertions[] = '('.(int)$group.','.$id.')'; |
|
608 | + $insertions[] = '('.(int) $group.','.$id.')'; |
|
610 | 609 | } |
611 | 610 | } |
612 | 611 | if (!empty($insertions)) { |
@@ -638,17 +637,17 @@ discard block |
||
638 | 637 | |
639 | 638 | |
640 | 639 | // invoke OnDocFormSave event |
641 | - $modx->invokeEvent("OnDocFormSave", array ( |
|
640 | + $modx->invokeEvent("OnDocFormSave", array( |
|
642 | 641 | "mode" => "upd", |
643 | 642 | "id" => $id |
644 | 643 | )); |
645 | 644 | |
646 | 645 | // secure web documents - flag as private |
647 | - include MODX_MANAGER_PATH . "includes/secure_web_documents.inc.php"; |
|
646 | + include MODX_MANAGER_PATH."includes/secure_web_documents.inc.php"; |
|
648 | 647 | secureWebDocument($id); |
649 | 648 | |
650 | 649 | // secure manager documents - flag as private |
651 | - include MODX_MANAGER_PATH . "includes/secure_mgr_documents.inc.php"; |
|
650 | + include MODX_MANAGER_PATH."includes/secure_mgr_documents.inc.php"; |
|
652 | 651 | secureMgrDocument($id); |
653 | 652 | |
654 | 653 | // Set the item name for logger |
@@ -656,14 +655,14 @@ discard block |
||
656 | 655 | |
657 | 656 | if ($syncsite == 1) { |
658 | 657 | // empty cache |
659 | - $keys = array('alias','parent','published','isfolder','menuindex','alias_visible'); |
|
658 | + $keys = array('alias', 'parent', 'published', 'isfolder', 'menuindex', 'alias_visible'); |
|
660 | 659 | $flag = ''; |
661 | - foreach($keys as $key) { |
|
662 | - if ($existingDocument[$key]===$_POST[$key]) continue; |
|
660 | + foreach ($keys as $key) { |
|
661 | + if ($existingDocument[$key] === $_POST[$key]) continue; |
|
663 | 662 | $flag = 'full'; |
664 | 663 | break; |
665 | 664 | } |
666 | - if($flag==='full') $modx->clearCache('full'); |
|
665 | + if ($flag === 'full') $modx->clearCache('full'); |
|
667 | 666 | else $modx->clearCache($id); |
668 | 667 | } |
669 | 668 | |
@@ -682,13 +681,13 @@ discard block |
||
682 | 681 | // document |
683 | 682 | $a = ($_POST['stay'] == '2') ? "27&id=$id" : "4&pid=$parent"; |
684 | 683 | } |
685 | - $header = "Location: index.php?a=" . $a . "&r=1&stay=" . $_POST['stay'].$add_path; |
|
684 | + $header = "Location: index.php?a=".$a."&r=1&stay=".$_POST['stay'].$add_path; |
|
686 | 685 | } else { |
687 | 686 | $header = "Location: index.php?a=3&id=$id&r=1".$add_path; |
688 | 687 | } |
689 | 688 | } |
690 | 689 | if (headers_sent()) { |
691 | - $header = str_replace('Location: ','',$header); |
|
690 | + $header = str_replace('Location: ', '', $header); |
|
692 | 691 | echo "<script>document.location.href='$header';</script>\n"; |
693 | 692 | } else { |
694 | 693 | header($header); |
@@ -1,20 +1,20 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('new_plugin')) { |
|
5 | +if (!$modx->hasPermission('new_plugin')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -$id = isset($_GET['id'])? (int)$_GET['id'] : 0; |
|
10 | -if($id==0) { |
|
9 | +$id = isset($_GET['id']) ? (int) $_GET['id'] : 0; |
|
10 | +if ($id == 0) { |
|
11 | 11 | $modx->webAlertAndQuit($_lang["error_no_id"]); |
12 | 12 | } |
13 | 13 | |
14 | 14 | // count duplicates |
15 | 15 | $name = $modx->db->getValue($modx->db->select('name', $modx->getFullTableName('site_plugins'), "id='{$id}'")); |
16 | 16 | $count = $modx->db->getRecordCount($modx->db->select('name', $modx->getFullTableName('site_plugins'), "name LIKE '{$name} {$_lang['duplicated_el_suffix']}%'")); |
17 | -if($count>=1) $count = ' '.($count+1); |
|
17 | +if ($count >= 1) $count = ' '.($count + 1); |
|
18 | 18 | else $count = ''; |
19 | 19 | |
20 | 20 | // duplicate Plugin |
@@ -44,5 +44,5 @@ discard block |
||
44 | 44 | $_SESSION['itemname'] = $name; |
45 | 45 | |
46 | 46 | // finish duplicating - redirect to new plugin |
47 | -$header="Location: index.php?r=2&a=102&id=$newid"; |
|
47 | +$header = "Location: index.php?r=2&a=102&id=$newid"; |
|
48 | 48 | header($header); |
@@ -1,27 +1,27 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | 5 | if (!$modx->hasPermission('save_template')) { |
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -$id = (int)$_POST['id']; |
|
9 | +$id = (int) $_POST['id']; |
|
10 | 10 | $template = $modx->db->escape($_POST['post']); |
11 | 11 | $templatename = $modx->db->escape(trim($_POST['templatename'])); |
12 | 12 | $description = $modx->db->escape($_POST['description']); |
13 | 13 | $locked = $_POST['locked'] == 'on' ? 1 : 0; |
14 | -$selectable = $id == $modx->config['default_template'] ? 1 : // Force selectable |
|
14 | +$selectable = $id == $modx->config['default_template'] ? 1 : // Force selectable |
|
15 | 15 | $_POST['selectable'] == 'on' ? 1 : 0; |
16 | 16 | $currentdate = time() + $modx->config['server_offset_time']; |
17 | 17 | |
18 | 18 | //Kyle Jaebker - added category support |
19 | 19 | if (empty($_POST['newcategory']) && $_POST['categoryid'] > 0) { |
20 | - $categoryid = (int)$_POST['categoryid']; |
|
20 | + $categoryid = (int) $_POST['categoryid']; |
|
21 | 21 | } elseif (empty($_POST['newcategory']) && $_POST['categoryid'] <= 0) { |
22 | 22 | $categoryid = 0; |
23 | 23 | } else { |
24 | - include_once(MODX_MANAGER_PATH . 'includes/categories.inc.php'); |
|
24 | + include_once(MODX_MANAGER_PATH.'includes/categories.inc.php'); |
|
25 | 25 | $categoryid = checkCategory($_POST['newcategory']); |
26 | 26 | if (!$categoryid) { |
27 | 27 | $categoryid = newCategory($_POST['newcategory']); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | // finished emptying cache - redirect |
79 | 79 | if ($_POST['stay'] != '') { |
80 | 80 | $a = ($_POST['stay'] == '2') ? "16&id=$newid" : "19"; |
81 | - $header = "Location: index.php?a=" . $a . "&r=2&stay=" . $_POST['stay']; |
|
81 | + $header = "Location: index.php?a=".$a."&r=2&stay=".$_POST['stay']; |
|
82 | 82 | header($header); |
83 | 83 | } else { |
84 | 84 | $header = "Location: index.php?a=76&r=2"; |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | // finished emptying cache - redirect |
131 | 131 | if ($_POST['stay'] != '') { |
132 | 132 | $a = ($_POST['stay'] == '2') ? "16&id=$id" : "19"; |
133 | - $header = "Location: index.php?a=" . $a . "&r=2&stay=" . $_POST['stay']; |
|
133 | + $header = "Location: index.php?a=".$a."&r=2&stay=".$_POST['stay']; |
|
134 | 134 | header($header); |
135 | 135 | } else { |
136 | 136 | $modx->unlockElement(1, $id); |
@@ -1,18 +1,18 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('delete_user')) { |
|
5 | +if (!$modx->hasPermission('delete_user')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
9 | -$id = isset($_GET['id'])? (int)$_GET['id'] : 0; |
|
10 | -if($id==0) { |
|
9 | +$id = isset($_GET['id']) ? (int) $_GET['id'] : 0; |
|
10 | +if ($id == 0) { |
|
11 | 11 | $modx->webAlertAndQuit($_lang["error_no_id"]); |
12 | 12 | } |
13 | 13 | |
14 | 14 | // delete the user, but first check if we are deleting our own record |
15 | -if($id==$modx->getLoginUserID()) { |
|
15 | +if ($id == $modx->getLoginUserID()) { |
|
16 | 16 | $modx->webAlertAndQuit("You can't delete yourself!"); |
17 | 17 | } |
18 | 18 | |
@@ -50,5 +50,5 @@ discard block |
||
50 | 50 | "id" => $id |
51 | 51 | )); |
52 | 52 | |
53 | -$header="Location: index.php?a=75"; |
|
53 | +$header = "Location: index.php?a=75"; |
|
54 | 54 | header($header); |