Completed
Pull Request — develop (#522)
by Agel_Nash
07:16
created
manager/includes/extenders/ex_export_site.inc.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
  * Time: 14:24
6 6
  */
7 7
 
8
-if(include_once(MODX_MANAGER_PATH . 'includes/extenders/export.class.inc.php'))
9
-{
8
+if(include_once(MODX_MANAGER_PATH . 'includes/extenders/export.class.inc.php')) {
10 9
     $this->export = new EXPORT_SITE;
11 10
     return true;
12 11
 } else {
Please login to merge, or discard this patch.
manager/includes/extenders/dbapi.mysql.class.inc.php 1 patch
Braces   +207 added lines, -110 removed lines patch added patch discarded remove patch
@@ -5,7 +5,8 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 
8
-class DBAPI {
8
+class DBAPI
9
+{
9 10
 
10 11
    var $conn;
11 12
    var $config;
@@ -16,7 +17,8 @@  discard block
 block discarded – undo
16 17
     * @name:  DBAPI
17 18
     *
18 19
     */
19
-   function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET') {
20
+   function __construct($host='',$dbase='', $uid='',$pwd='',$pre=NULL,$charset='',$connection_method='SET CHARACTER SET')
21
+   {
20 22
       $this->config['host'] = $host ? $host : $GLOBALS['database_server'];
21 23
       $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase'];
22 24
       $this->config['user'] = $uid ? $uid : $GLOBALS['database_user'];
@@ -32,7 +34,8 @@  discard block
 block discarded – undo
32 34
     * @desc:  called in the constructor to set up arrays containing the types
33 35
     *         of database fields that can be used with specific PHP types
34 36
     */
35
-   function initDataTypes() {
37
+   function initDataTypes()
38
+   {
36 39
       $this->dataTypes['numeric'] = array (
37 40
          'INT',
38 41
          'INTEGER',
@@ -78,7 +81,8 @@  discard block
 block discarded – undo
78 81
     * @name:  connect
79 82
     *
80 83
     */
81
-   function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0) {
84
+   function connect($host = '', $dbase = '', $uid = '', $pwd = '', $persist = 0)
85
+   {
82 86
       global $modx;
83 87
       $uid = $uid ? $uid : $this->config['user'];
84 88
       $pwd = $pwd ? $pwd : $this->config['pass'];
@@ -88,17 +92,16 @@  discard block
 block discarded – undo
88 92
       $connection_method = $this->config['connection_method'];
89 93
       $tstart = $modx->getMicroTime();
90 94
       $safe_count = 0;
91
-      while(!$this->conn && $safe_count<3)
92
-      {
93
-          if($persist!=0) $this->conn = mysql_pconnect($host, $uid, $pwd);
94
-          else            $this->conn = mysql_connect($host, $uid, $pwd, true);
95
+      while(!$this->conn && $safe_count<3) {
96
+          if($persist!=0) {
97
+              $this->conn = mysql_pconnect($host, $uid, $pwd);
98
+          } else {
99
+              $this->conn = mysql_connect($host, $uid, $pwd, true);
100
+          }
95 101
           
96
-          if(!$this->conn)
97
-          {
98
-            if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0')
99
-            {
100
-               if($modx->config['send_errormail'] <= 2)
101
-               {
102
+          if(!$this->conn) {
103
+            if(isset($modx->config['send_errormail']) && $modx->config['send_errormail'] !== '0') {
104
+               if($modx->config['send_errormail'] <= 2) {
102 105
                   $logtitle    = 'Failed to create the database connection!';
103 106
                   $request_uri = $modx->htmlspecialchars($_SERVER['REQUEST_URI']);
104 107
                   $ua          = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']);
@@ -146,30 +149,36 @@  discard block
 block discarded – undo
146 149
     * @name:  disconnect
147 150
     *
148 151
     */
149
-   function disconnect() {
152
+   function disconnect()
153
+   {
150 154
       @ mysql_close($this->conn);
151 155
       $this->conn = null;
152 156
       $this->isConnected = false;
153 157
    }
154 158
 
155
-   function escape($s, $safecount=0) {
159
+   function escape($s, $safecount=0)
160
+   {
156 161
       
157 162
       $safecount++;
158
-      if(1000<$safecount) exit("Too many loops '{$safecount}'");
163
+      if(1000<$safecount) {
164
+          exit("Too many loops '{$safecount}'");
165
+      }
159 166
       
160 167
       if (empty ($this->conn) || !is_resource($this->conn)) {
161 168
          $this->connect();
162 169
        }
163 170
        
164 171
       if(is_array($s)) {
165
-          if(count($s) === 0) $s = '';
166
-          else {
172
+          if(count($s) === 0) {
173
+              $s = '';
174
+          } else {
167 175
               foreach($s as $i=>$v) {
168 176
                   $s[$i] = $this->escape($v,$safecount);
169 177
               }
170 178
           }
179
+      } else {
180
+          $s = mysql_real_escape_string($s, $this->conn);
171 181
       }
172
-      else $s = mysql_real_escape_string($s, $this->conn);
173 182
           return $s;
174 183
    }
175 184
 
@@ -178,16 +187,21 @@  discard block
 block discarded – undo
178 187
     * @desc:  Mainly for internal use.
179 188
     * Developers should use select, update, insert, delete where possible
180 189
     */
181
-   function query($sql,$watchError=true) {
190
+   function query($sql,$watchError=true)
191
+   {
182 192
       global $modx;
183 193
       if (empty ($this->conn) || !is_resource($this->conn)) {
184 194
          $this->connect();
185 195
       }
186 196
       $tstart = $modx->getMicroTime();
187
-      if(is_array($sql)) $sql = join("\n", $sql);
197
+      if(is_array($sql)) {
198
+          $sql = join("\n", $sql);
199
+      }
188 200
       $this->lastQuery = $sql;
189 201
       if (!$result = @ mysql_query($sql, $this->conn)) {
190
-         if(!$watchError) return;
202
+         if(!$watchError) {
203
+             return;
204
+         }
191 205
             switch(mysql_errno()) {
192 206
                 case 1054:
193 207
                 case 1060:
@@ -206,15 +220,26 @@  discard block
 block discarded – undo
206 220
             $debug = debug_backtrace();
207 221
             array_shift($debug);	
208 222
             $debug_path = array();
209
-            foreach ($debug as $line) $debug_path[] = $line['function'];
223
+            foreach ($debug as $line) {
224
+                $debug_path[] = $line['function'];
225
+            }
210 226
             $debug_path = implode(' > ',array_reverse($debug_path));
211 227
             $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", $totaltime*1000) . "</legend>";
212 228
             $modx->queryCode .= $sql . '<br><br>';
213
-            if ($modx->event->name) $modx->queryCode .= 'Current Event  => ' . $modx->event->name . '<br>';
214
-            if ($modx->event->activePlugin) $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>';
215
-            if ($modx->currentSnippet) $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>';
216
-            if (stripos($sql, 'select')===0) $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>';
217
-            else $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>';
229
+            if ($modx->event->name) {
230
+                $modx->queryCode .= 'Current Event  => ' . $modx->event->name . '<br>';
231
+            }
232
+            if ($modx->event->activePlugin) {
233
+                $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>';
234
+            }
235
+            if ($modx->currentSnippet) {
236
+                $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>';
237
+            }
238
+            if (stripos($sql, 'select')===0) {
239
+                $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>';
240
+            } else {
241
+                $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>';
242
+            }
218 243
             $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>';
219 244
             $modx->queryCode .= "</fieldset><br />";
220 245
          }
@@ -227,18 +252,25 @@  discard block
 block discarded – undo
227 252
     * @name:  delete
228 253
     *
229 254
     */
230
-   function delete($from, $where='', $orderby='', $limit = '') {
255
+   function delete($from, $where='', $orderby='', $limit = '')
256
+   {
231 257
       global $modx;
232
-      if (!$from)
233
-         $modx->messageQuit("Empty \$from parameters in DBAPI::delete().");
234
-      else {
258
+      if (!$from) {
259
+               $modx->messageQuit("Empty \$from parameters in DBAPI::delete().");
260
+      } else {
235 261
          $from = $this->replaceFullTableName($from);
236 262
          $where   = trim($where);
237 263
          $orderby = trim($orderby);
238 264
          $limit   = trim($limit);
239
-         if($where!==''   && stripos($where,   'WHERE')!==0)    $where   = "WHERE {$where}";
240
-         if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) $orderby = "ORDER BY {$orderby}";
241
-         if($limit!==''   && stripos($limit,   'LIMIT')!==0)    $limit   = "LIMIT {$limit}";
265
+         if($where!==''   && stripos($where,   'WHERE')!==0) {
266
+             $where   = "WHERE {$where}";
267
+         }
268
+         if($orderby!=='' && stripos($orderby, 'ORDER BY')!==0) {
269
+             $orderby = "ORDER BY {$orderby}";
270
+         }
271
+         if($limit!==''   && stripos($limit,   'LIMIT')!==0) {
272
+             $limit   = "LIMIT {$limit}";
273
+         }
242 274
          return $this->query("DELETE FROM {$from} {$where} {$orderby} {$limit}");
243 275
       }
244 276
    }
@@ -247,12 +279,19 @@  discard block
 block discarded – undo
247 279
     * @name:  select
248 280
     *
249 281
     */
250
-   function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "") {
282
+   function select($fields = "*", $from = "", $where = "", $orderby = "", $limit = "")
283
+   {
251 284
       global $modx;
252 285
       
253
-      if(is_array($fields)) $fields = $this->_getFieldsStringFromArray($fields);
254
-      if(is_array($from))   $from   = $this->_getFromStringFromArray($from);
255
-      if(is_array($where))  $where  = join(' ', $where);
286
+      if(is_array($fields)) {
287
+          $fields = $this->_getFieldsStringFromArray($fields);
288
+      }
289
+      if(is_array($from)) {
290
+          $from   = $this->_getFromStringFromArray($from);
291
+      }
292
+      if(is_array($where)) {
293
+          $where  = join(' ', $where);
294
+      }
256 295
       
257 296
       if (!$from) {
258 297
          $modx->messageQuit("Empty \$from parameters in DBAPI::select().");
@@ -264,9 +303,15 @@  discard block
 block discarded – undo
264 303
       $where   = trim($where);
265 304
       $orderby = trim($orderby);
266 305
       $limit   = trim($limit);
267
-      if($where!==''   && stripos($where,'WHERE')!==0)   $where   = "WHERE {$where}";
268
-      if($orderby!=='' && stripos($orderby,'ORDER')!==0) $orderby = "ORDER BY {$orderby}";
269
-      if($limit!==''   && stripos($limit,'LIMIT')!==0)   $limit   = "LIMIT {$limit}";
306
+      if($where!==''   && stripos($where,'WHERE')!==0) {
307
+          $where   = "WHERE {$where}";
308
+      }
309
+      if($orderby!=='' && stripos($orderby,'ORDER')!==0) {
310
+          $orderby = "ORDER BY {$orderby}";
311
+      }
312
+      if($limit!==''   && stripos($limit,'LIMIT')!==0) {
313
+          $limit   = "LIMIT {$limit}";
314
+      }
270 315
       return $this->query("SELECT {$fields} FROM {$from} {$where} {$orderby} {$limit}");
271 316
    }
272 317
 
@@ -274,17 +319,18 @@  discard block
 block discarded – undo
274 319
     * @name:  update
275 320
     *
276 321
     */
277
-   function update($fields, $table, $where = "") {
322
+   function update($fields, $table, $where = "")
323
+   {
278 324
       global $modx;
279
-      if (!$table)
280
-         $modx->messageQuit("Empty \$table parameter in DBAPI::update().");
281
-      else {
325
+      if (!$table) {
326
+               $modx->messageQuit("Empty \$table parameter in DBAPI::update().");
327
+      } else {
282 328
          $table = $this->replaceFullTableName($table);
283 329
          if (is_array($fields)) {
284 330
 			 foreach ($fields as $key => $value) {
285
-				 if(is_null($value) || strtolower($value) === 'null'){
331
+				 if(is_null($value) || strtolower($value) === 'null') {
286 332
 					 $flds = 'NULL';
287
-				 }else{
333
+				 } else {
288 334
 					 $flds = "'" . $value . "'";
289 335
 				 }
290 336
 				 $fields[$key] = "`{$key}` = ".$flds;
@@ -292,7 +338,9 @@  discard block
 block discarded – undo
292 338
             $fields = implode(",", $fields);
293 339
          }
294 340
          $where = trim($where);
295
-         if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}";
341
+         if($where!=='' && stripos($where, 'WHERE')!==0) {
342
+             $where = "WHERE {$where}";
343
+         }
296 344
          return $this->query("UPDATE {$table} SET {$fields} {$where}");
297 345
       }
298 346
    }
@@ -301,11 +349,12 @@  discard block
 block discarded – undo
301 349
     * @name:  insert
302 350
     * @desc:  returns either last id inserted or the result from the query
303 351
     */
304
-   function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") {
352
+   function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "")
353
+   {
305 354
       global $modx;
306
-      if (!$intotable)
307
-         $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert().");
308
-      else {
355
+      if (!$intotable) {
356
+               $modx->messageQuit("Empty \$intotable parameters in DBAPI::insert().");
357
+      } else {
309 358
          $intotable = $this->replaceFullTableName($intotable);
310 359
          if (!is_array($fields)) {
311 360
             $this->query("INSERT INTO {$intotable} {$fields}");
@@ -319,8 +368,12 @@  discard block
 block discarded – undo
319 368
                   $fields = "(".implode(",", array_keys($fields)).")";
320 369
                   $where = trim($where);
321 370
                   $limit = trim($limit);
322
-                  if($where!=='' && stripos($where, 'WHERE')!==0) $where = "WHERE {$where}";
323
-                  if($limit!=='' && stripos($limit, 'LIMIT')!==0) $limit = "LIMIT {$limit}";
371
+                  if($where!=='' && stripos($where, 'WHERE')!==0) {
372
+                      $where = "WHERE {$where}";
373
+                  }
374
+                  if($limit!=='' && stripos($limit, 'LIMIT')!==0) {
375
+                      $limit = "LIMIT {$limit}";
376
+                  }
324 377
                   $rt = $this->query("INSERT INTO {$intotable} {$fields} SELECT {$fromfields} FROM {$fromtable} {$where} {$limit}");
325 378
                } else {
326 379
                   $ds = $this->select($fromfields, $fromtable, $where, '', $limit);
@@ -331,26 +384,37 @@  discard block
 block discarded – undo
331 384
                }
332 385
             }
333 386
          }
334
-         if (($lid = $this->getInsertId())===false) $modx->messageQuit("Couldn't get last insert key!");
387
+         if (($lid = $this->getInsertId())===false) {
388
+             $modx->messageQuit("Couldn't get last insert key!");
389
+         }
335 390
          return $lid;
336 391
       }
337 392
    }
338 393
    
339
-    function save($fields, $table, $where='') {
394
+    function save($fields, $table, $where='')
395
+    {
340 396
         
341
-        if($where === '')                                                  $mode = 'insert';
342
-        elseif($this->getRecordCount($this->select('*',$table,$where))==0) $mode = 'insert';
343
-        else                                                               $mode = 'update';
397
+        if($where === '') {
398
+            $mode = 'insert';
399
+        } elseif($this->getRecordCount($this->select('*',$table,$where))==0) {
400
+            $mode = 'insert';
401
+        } else {
402
+            $mode = 'update';
403
+        }
344 404
         
345
-        if($mode==='insert') return $this->insert($fields, $table);
346
-        else                 return $this->update($fields, $table, $where);
405
+        if($mode==='insert') {
406
+            return $this->insert($fields, $table);
407
+        } else {
408
+            return $this->update($fields, $table, $where);
409
+        }
347 410
     }
348 411
     
349 412
    /**
350 413
     * @name:  isResult
351 414
     *
352 415
     */
353
-   function isResult($rs) {
416
+   function isResult($rs)
417
+   {
354 418
       return is_resource($rs);
355 419
    }
356 420
 
@@ -358,7 +422,8 @@  discard block
 block discarded – undo
358 422
     * @name:  freeResult
359 423
     *
360 424
     */
361
-   function freeResult($rs) {
425
+   function freeResult($rs)
426
+   {
362 427
       mysql_free_result($rs);
363 428
    }
364 429
    
@@ -366,7 +431,8 @@  discard block
 block discarded – undo
366 431
     * @name:  numFields
367 432
     *
368 433
     */
369
-   function numFields($rs) {
434
+   function numFields($rs)
435
+   {
370 436
       return mysql_num_fields($rs);
371 437
    }
372 438
    
@@ -374,7 +440,8 @@  discard block
 block discarded – undo
374 440
     * @name:  fieldName
375 441
     *
376 442
     */
377
-   function fieldName($rs,$col=0) {
443
+   function fieldName($rs,$col=0)
444
+   {
378 445
       return mysql_field_name($rs,$col);
379 446
    }
380 447
    
@@ -382,7 +449,8 @@  discard block
 block discarded – undo
382 449
     * @name:  selectDb
383 450
     *
384 451
     */
385
-   function selectDb($name) {
452
+   function selectDb($name)
453
+   {
386 454
       mysql_select_db($name);
387 455
    }
388 456
    
@@ -391,8 +459,11 @@  discard block
 block discarded – undo
391 459
     * @name:  getInsertId
392 460
     *
393 461
     */
394
-   function getInsertId($conn=NULL) {
395
-      if( !is_resource($conn)) $conn =& $this->conn;
462
+   function getInsertId($conn=NULL)
463
+   {
464
+      if( !is_resource($conn)) {
465
+          $conn =& $this->conn;
466
+      }
396 467
       return mysql_insert_id($conn);
397 468
    }
398 469
 
@@ -400,8 +471,11 @@  discard block
 block discarded – undo
400 471
     * @name:  getAffectedRows
401 472
     *
402 473
     */
403
-   function getAffectedRows($conn=NULL) {
404
-      if (!is_resource($conn)) $conn =& $this->conn;
474
+   function getAffectedRows($conn=NULL)
475
+   {
476
+      if (!is_resource($conn)) {
477
+          $conn =& $this->conn;
478
+      }
405 479
       return mysql_affected_rows($conn);
406 480
    }
407 481
 
@@ -409,8 +483,11 @@  discard block
 block discarded – undo
409 483
     * @name:  getLastError
410 484
     *
411 485
     */
412
-   function getLastError($conn=NULL) {
413
-      if (!is_resource($conn)) $conn =& $this->conn;
486
+   function getLastError($conn=NULL)
487
+   {
488
+      if (!is_resource($conn)) {
489
+          $conn =& $this->conn;
490
+      }
414 491
       return mysql_error($conn);
415 492
    }
416 493
 
@@ -418,7 +495,8 @@  discard block
 block discarded – undo
418 495
     * @name:  getRecordCount
419 496
     *
420 497
     */
421
-   function getRecordCount($ds) {
498
+   function getRecordCount($ds)
499
+   {
422 500
       return (is_resource($ds)) ? mysql_num_rows($ds) : 0;
423 501
    }
424 502
 
@@ -428,18 +506,16 @@  discard block
 block discarded – undo
428 506
     * @param: $dsq - dataset
429 507
     *
430 508
     */
431
-   function getRow($ds, $mode = 'assoc') {
509
+   function getRow($ds, $mode = 'assoc')
510
+   {
432 511
       if (is_resource($ds)) {
433 512
          if ($mode == 'assoc') {
434 513
             return mysql_fetch_assoc($ds);
435
-         }
436
-         elseif ($mode == 'num') {
514
+         } elseif ($mode == 'num') {
437 515
             return mysql_fetch_row($ds);
438
-         }
439
-		 elseif ($mode == 'object') {
516
+         } elseif ($mode == 'object') {
440 517
             return mysql_fetch_object($ds);
441
-         }
442
-         elseif ($mode == 'both') {
518
+         } elseif ($mode == 'both') {
443 519
             return mysql_fetch_array($ds, MYSQL_BOTH);
444 520
          } else {
445 521
             global $modx;
@@ -453,9 +529,11 @@  discard block
 block discarded – undo
453 529
     * @desc:  returns an array of the values found on colun $name
454 530
     * @param: $dsq - dataset or query string
455 531
     */
456
-   function getColumn($name, $dsq) {
457
-      if (!is_resource($dsq))
458
-         $dsq = $this->query($dsq);
532
+   function getColumn($name, $dsq)
533
+   {
534
+      if (!is_resource($dsq)) {
535
+               $dsq = $this->query($dsq);
536
+      }
459 537
       if ($dsq) {
460 538
          $col = array ();
461 539
          while ($row = $this->getRow($dsq)) {
@@ -470,9 +548,11 @@  discard block
 block discarded – undo
470 548
     * @desc:  returns an array containing the column $name
471 549
     * @param: $dsq - dataset or query string
472 550
     */
473
-   function getColumnNames($dsq) {
474
-      if (!is_resource($dsq))
475
-         $dsq = $this->query($dsq);
551
+   function getColumnNames($dsq)
552
+   {
553
+      if (!is_resource($dsq)) {
554
+               $dsq = $this->query($dsq);
555
+      }
476 556
       if ($dsq) {
477 557
          $names = array ();
478 558
          $limit = mysql_num_fields($dsq);
@@ -488,9 +568,11 @@  discard block
 block discarded – undo
488 568
     * @desc:  returns the value from the first column in the set
489 569
     * @param: $dsq - dataset or query string
490 570
     */
491
-   function getValue($dsq) {
492
-      if (!is_resource($dsq))
493
-         $dsq = $this->query($dsq);
571
+   function getValue($dsq)
572
+   {
573
+      if (!is_resource($dsq)) {
574
+               $dsq = $this->query($dsq);
575
+      }
494 576
       if ($dsq) {
495 577
          $r = $this->getRow($dsq, "num");
496 578
          return $r[0];
@@ -503,7 +585,8 @@  discard block
 block discarded – undo
503 585
     *         table
504 586
     * @param: $table: the full name of the database table
505 587
     */
506
-   function getTableMetaData($table) {
588
+   function getTableMetaData($table)
589
+   {
507 590
       $metadata = false;
508 591
       if (!empty ($table)) {
509 592
          $sql = "SHOW FIELDS FROM $table";
@@ -525,7 +608,8 @@  discard block
 block discarded – undo
525 608
     * @param: $fieldType: the type of field to format the date for
526 609
     *         (in MySQL, you have DATE, TIME, YEAR, and DATETIME)
527 610
     */
528
-   function prepareDate($timestamp, $fieldType = 'DATETIME') {
611
+   function prepareDate($timestamp, $fieldType = 'DATETIME')
612
+   {
529 613
       $date = '';
530 614
       if (!$timestamp === false && $timestamp > 0) {
531 615
          switch ($fieldType) {
@@ -554,8 +638,11 @@  discard block
 block discarded – undo
554 638
    *          was passed
555 639
    * @param: $rs Recordset to be packaged into an array
556 640
    */
557
-	function makeArray($rs='',$index=false){
558
-		if (!$rs) return false;
641
+	function makeArray($rs='',$index=false)
642
+	{
643
+		if (!$rs) {
644
+		    return false;
645
+		}
559 646
 		$rsArray = array();
560 647
 		$iterator = 0;
561 648
 		while ($row = $this->getRow($rs)) {
@@ -572,7 +659,8 @@  discard block
 block discarded – undo
572 659
     *
573 660
     * @return string
574 661
     */
575
-   function getVersion() {
662
+   function getVersion()
663
+   {
576 664
        return mysql_get_server_info();
577 665
    }
578 666
    
@@ -583,20 +671,19 @@  discard block
 block discarded – undo
583 671
     * @param string $str
584 672
     * @return string 
585 673
     */
586
-   function replaceFullTableName($str,$force=null) {
674
+   function replaceFullTableName($str,$force=null)
675
+   {
587 676
        
588 677
        $str = trim($str);
589 678
        $dbase  = trim($this->config['dbase'],'`');
590 679
        $prefix = $this->config['table_prefix'];
591
-       if(!empty($force))
592
-       {
680
+       if(!empty($force)) {
593 681
            $result = "`{$dbase}`.`{$prefix}{$str}`";
594
-       }
595
-       elseif(strpos($str,'[+prefix+]')!==false)
596
-       {
682
+       } elseif(strpos($str,'[+prefix+]')!==false) {
597 683
            $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $str);
684
+       } else {
685
+           $result = $str;
598 686
        }
599
-       else $result = $str;
600 687
        
601 688
        return $result;
602 689
    }
@@ -604,7 +691,9 @@  discard block
 block discarded – undo
604 691
    function optimize($table_name)
605 692
    {
606 693
        $rs = $this->query("OPTIMIZE TABLE {$table_name}");
607
-       if($rs) $rs = $this->query("ALTER TABLE {$table_name}");
694
+       if($rs) {
695
+           $rs = $this->query("ALTER TABLE {$table_name}");
696
+       }
608 697
        return $rs;
609 698
    }
610 699
    
@@ -614,23 +703,31 @@  discard block
 block discarded – undo
614 703
        return $rs;
615 704
    }
616 705
 
617
-  function dataSeek($result, $row_number) {
706
+  function dataSeek($result, $row_number)
707
+  {
618 708
     return mysql_data_seek($result, $row_number);
619 709
   }
620 710
   
621
-    function _getFieldsStringFromArray($fields=array()) {
711
+    function _getFieldsStringFromArray($fields=array())
712
+    {
622 713
         
623
-        if(empty($fields)) return '*';
714
+        if(empty($fields)) {
715
+            return '*';
716
+        }
624 717
         
625 718
         $_ = array();
626 719
         foreach($fields as $k=>$v) {
627
-            if($k!==$v) $_[] = "{$v} as {$k}";
628
-            else        $_[] = $v;
720
+            if($k!==$v) {
721
+                $_[] = "{$v} as {$k}";
722
+            } else {
723
+                $_[] = $v;
724
+            }
629 725
         }
630 726
         return join(',', $_);
631 727
     }
632 728
     
633
-    function _getFromStringFromArray($tables=array()) {
729
+    function _getFromStringFromArray($tables=array())
730
+    {
634 731
         $_ = array();
635 732
         foreach($tables as $k=>$v) {
636 733
             $_[] = $v;
Please login to merge, or discard this patch.
manager/includes/extenders/export.class.inc.php 1 patch
Braces   +81 added lines, -62 removed lines patch added patch discarded remove patch
@@ -15,14 +15,18 @@  discard block
 block discarded – undo
15 15
 	{
16 16
 		global $modx;
17 17
 		
18
-		if(!defined('MODX_BASE_PATH'))  return false;
18
+		if(!defined('MODX_BASE_PATH')) {
19
+		    return false;
20
+		}
19 21
 		$this->exportstart = $this->get_mtime();
20 22
 		$this->count = 0;
21 23
 		$this->setUrlMode();
22 24
 		$this->dirCheckCount = 0;
23 25
 		$this->generate_mode = 'crawl';
24 26
 		$this->targetDir = $modx->config['base_path'] . 'temp/export';
25
-		if(!isset($this->total)) $this->getTotal();
27
+		if(!isset($this->total)) {
28
+		    $this->getTotal();
29
+		}
26 30
 	}
27 31
 	
28 32
 	function setExportDir($dir)
@@ -44,8 +48,7 @@  discard block
 block discarded – undo
44 48
 	{
45 49
 		global $modx;
46 50
 		
47
-		if($modx->config['friendly_urls']==0)
48
-		{
51
+		if($modx->config['friendly_urls']==0) {
49 52
 			$modx->config['friendly_urls']  = 1;
50 53
 			$modx->config['use_alias_path'] = 1;
51 54
 			$modx->clearCache('full');
@@ -59,8 +62,7 @@  discard block
 block discarded – undo
59 62
 		$tbl_site_content = $modx->getFullTableName('site_content');
60 63
 		
61 64
 		$ignore_ids = array_filter(array_map('intval', explode(',', $ignore_ids)));
62
-		if(count($ignore_ids)>0)
63
-		{
65
+		if(count($ignore_ids)>0) {
64 66
 			$ignore_ids = "AND NOT id IN ('".implode("','", $ignore_ids)."')";
65 67
 		} else {
66 68
 			$ignore_ids = '';
@@ -77,27 +79,37 @@  discard block
 block discarded – undo
77 79
 	
78 80
 	function removeDirectoryAll($directory='')
79 81
 	{
80
-		if(empty($directory)) $directory = $this->targetDir;
82
+		if(empty($directory)) {
83
+		    $directory = $this->targetDir;
84
+		}
81 85
 		$directory = rtrim($directory,'/');
82 86
 		// if the path is not valid or is not a directory ...
83
-		if(empty($directory)) return false;
84
-		if(strpos($directory,MODX_BASE_PATH)===false) return FALSE;
87
+		if(empty($directory)) {
88
+		    return false;
89
+		}
90
+		if(strpos($directory,MODX_BASE_PATH)===false) {
91
+		    return FALSE;
92
+		}
85 93
 		
86
-		if(!is_dir($directory))          return FALSE;
87
-		elseif(!is_readable($directory)) return FALSE;
88
-		else
89
-		{
94
+		if(!is_dir($directory)) {
95
+		    return FALSE;
96
+		} elseif(!is_readable($directory)) {
97
+		    return FALSE;
98
+		} else {
90 99
 			$files = glob($directory . '/*');
91
-			if(!empty($files))
92
-			{
93
-    			foreach($files as $path)
94
-    			{
95
-    				if(is_dir($path)) $this->removeDirectoryAll($path);
96
-    				else              $rs = unlink($path);
100
+			if(!empty($files)) {
101
+    			foreach($files as $path) {
102
+    				if(is_dir($path)) {
103
+    				    $this->removeDirectoryAll($path);
104
+    				} else {
105
+    				    $rs = unlink($path);
106
+    				}
97 107
     			}
98 108
 			}
99 109
 		}
100
-		if($directory !== $this->targetDir) $rs = rmdir($directory);
110
+		if($directory !== $this->targetDir) {
111
+		    $rs = rmdir($directory);
112
+		}
101 113
 		
102 114
 		return $rs;
103 115
 	}
@@ -106,37 +118,43 @@  discard block
 block discarded – undo
106 118
 	{
107 119
 		global  $modx,$_lang;
108 120
 		$file_permission = octdec($modx->config['new_file_permissions']);
109
-		if($this->generate_mode==='direct')
110
-		{
121
+		if($this->generate_mode==='direct') {
111 122
 			$back_lang = $_lang;
112 123
 			$src = $modx->executeParser($docid);
113 124
 			
114 125
 			$_lang = $back_lang;
126
+		} else {
127
+		    $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}");
115 128
 		}
116
-		else $src = $this->curl_get_contents(MODX_SITE_URL . "index.php?id={$docid}");
117 129
 		
118 130
 		
119
-		if($src !== false)
120
-		{
121
-			if($this->repl_before!==$this->repl_after) $src = str_replace($this->repl_before,$this->repl_after,$src);
131
+		if($src !== false) {
132
+			if($this->repl_before!==$this->repl_after) {
133
+			    $src = str_replace($this->repl_before,$this->repl_after,$src);
134
+			}
122 135
 			$result = file_put_contents($filepath,$src);
123
-			if($result!==false) @chmod($filepath, $file_permission);
136
+			if($result!==false) {
137
+			    @chmod($filepath, $file_permission);
138
+			}
124 139
 			
125
-			if($result !== false) return 'success';
126
-			else                  return 'failed_no_write';
140
+			if($result !== false) {
141
+			    return 'success';
142
+			} else {
143
+			    return 'failed_no_write';
144
+			}
145
+		} else {
146
+		    return 'failed_no_retrieve';
127 147
 		}
128
-		else                      return 'failed_no_retrieve';
129 148
 	}
130 149
 
131 150
 	function getFileName($docid, $alias='', $prefix, $suffix)
132 151
 	{
133 152
 		global $modx;
134 153
 		
135
-		if($alias==='') $filename = $prefix.$docid.$suffix;
136
-		else
137
-		{
138
-			if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false)
139
-			{
154
+		if($alias==='') {
155
+		    $filename = $prefix.$docid.$suffix;
156
+		} else {
157
+			if($modx->config['suffix_mode']==='1' && strpos($alias, '.')!==false) {
140 158
 				$suffix = '';
141 159
 			}
142 160
 			$filename = $prefix.$alias.$suffix;
@@ -187,24 +205,20 @@  discard block
 block discarded – undo
187 205
 		$ph = array();
188 206
 		$ph['total']     = $this->total;
189 207
 		$folder_permission = octdec($modx->config['new_folder_permissions']);
190
-		while($row = $modx->db->getRow($rs))
191
-		{
208
+		while($row = $modx->db->getRow($rs)) {
192 209
 			$this->count++;
193 210
 			
194 211
 			$row['count']     = $this->count;
195 212
 			$row['url'] = $modx->makeUrl($row['id']);
196 213
 			
197
-			if (!$row['wasNull'])
198
-			{ // needs writing a document
214
+			if (!$row['wasNull']) {
215
+// needs writing a document
199 216
 				$docname = $this->getFileName($row['id'], $row['alias'], $prefix, $suffix);
200 217
 				$filename = $dirpath.$docname;
201
-				if (!is_file($filename))
202
-				{
203
-					if($row['published']==='1')
204
-					{
218
+				if (!is_file($filename)) {
219
+					if($row['published']==='1') {
205 220
 						$status = $this->makeFile($row['id'], $filename);
206
-						switch($status)
207
-						{
221
+						switch($status) {
208 222
 							case 'failed_no_write'   :
209 223
                                                             $row['status'] = $msg_failed_no_write;
210 224
                                                             break;
@@ -214,34 +228,38 @@  discard block
 block discarded – undo
214 228
 							default:
215 229
                                                             $row['status'] = $msg_success;
216 230
 						}
231
+					} else {
232
+					    $row['status'] = $msg_failed_no_retrieve;
217 233
 					}
218
-					else $row['status'] = $msg_failed_no_retrieve;
234
+				} else {
235
+				    $row['status'] = $msg_success_skip_doc;
219 236
 				}
220
-				else     $row['status'] = $msg_success_skip_doc;
221 237
 				$this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row);
222
-			}
223
-			else
224
-			{
238
+			} else {
225 239
 				$row['status'] = $msg_success_skip_dir;
226 240
 				$this->output[] = $this->parsePlaceholder($_lang['export_site_exporting_document'], $row);
227 241
 			}
228
-			if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false))
229
-			{ // needs making a folder
242
+			if ($row['isfolder']==='1' && ($modx->config['suffix_mode']!=='1' || strpos($row['alias'],'.')===false)) {
243
+// needs making a folder
230 244
 				$end_dir = ($row['alias']!=='') ? $row['alias'] : $row['id'];
231 245
 				$dir_path = $dirpath . $end_dir;
232
-				if(strpos($dir_path,MODX_BASE_PATH)===false) return FALSE;
233
-				if (!is_dir($dir_path))
234
-				{
235
-					if (is_file($dir_path)) @unlink($dir_path);
246
+				if(strpos($dir_path,MODX_BASE_PATH)===false) {
247
+				    return FALSE;
248
+				}
249
+				if (!is_dir($dir_path)) {
250
+					if (is_file($dir_path)) {
251
+					    @unlink($dir_path);
252
+					}
236 253
 					mkdir($dir_path);
237 254
 					@chmod($dir_path, $folder_permission);
238 255
 					
239 256
 				}
240 257
 				
241 258
 				
242
-				if($modx->config['make_folders']==='1' && $row['published']==='1')
243
-				{
244
-					if(is_file($filename)) rename($filename,$dir_path . '/index.html');
259
+				if($modx->config['make_folders']==='1' && $row['published']==='1') {
260
+					if(is_file($filename)) {
261
+					    rename($filename,$dir_path . '/index.html');
262
+					}
245 263
 				}
246 264
 				$this->targetDir = $dir_path;
247 265
 				$this->run($row['id']);
@@ -252,7 +270,9 @@  discard block
 block discarded – undo
252 270
 	
253 271
     function curl_get_contents($url, $timeout = 30 )
254 272
     {
255
-    	if(!function_exists('curl_init')) return @file_get_contents($url);
273
+    	if(!function_exists('curl_init')) {
274
+    	    return @file_get_contents($url);
275
+    	}
256 276
 
257 277
         $ch = curl_init();
258 278
         curl_setopt($ch, CURLOPT_URL, $url);
@@ -269,8 +289,7 @@  discard block
 block discarded – undo
269 289
 
270 290
     function parsePlaceholder($tpl,$ph=array())
271 291
     {
272
-    	foreach($ph as $k=>$v)
273
-    	{
292
+    	foreach($ph as $k=>$v) {
274 293
     		$k = "[+{$k}+]";
275 294
     		$tpl = str_replace($k,$v,$tpl);
276 295
     	}
Please login to merge, or discard this patch.
manager/includes/extenders/ex_dbapi.inc.php 1 patch
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,11 +7,13 @@
 block discarded – undo
7 7
 
8 8
 global $database_type;
9 9
 
10
-if (empty($database_type)) $database_type = 'mysql';
10
+if (empty($database_type)) {
11
+    $database_type = 'mysql';
12
+}
11 13
 
12
-if (!include_once MODX_MANAGER_PATH . 'includes/extenders/dbapi.' . $database_type . '.class.inc.php'){
14
+if (!include_once MODX_MANAGER_PATH . 'includes/extenders/dbapi.' . $database_type . '.class.inc.php') {
13 15
     return false;
14
-}else{
16
+} else {
15 17
     $this->db= new DBAPI;
16 18
     return true;
17 19
 }
Please login to merge, or discard this patch.
manager/includes/extenders/manager.api.class.inc.php 1 patch
Braces   +106 added lines, -59 removed lines patch added patch discarded remove patch
@@ -8,16 +8,19 @@  discard block
 block discarded – undo
8 8
 global $_PAGE; // page view state object. Usage $_PAGE['vs']['propertyname'] = $value;
9 9
 
10 10
 // Content manager wrapper class
11
-class ManagerAPI {
11
+class ManagerAPI
12
+{
12 13
 	
13 14
 	var $action; // action directive
14 15
 
15
-	function __construct(){
16
+	function __construct()
17
+	{
16 18
 		global $action;
17 19
 		$this->action = $action; // set action directive
18 20
 	}
19 21
 	
20
-	function initPageViewState($id=0){
22
+	function initPageViewState($id=0)
23
+	{
21 24
 		global $_PAGE;
22 25
 		$vsid = isset($_SESSION["mgrPageViewSID"]) ? $_SESSION["mgrPageViewSID"] : '';
23 26
 		if($vsid!=$this->action) {
@@ -28,33 +31,38 @@  discard block
 block discarded – undo
28 31
 	}
29 32
 
30 33
 	// save page view state - not really necessary,
31
-	function savePageViewState($id=0){
34
+	function savePageViewState($id=0)
35
+	{
32 36
 		global $_PAGE;
33 37
 		$_SESSION["mgrPageViewSDATA"] = $_PAGE['vs'];
34 38
 		$_SESSION["mgrPageViewSID"] = $id>0 ? $id:$this->action;
35 39
 	}
36 40
 	
37 41
 	// check for saved form
38
-	function hasFormValues() {
39
-		if(isset($_SESSION["mgrFormValueId"])) {		
42
+	function hasFormValues()
43
+	{
44
+		if(isset($_SESSION["mgrFormValueId"])) {
40 45
 			if($this->action==$_SESSION["mgrFormValueId"]) {
41 46
 				return true;
42
-			}
43
-			else {
47
+			} else {
44 48
 				$this->clearSavedFormValues();
45 49
 			}
46 50
 		}
47 51
 		return false;
48 52
 	}	
49 53
 	// saved form post from $_POST
50
-	function saveFormValues($id=0){
54
+	function saveFormValues($id=0)
55
+	{
51 56
 		$_SESSION["mgrFormValues"] = $_POST;
52 57
 		$_SESSION["mgrFormValueId"] = $id>0 ? $id:$this->action;
53 58
 	}		
54 59
 	// load saved form values into $_POST
55
-	function loadFormValues(){
60
+	function loadFormValues()
61
+	{
56 62
 		
57
-		if(!$this->hasFormValues()) return false;
63
+		if(!$this->hasFormValues()) {
64
+		    return false;
65
+		}
58 66
 		
59 67
 		$p = $_SESSION["mgrFormValues"];
60 68
 		$this->clearSavedFormValues();
@@ -64,31 +72,41 @@  discard block
 block discarded – undo
64 72
 		return true;
65 73
 	}
66 74
 	// clear form post
67
-	function clearSavedFormValues(){
75
+	function clearSavedFormValues()
76
+	{
68 77
 		unset($_SESSION["mgrFormValues"]);
69 78
 		unset($_SESSION["mgrFormValueId"]);	
70 79
 	}
71 80
 	
72
-	function getHashType($db_value='') { // md5 | v1 | phpass
81
+	function getHashType($db_value='')
82
+	{
83
+// md5 | v1 | phpass
73 84
 		$c = substr($db_value,0,1);
74
-		if($c==='$')                                      return 'phpass';
75
-		elseif(strlen($db_value)===32)                    return 'md5';
76
-		elseif($c!=='$' && strpos($db_value,'>')!==false) return 'v1';
77
-		else                                              return 'unknown';
85
+		if($c==='$') {
86
+		    return 'phpass';
87
+		} elseif(strlen($db_value)===32) {
88
+		    return 'md5';
89
+		} elseif($c!=='$' && strpos($db_value,'>')!==false) {
90
+		    return 'v1';
91
+		} else {
92
+		    return 'unknown';
93
+		}
78 94
 	}
79 95
 	
80 96
 	function genV1Hash($password, $seed='1')
81
-	{ // $seed is user_id basically
97
+	{
98
+// $seed is user_id basically
82 99
 		global $modx;
83 100
 		
84
-		if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo']))
85
-			$algorithm = $modx->config['pwd_hash_algo'];
86
-		else $algorithm = 'UNCRYPT';
101
+		if(isset($modx->config['pwd_hash_algo']) && !empty($modx->config['pwd_hash_algo'])) {
102
+					$algorithm = $modx->config['pwd_hash_algo'];
103
+		} else {
104
+		    $algorithm = 'UNCRYPT';
105
+		}
87 106
 		
88 107
 		$salt = md5($password . $seed);
89 108
 		
90
-		switch($algorithm)
91
-		{
109
+		switch($algorithm) {
92 110
 			case 'BLOWFISH_Y':
93 111
 				$salt = '$2y$07$' . substr($salt,0,22);
94 112
 				break;
@@ -106,11 +124,11 @@  discard block
 block discarded – undo
106 124
 				break;
107 125
 		}
108 126
 		
109
-		if($algorithm!=='UNCRYPT')
110
-		{
127
+		if($algorithm!=='UNCRYPT') {
111 128
 			$password = sha1($password) . crypt($password,$salt);
129
+		} else {
130
+		    $password = sha1($salt.$password);
112 131
 		}
113
-		else $password = sha1($salt.$password);
114 132
 		
115 133
 		$result = strtolower($algorithm) . '>' . md5($salt.$password) . substr(md5($salt),0,8);
116 134
 		
@@ -124,9 +142,9 @@  discard block
 block discarded – undo
124 142
 		$rs = $modx->db->select('password',$tbl_manager_users,"id='{$uid}'");
125 143
 		$password = $modx->db->getValue($rs);
126 144
 		
127
-		if(strpos($password,'>')===false) $algo = 'NOSALT';
128
-		else
129
-		{
145
+		if(strpos($password,'>')===false) {
146
+		    $algo = 'NOSALT';
147
+		} else {
130 148
 			$algo = substr($password,0,strpos($password,'>'));
131 149
 		}
132 150
 		return strtoupper($algo);
@@ -135,27 +153,34 @@  discard block
 block discarded – undo
135 153
 	function checkHashAlgorithm($algorithm='')
136 154
 	{
137 155
 		$result = false;
138
-		if (!empty($algorithm))
139
-		{
140
-			switch ($algorithm)
141
-			{
156
+		if (!empty($algorithm)) {
157
+			switch ($algorithm) {
142 158
 				case 'BLOWFISH_Y':
143
-					if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1)
144
-					{
145
-						if (version_compare('5.3.7', PHP_VERSION) <= 0) $result = true;
159
+					if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) {
160
+						if (version_compare('5.3.7', PHP_VERSION) <= 0) {
161
+						    $result = true;
162
+						}
146 163
 					}
147 164
 					break;
148 165
 				case 'BLOWFISH_A':
149
-					if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) $result = true;
166
+					if (defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1) {
167
+					    $result = true;
168
+					}
150 169
 					break;
151 170
 				case 'SHA512':
152
-					if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) $result = true;
171
+					if (defined('CRYPT_SHA512') && CRYPT_SHA512 == 1) {
172
+					    $result = true;
173
+					}
153 174
 					break;
154 175
 				case 'SHA256':
155
-					if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) $result = true;
176
+					if (defined('CRYPT_SHA256') && CRYPT_SHA256 == 1) {
177
+					    $result = true;
178
+					}
156 179
 					break;
157 180
 				case 'MD5':
158
-					if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') $result = true;
181
+					if (defined('CRYPT_MD5') && CRYPT_MD5 == 1 && PHP_VERSION != '5.3.7') {
182
+					    $result = true;
183
+					}
159 184
 					break;
160 185
 				case 'UNCRYPT':
161 186
 					$result = true;
@@ -165,20 +190,24 @@  discard block
 block discarded – undo
165 190
 		return $result;
166 191
 	}
167 192
 
168
-	function getSystemChecksum($check_files) {
193
+	function getSystemChecksum($check_files)
194
+	{
169 195
 		$_ = array();
170 196
 		$check_files = trim($check_files);
171 197
 		$check_files = explode("\n", $check_files);
172 198
 		foreach($check_files as $file) {
173 199
 			$file = trim($file);
174 200
 			$file = MODX_BASE_PATH . $file;
175
-			if(!is_file($file)) continue;
201
+			if(!is_file($file)) {
202
+			    continue;
203
+			}
176 204
 			$_[$file]= md5_file($file);
177 205
 		}
178 206
 		return serialize($_);
179 207
 	}
180 208
 
181
-	function getModifiedSystemFilesList($check_files, $checksum) {
209
+	function getModifiedSystemFilesList($check_files, $checksum)
210
+	{
182 211
 		$_ = array();
183 212
 		$check_files = trim($check_files);
184 213
 		$check_files = explode("\n", $check_files);
@@ -186,41 +215,52 @@  discard block
 block discarded – undo
186 215
 		foreach($check_files as $file) {
187 216
 			$file = trim($file);
188 217
 			$filePath = MODX_BASE_PATH . $file;
189
-			if(!is_file($filePath)) continue;
190
-			if(md5_file($filePath) != $checksum[$filePath]) $_[] = $file;
218
+			if(!is_file($filePath)) {
219
+			    continue;
220
+			}
221
+			if(md5_file($filePath) != $checksum[$filePath]) {
222
+			    $_[] = $file;
223
+			}
191 224
 		}
192 225
 		return $_;
193 226
 	}
194 227
 
195
-	function setSystemChecksum($checksum) {
228
+	function setSystemChecksum($checksum)
229
+	{
196 230
 		global $modx;
197 231
 		$tbl_system_settings = $modx->getFullTableName('system_settings');
198 232
 		$sql = "REPLACE INTO {$tbl_system_settings} (setting_name, setting_value) VALUES ('sys_files_checksum','" . $modx->db->escape($checksum) . "')";
199 233
         $modx->db->query($sql);
200 234
 	}
201 235
 	
202
-	function checkSystemChecksum() {
236
+	function checkSystemChecksum()
237
+	{
203 238
 		global $modx;
204 239
 
205
-		if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) return '0';
240
+		if(!isset($modx->config['check_files_onlogin']) || empty($modx->config['check_files_onlogin'])) {
241
+		    return '0';
242
+		}
206 243
 		
207 244
 		$current = $this->getSystemChecksum($modx->config['check_files_onlogin']);
208
-		if(empty($current)) return '0';
245
+		if(empty($current)) {
246
+		    return '0';
247
+		}
209 248
 		
210
-		if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum']))
211
-		{
249
+		if(!isset($modx->config['sys_files_checksum']) || empty($modx->config['sys_files_checksum'])) {
212 250
 			$this->setSystemChecksum($current);
213 251
 			return '0';
214 252
 		}
215
-		if($current===$modx->config['sys_files_checksum']) $result = '0';
216
-		else {
253
+		if($current===$modx->config['sys_files_checksum']) {
254
+		    $result = '0';
255
+		} else {
217 256
 			$result = $this->getModifiedSystemFilesList($modx->config['check_files_onlogin'], $modx->config['sys_files_checksum']);
218 257
 		} 
219 258
 
220 259
 		return $result;
221 260
 	}
222 261
 
223
-    function getLastUserSetting($key=false) {
262
+    function getLastUserSetting($key=false)
263
+    {
224 264
         global $modx;
225 265
         
226 266
         $rs = $modx->db->select('*', $modx->getFullTableName('user_settings'), "user = '{$_SESSION['mgrInternalKey']}'");
@@ -233,15 +273,21 @@  discard block
 block discarded – undo
233 273
             }
234 274
         }
235 275
         
236
-        if(!$key) return $usersettings;
237
-        else return isset($usersettings[$key]) ? $usersettings[$key] : NULL;
276
+        if(!$key) {
277
+            return $usersettings;
278
+        } else {
279
+            return isset($usersettings[$key]) ? $usersettings[$key] : NULL;
280
+        }
238 281
     }
239 282
     
240
-    function saveLastUserSetting($settings, $val='') {
283
+    function saveLastUserSetting($settings, $val='')
284
+    {
241 285
         global $modx;
242 286
         
243 287
         if(!empty($settings)) {
244
-            if(!is_array($settings)) $settings = array($settings=>$val);
288
+            if(!is_array($settings)) {
289
+                $settings = array($settings=>$val);
290
+            }
245 291
             
246 292
             foreach ($settings as $key => $val) {
247 293
                 $f = array();
@@ -256,7 +302,8 @@  discard block
 block discarded – undo
256 302
         }
257 303
     }
258 304
     
259
-    function loadDatePicker($path) {
305
+    function loadDatePicker($path)
306
+    {
260 307
         global $modx;
261 308
         include_once($path);
262 309
         $dp = new DATEPICKER();
Please login to merge, or discard this patch.
manager/includes/extenders/phpass.class.inc.php 1 patch
Braces   +47 added lines, -31 removed lines patch added patch discarded remove patch
@@ -24,7 +24,8 @@  discard block
 block discarded – undo
24 24
 // Obviously, since this code is in the public domain, the above are not
25 25
 // requirements (there can be none), but merely suggestions.
26 26
 //
27
-class PasswordHash {
27
+class PasswordHash
28
+{
28 29
     var $itoa64;
29 30
     var $iteration_count_log2;
30 31
     var $portable_hashes;
@@ -34,8 +35,9 @@  discard block
 block discarded – undo
34 35
     {
35 36
         $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
36 37
 
37
-        if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31)
38
-            $iteration_count_log2 = 8;
38
+        if ($iteration_count_log2 < 4 || $iteration_count_log2 > 31) {
39
+                    $iteration_count_log2 = 8;
40
+        }
39 41
         $this->iteration_count_log2 = $iteration_count_log2;
40 42
 
41 43
         $this->portable_hashes = $portable_hashes;
@@ -73,16 +75,20 @@  discard block
 block discarded – undo
73 75
         do {
74 76
             $value = ord($input[$i++]);
75 77
             $output .= $this->itoa64[$value & 0x3f];
76
-            if ($i < $count)
77
-                $value |= ord($input[$i]) << 8;
78
+            if ($i < $count) {
79
+                            $value |= ord($input[$i]) << 8;
80
+            }
78 81
             $output .= $this->itoa64[($value >> 6) & 0x3f];
79
-            if ($i++ >= $count)
80
-                break;
81
-            if ($i < $count)
82
-                $value |= ord($input[$i]) << 16;
82
+            if ($i++ >= $count) {
83
+                            break;
84
+            }
85
+            if ($i < $count) {
86
+                            $value |= ord($input[$i]) << 16;
87
+            }
83 88
             $output .= $this->itoa64[($value >> 12) & 0x3f];
84
-            if ($i++ >= $count)
85
-                break;
89
+            if ($i++ >= $count) {
90
+                            break;
91
+            }
86 92
             $output .= $this->itoa64[($value >> 18) & 0x3f];
87 93
         } while ($i < $count);
88 94
 
@@ -101,23 +107,27 @@  discard block
 block discarded – undo
101 107
     function crypt_private($password, $setting)
102 108
     {
103 109
         $output = '*0';
104
-        if (substr($setting, 0, 2) == $output)
105
-            $output = '*1';
110
+        if (substr($setting, 0, 2) == $output) {
111
+                    $output = '*1';
112
+        }
106 113
 
107 114
         $id = substr($setting, 0, 3);
108 115
         // We use "$P$", phpBB3 uses "$H$" for the same thing
109
-        if ($id != '$P$' && $id != '$H$')
110
-            return $output;
116
+        if ($id != '$P$' && $id != '$H$') {
117
+                    return $output;
118
+        }
111 119
 
112 120
         $count_log2 = strpos($this->itoa64, $setting[3]);
113
-        if ($count_log2 < 7 || $count_log2 > 30)
114
-            return $output;
121
+        if ($count_log2 < 7 || $count_log2 > 30) {
122
+                    return $output;
123
+        }
115 124
 
116 125
         $count = 1 << $count_log2;
117 126
 
118 127
         $salt = substr($setting, 4, 8);
119
-        if (strlen($salt) != 8)
120
-            return $output;
128
+        if (strlen($salt) != 8) {
129
+                    return $output;
130
+        }
121 131
 
122 132
         // We're kind of forced to use MD5 here since it's the only
123 133
         // cryptographic primitive available in all versions of PHP
@@ -208,26 +218,31 @@  discard block
 block discarded – undo
208 218
             $random = $this->get_random_bytes(16);
209 219
             $hash =
210 220
                 crypt($password, $this->gensalt_blowfish($random));
211
-            if (strlen($hash) == 60)
212
-                return $hash;
221
+            if (strlen($hash) == 60) {
222
+                            return $hash;
223
+            }
213 224
         }
214 225
 
215 226
         if (CRYPT_EXT_DES == 1 && !$this->portable_hashes) {
216
-            if (strlen($random) < 3)
217
-                $random = $this->get_random_bytes(3);
227
+            if (strlen($random) < 3) {
228
+                            $random = $this->get_random_bytes(3);
229
+            }
218 230
             $hash =
219 231
                 crypt($password, $this->gensalt_extended($random));
220
-            if (strlen($hash) == 20)
221
-                return $hash;
232
+            if (strlen($hash) == 20) {
233
+                            return $hash;
234
+            }
222 235
         }
223 236
 
224
-        if (strlen($random) < 6)
225
-            $random = $this->get_random_bytes(6);
237
+        if (strlen($random) < 6) {
238
+                    $random = $this->get_random_bytes(6);
239
+        }
226 240
         $hash =
227 241
             $this->crypt_private($password,
228 242
             $this->gensalt_private($random));
229
-        if (strlen($hash) == 34)
230
-            return $hash;
243
+        if (strlen($hash) == 34) {
244
+                    return $hash;
245
+        }
231 246
 
232 247
         // Returning '*' on error is safe here, but would _not_ be safe
233 248
         // in a crypt(3)-like function used _both_ for generating new
@@ -242,8 +257,9 @@  discard block
 block discarded – undo
242 257
         }
243 258
 
244 259
         $hash = $this->crypt_private($password, $stored_hash);
245
-        if (substr($hash,0,1) === '*')
246
-            $hash = crypt($password, $stored_hash);
260
+        if (substr($hash,0,1) === '*') {
261
+                    $hash = crypt($password, $stored_hash);
262
+        }
247 263
 
248 264
         return ($hash===$stored_hash) ? true : false;
249 265
     }
Please login to merge, or discard this patch.
manager/includes/extenders/phpcompat.class.inc.php 1 patch
Braces   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,14 +10,17 @@
 block discarded – undo
10 10
 	{
11 11
 		global $modx;
12 12
 		
13
-		if($str=='') return '';
13
+		if($str=='') {
14
+		    return '';
15
+		}
14 16
 		
15
-		if($encode=='') $encode = $modx->config['modx_charset'];
17
+		if($encode=='') {
18
+		    $encode = $modx->config['modx_charset'];
19
+		}
16 20
 		
17 21
 		$ent_str = htmlspecialchars($str, $flags, $encode);
18 22
 		
19
-		if(!empty($str) && empty($ent_str))
20
-		{
23
+		if(!empty($str) && empty($ent_str)) {
21 24
 			$detect_order = implode(',', mb_detect_order());
22 25
 			$ent_str = mb_convert_encoding($str, $encode, $detect_order); 
23 26
 		}
Please login to merge, or discard this patch.
manager/includes/extenders/modifiers.class.inc.php 1 patch
Braces   +543 added lines, -281 removed lines patch added patch discarded remove patch
@@ -1,8 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if(!defined('MODX_CORE_PATH')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/');
3
+if(!defined('MODX_CORE_PATH')) {
4
+    define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/');
5
+}
4 6
 
5
-class MODIFIERS {
7
+class MODIFIERS
8
+{
6 9
     
7 10
     var $placeholders = array();
8 11
     var $vars = array();
@@ -20,14 +23,18 @@  discard block
 block discarded – undo
20 23
     {
21 24
         global $modx;
22 25
         
23
-        if (function_exists('mb_internal_encoding')) mb_internal_encoding($modx->config['modx_charset']);
26
+        if (function_exists('mb_internal_encoding')) {
27
+            mb_internal_encoding($modx->config['modx_charset']);
28
+        }
24 29
         $this->condModifiers = '=,is,eq,equals,ne,neq,notequals,isnot,isnt,not,%,isempty,isnotempty,isntempty,>=,gte,eg,gte,greaterthan,>,gt,isgreaterthan,isgt,lowerthan,<,lt,<=,lte,islte,islowerthan,islt,el,find,in,inarray,in_array,fnmatch,wcard,wcard_match,wildcard,wildcard_match,is_file,is_dir,file_exists,is_readable,is_writable,is_image,regex,preg,preg_match,memberof,mo,isinrole,ir';
25 30
     }
26 31
     
27 32
     function phxFilter($key,$value,$modifiers)
28 33
     {
29 34
         global $modx;
30
-        if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value);
35
+        if(substr($modifiers,0,3)!=='id(') {
36
+            $value = $this->parseDocumentSource($value);
37
+        }
31 38
         $this->srcValue = $value;
32 39
         $modifiers = trim($modifiers);
33 40
         $modifiers = ':'.trim($modifiers,':');
@@ -45,63 +52,81 @@  discard block
 block discarded – undo
45 52
         return $value;
46 53
     }
47 54
     
48
-    function _getDelim($mode,$modifiers) {
55
+    function _getDelim($mode,$modifiers)
56
+    {
49 57
         $c = substr($modifiers,0,1);
50
-        if(!in_array($c, array('"', "'", '`')) ) return false;
58
+        if(!in_array($c, array('"', "'", '`')) ) {
59
+            return false;
60
+        }
51 61
         
52 62
         $modifiers = substr($modifiers,1);
53 63
         $closure = $mode=='(' ? "{$c})" : $c;
54
-        if(strpos($modifiers, $closure)===false) return false;
64
+        if(strpos($modifiers, $closure)===false) {
65
+            return false;
66
+        }
55 67
         
56 68
         return  $c;
57 69
     }
58 70
     
59
-    function _getOpt($mode,$delim,$modifiers) {
71
+    function _getOpt($mode,$delim,$modifiers)
72
+    {
60 73
         if($delim) {
61
-            if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1);
74
+            if($mode=='(') {
75
+                return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1);
76
+            }
62 77
             
63 78
             return substr($modifiers,1,strpos($modifiers,$delim,1)-1);
64
-        }
65
-        else {
66
-            if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') );
79
+        } else {
80
+            if($mode=='(') {
81
+                return substr($modifiers,0,strpos($modifiers, ')') );
82
+            }
67 83
             
68 84
             $chars = str_split($modifiers);
69 85
             $opt='';
70 86
             foreach($chars as $c) {
71
-                if($c==':' || $c==')') break;
87
+                if($c==':' || $c==')') {
88
+                    break;
89
+                }
72 90
                 $opt .=$c;
73 91
             }
74 92
             return $opt;
75 93
         }
76 94
     }
77
-    function _getRemainModifiers($mode,$delim,$modifiers) {
95
+    function _getRemainModifiers($mode,$delim,$modifiers)
96
+    {
78 97
         if($delim) {
79
-            if($mode=='(')
80
-                return $this->_fetchContent($modifiers, $delim . ')');
81
-            else {
98
+            if($mode=='(') {
99
+                            return $this->_fetchContent($modifiers, $delim . ')');
100
+            } else {
82 101
                 $modifiers = trim($modifiers);
83 102
                 $modifiers = substr($modifiers,1);
84 103
                 return $this->_fetchContent($modifiers, $delim);
85 104
             }
86
-        }
87
-        else {
88
-            if($mode=='(') return $this->_fetchContent($modifiers, ')');
105
+        } else {
106
+            if($mode=='(') {
107
+                return $this->_fetchContent($modifiers, ')');
108
+            }
89 109
             $chars = str_split($modifiers);
90 110
             foreach($chars as $c) {
91
-                if($c==':') return $modifiers;
92
-                else $modifiers = substr($modifiers,1);
111
+                if($c==':') {
112
+                    return $modifiers;
113
+                } else {
114
+                    $modifiers = substr($modifiers,1);
115
+                }
93 116
             }
94 117
             return $modifiers;
95 118
         }
96 119
     }
97 120
     
98
-    function _fetchContent($string,$delim) {
121
+    function _fetchContent($string,$delim)
122
+    {
99 123
         $len = strlen($delim);
100 124
         $string = $this->parseDocumentSource($string);
101 125
         return substr($string,strpos($string, $delim)+$len);
102 126
     }
103 127
     
104
-    function splitEachModifiers($modifiers) {
128
+    function splitEachModifiers($modifiers)
129
+    {
105 130
         global $modx;
106 131
         
107 132
         $cmd = '';
@@ -111,11 +136,15 @@  discard block
 block discarded – undo
111 136
             $c = substr($modifiers,0,1);
112 137
             $modifiers = substr($modifiers,1);
113 138
             
114
-            if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>=
139
+            if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) {
140
+// :=, :!=, :<=, :>=, :!<=, :!>=
115 141
                 $c = substr($modifiers,strlen($match[1]),1);
116 142
                 $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]";
117
-                if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1);
118
-                else         $modifiers = substr($modifiers,strlen($match[1]));
143
+                if($c==='(') {
144
+                    $modifiers = substr($modifiers,strlen($match[1])+1);
145
+                } else {
146
+                    $modifiers = substr($modifiers,strlen($match[1]));
147
+                }
119 148
                 
120 149
                 $delim     = $this->_getDelim($c,$modifiers);
121 150
                 $opt       = $this->_getOpt($c,$delim,$modifiers);
@@ -123,13 +152,12 @@  discard block
 block discarded – undo
123 152
                 
124 153
                 $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo);
125 154
                 $cmd = '';
126
-            }
127
-            elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ...
155
+            } elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) {
156
+// :+3, :-3, :*3 ...
128 157
                 $modifiers = substr($modifiers,strlen($match[0]));
129 158
                 $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]);
130 159
                 $cmd = '';
131
-            }
132
-            elseif($c==='(' || $c==='=') {
160
+            } elseif($c==='(' || $c==='=') {
133 161
                 $modifiers = $m1 = trim($modifiers);
134 162
                 $delim     = $this->_getDelim($c,$modifiers);
135 163
                 $opt       = $this->_getOpt($c,$delim,$modifiers);
@@ -139,29 +167,29 @@  discard block
 block discarded – undo
139 167
                 $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo);
140 168
                 
141 169
                 $cmd = '';
142
-            }
143
-            elseif($c==':') {
170
+            } elseif($c==':') {
144 171
                 $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]";
145
-                if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo);
172
+                if($cmd!=='') {
173
+                    $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo);
174
+                }
146 175
                 
147 176
                 $cmd = '';
148
-            }
149
-            elseif(trim($modifiers)=='' && trim($cmd)!=='') {
177
+            } elseif(trim($modifiers)=='' && trim($cmd)!=='') {
150 178
                 $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]";
151 179
                 $cmd .= $c;
152 180
                 $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo);
153 181
                 
154 182
                 break;
155
-            }
156
-            else {
183
+            } else {
157 184
                 $cmd .= $c;
158 185
             }
159 186
         }
160 187
         
161
-        if(empty($result)) return array();
188
+        if(empty($result)) {
189
+            return array();
190
+        }
162 191
         
163
-        foreach($result as $i=>$a)
164
-        {
192
+        foreach($result as $i=>$a) {
165 193
             $a['opt'] = $this->parseDocumentSource($a['opt']);
166 194
             $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders);
167 195
         }
@@ -173,22 +201,23 @@  discard block
 block discarded – undo
173 201
     {
174 202
         global $modx;
175 203
         $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true)));
176
-        if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey];
177
-        if(empty($modifiers)) return '';
204
+        if(isset($this->tmpCache[$cacheKey])) {
205
+            return $this->tmpCache[$cacheKey];
206
+        }
207
+        if(empty($modifiers)) {
208
+            return '';
209
+        }
178 210
         
179
-        foreach($modifiers as $m)
180
-        {
211
+        foreach($modifiers as $m) {
181 212
             $lastKey = strtolower($m['cmd']);
182 213
         }
183 214
         $_ = explode(',',$this->condModifiers);
184
-        if(in_array($lastKey,$_))
185
-        {
215
+        if(in_array($lastKey,$_)) {
186 216
             $modifiers[] = array('cmd'=>'then','opt'=>'1');
187 217
             $modifiers[] = array('cmd'=>'else','opt'=>'0');
188 218
         }
189 219
         
190
-        foreach($modifiers as $i=>$a)
191
-        {
220
+        foreach($modifiers as $i=>$a) {
192 221
             $value = $this->Filter($key,$value, $a['cmd'], $a['opt']);
193 222
         }
194 223
         $this->tmpCache[$cacheKey] = $value;
@@ -200,25 +229,32 @@  discard block
 block discarded – undo
200 229
     {
201 230
         global $modx;
202 231
         
203
-        if($key==='documentObject') $value = $modx->documentIdentifier;
232
+        if($key==='documentObject') {
233
+            $value = $modx->documentIdentifier;
234
+        }
204 235
         $cmd = $this->parseDocumentSource($cmd);
205
-        if(preg_match('@^[1-9][/0-9]*$@',$cmd))
206
-        {
207
-            if(strpos($cmd,'/')!==false)
208
-                $cmd = $this->substr($cmd,strrpos($cmd,'/')+1);
236
+        if(preg_match('@^[1-9][/0-9]*$@',$cmd)) {
237
+            if(strpos($cmd,'/')!==false) {
238
+                            $cmd = $this->substr($cmd,strrpos($cmd,'/')+1);
239
+            }
209 240
             $opt = $cmd;
210 241
             $cmd = 'id';
211 242
         }
212 243
         
213
-        if(isset($modx->snippetCache["phx:{$cmd}"]))   $this->elmName = "phx:{$cmd}";
214
-        elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}";
215
-        else                                           $this->elmName = '';
244
+        if(isset($modx->snippetCache["phx:{$cmd}"])) {
245
+            $this->elmName = "phx:{$cmd}";
246
+        } elseif(isset($modx->chunkCache["phx:{$cmd}"])) {
247
+            $this->elmName = "phx:{$cmd}";
248
+        } else {
249
+            $this->elmName = '';
250
+        }
216 251
         
217 252
         $cmd = strtolower($cmd);
218
-        if($this->elmName!=='')
219
-            $value = $this->getValueFromElement($key, $value, $cmd, $opt);
220
-        else
221
-            $value = $this->getValueFromPreset($key, $value, $cmd, $opt);
253
+        if($this->elmName!=='') {
254
+                    $value = $this->getValueFromElement($key, $value, $cmd, $opt);
255
+        } else {
256
+                    $value = $this->getValueFromPreset($key, $value, $cmd, $opt);
257
+        }
222 258
         
223 259
         $value = str_replace('[+key+]', $key, $value);
224 260
         
@@ -227,29 +263,37 @@  discard block
 block discarded – undo
227 263
     
228 264
     function isEmpty($cmd,$value)
229 265
     {
230
-        if($value!=='') return false;
266
+        if($value!=='') {
267
+            return false;
268
+        }
231 269
         
232 270
         $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary');
233
-        if(in_array($cmd,$_)) return false;
234
-        else                  return true;
271
+        if(in_array($cmd,$_)) {
272
+            return false;
273
+        } else {
274
+            return true;
275
+        }
235 276
     }
236 277
     
237 278
     function getValueFromPreset($key, $value, $cmd, $opt)
238 279
     {
239 280
         global $modx;
240 281
         
241
-        if($this->isEmpty($cmd,$value)) return '';
282
+        if($this->isEmpty($cmd,$value)) {
283
+            return '';
284
+        }
242 285
         
243 286
         $this->key = $key;
244 287
         $this->value  = $value;
245 288
         $this->opt    = $opt;
246 289
         
247
-        switch ($cmd)
248
-        {
290
+        switch ($cmd) {
249 291
             #####  Conditional Modifiers 
250 292
             case 'input':
251 293
             case 'if':
252
-                if(!$opt) return $value;
294
+                if(!$opt) {
295
+                    return $value;
296
+                }
253 297
                 return $opt;
254 298
             case '=':
255 299
             case 'eq':
@@ -310,14 +354,24 @@  discard block
 block discarded – undo
310 354
             case 'file_exists':
311 355
             case 'is_readable':
312 356
             case 'is_writable':
313
-                if(!$opt) $path = $value;
314
-                else      $path = $opt;
315
-                if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path');
316
-                if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/');
357
+                if(!$opt) {
358
+                    $path = $value;
359
+                } else {
360
+                    $path = $opt;
361
+                }
362
+                if(strpos($path,MODX_MANAGER_PATH)!==false) {
363
+                    exit('Can not read core path');
364
+                }
365
+                if(strpos($path,$modx->config['base_path'])===false) {
366
+                    $path = ltrim($path,'/');
367
+                }
317 368
                 $this->condition[] = intval($cmd($path)!==false);break;
318 369
             case 'is_image':
319
-                if(!$opt) $path = $value;
320
-                else      $path = $opt;
370
+                if(!$opt) {
371
+                    $path = $value;
372
+                } else {
373
+                    $path = $opt;
374
+                }
321 375
                 if(!is_file($path)) {$this->condition[]='0';break;}
322 376
                 $_ = getimagesize($path);
323 377
                 $this->condition[] = intval($_[0]);break;
@@ -340,17 +394,23 @@  discard block
 block discarded – undo
340 394
             case 'this':
341 395
                 $conditional = join(' ',$this->condition);
342 396
                 $isvalid = intval(eval("return ({$conditional});"));
343
-                if ($isvalid) return $this->srcValue;
397
+                if ($isvalid) {
398
+                    return $this->srcValue;
399
+                }
344 400
                 return NULL;
345 401
             case 'then':
346 402
                 $conditional = join(' ',$this->condition);
347 403
                 $isvalid = intval(eval("return ({$conditional});"));
348
-                if ($isvalid)  return $opt;
404
+                if ($isvalid) {
405
+                    return $opt;
406
+                }
349 407
                 return null;
350 408
             case 'else':
351 409
                 $conditional = join(' ',$this->condition);
352 410
                 $isvalid = intval(eval("return ({$conditional});"));
353
-                if (!$isvalid) return $opt;
411
+                if (!$isvalid) {
412
+                    return $opt;
413
+                }
354 414
                 break;
355 415
             case 'select':
356 416
             case 'switch':
@@ -361,8 +421,11 @@  discard block
 block discarded – undo
361 421
                     $mi = explode('=',$raw[$m],2);
362 422
                     $map[$mi[0]] = $mi[1];
363 423
                 }
364
-                if(isset($map[$value])) return $map[$value];
365
-                else                    return '';
424
+                if(isset($map[$value])) {
425
+                    return $map[$value];
426
+                } else {
427
+                    return '';
428
+                }
366 429
             ##### End of Conditional Modifiers
367 430
             
368 431
             #####  Encode / Decode / Hash / Escape
@@ -388,24 +451,25 @@  discard block
 block discarded – undo
388 451
             case 'spam_protect':
389 452
                 return str_replace(array('@','.'),array('&#64;','&#46;'),$value);
390 453
             case 'strip':
391
-                if($opt==='') $opt = ' ';
454
+                if($opt==='') {
455
+                    $opt = ' ';
456
+                }
392 457
                 return preg_replace('/[\n\r\t\s]+/', $opt, $value);
393 458
             case 'strip_linefeeds':
394 459
                 return str_replace(array("\n","\r"), '', $value);
395 460
             case 'notags':
396 461
             case 'strip_tags':
397 462
             case 'remove_html':
398
-                if($opt!=='')
399
-                {
463
+                if($opt!=='') {
400 464
                     $param = array();
401
-                    foreach(explode(',',$opt) as $v)
402
-                    {
465
+                    foreach(explode(',',$opt) as $v) {
403 466
                         $v = trim($v,'</> ');
404 467
                         $param[] = "<{$v}>";
405 468
                     }
406 469
                     $params = join(',',$param);
470
+                } else {
471
+                    $params = '';
407 472
                 }
408
-                else $params = '';
409 473
                 if(!strpos($params,'<br>')===false) {
410 474
                     $value = preg_replace('@(<br[ /]*>)\n@','$1',$value);
411 475
                     $value = preg_replace('@<br[ /]*>@',"\n",$value);
@@ -416,8 +480,11 @@  discard block
 block discarded – undo
416 480
             case 'encode_url':
417 481
                 return urlencode($value);
418 482
             case 'base64_decode':
419
-                if($opt!=='false') $opt = true;
420
-                else               $opt = false;
483
+                if($opt!=='false') {
484
+                    $opt = true;
485
+                } else {
486
+                    $opt = false;
487
+                }
421 488
                 return base64_decode($value,$opt);
422 489
             case 'encode_sha1': $cmd = 'sha1';
423 490
             case 'addslashes':
@@ -443,16 +510,19 @@  discard block
 block discarded – undo
443 510
                 return $this->strtoupper($value);
444 511
             case 'capitalize':
445 512
                 $_ = explode(' ',$value);
446
-                foreach($_ as $i=>$v)
447
-                {
513
+                foreach($_ as $i=>$v) {
448 514
                     $_[$i] = ucfirst($v);
449 515
                 }
450 516
                 return join(' ',$_);
451 517
             case 'zenhan':
452
-                if(empty($opt)) $opt='VKas';
518
+                if(empty($opt)) {
519
+                    $opt='VKas';
520
+                }
453 521
                 return mb_convert_kana($value,$opt,$modx->config['modx_charset']);
454 522
             case 'hanzen':
455
-                if(empty($opt)) $opt='VKAS';
523
+                if(empty($opt)) {
524
+                    $opt='VKAS';
525
+                }
456 526
                 return mb_convert_kana($value,$opt,$modx->config['modx_charset']);
457 527
             case 'str_shuffle':
458 528
             case 'shuffle':
@@ -477,13 +547,18 @@  discard block
 block discarded – undo
477 547
                 $value = preg_replace('/\r/', '', $value);
478 548
                 return count(preg_split('/\n+/',$value));
479 549
             case 'strpos':
480
-                if($opt!=0&&empty($opt)) return $value;
550
+                if($opt!=0&&empty($opt)) {
551
+                    return $value;
552
+                }
481 553
                 return $this->strpos($value,$opt);
482 554
             case 'wordwrap':
483 555
                 // default: 70
484 556
                   $wrapat = intval($opt) ? intval($opt) : 70;
485
-                if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap');
486
-                else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value);
557
+                if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
558
+                    return $this->includeMdfFile('wordwrap');
559
+                } else {
560
+                    return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value);
561
+                }
487 562
             case 'wrap_text':
488 563
                 $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70;
489 564
                 if($modx->config['manager_language']==='japanese-utf8') {
@@ -499,30 +574,36 @@  discard block
 block discarded – undo
499 574
                         $value = $this->substr($value,$width);
500 575
                     }
501 576
                     return join("\n",$chunk);
577
+                } else {
578
+                                    return wordwrap($value,$width,"\n",true);
502 579
                 }
503
-                else
504
-                    return wordwrap($value,$width,"\n",true);
505 580
             case 'substr':
506
-                if(empty($opt)) break;
581
+                if(empty($opt)) {
582
+                    break;
583
+                }
507 584
                 if(strpos($opt,',')!==false) {
508 585
                     list($b,$e) = explode(',',$opt,2);
509 586
                     return $this->substr($value,$b,(int)$e);
587
+                } else {
588
+                    return $this->substr($value,$opt);
510 589
                 }
511
-                else return $this->substr($value,$opt);
512 590
             case 'limit':
513 591
             case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html
514
-                if(strpos($opt,'+')!==false)
515
-                    list($len,$str) = explode('+',$opt,2);
516
-                else {
592
+                if(strpos($opt,'+')!==false) {
593
+                                    list($len,$str) = explode('+',$opt,2);
594
+                } else {
517 595
                     $len = $opt;
518 596
                     $str = '';
519 597
                 }
520
-                if($len==='') $len = 100;
521
-                if(abs($len) > $this->strlen($value)) $str ='';
598
+                if($len==='') {
599
+                    $len = 100;
600
+                }
601
+                if(abs($len) > $this->strlen($value)) {
602
+                    $str ='';
603
+                }
522 604
                 if(preg_match('/^[1-9][0-9]*$/',$len)) {
523 605
                     return $this->substr($value,0,$len) . $str;
524
-                }
525
-                elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) {
606
+                } elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) {
526 607
                     return $str . $this->substr($value,$len);
527 608
                 }
528 609
                 break;
@@ -532,18 +613,30 @@  discard block
 block discarded – undo
532 613
                 return $this->includeMdfFile('summary');
533 614
             case 'replace':
534 615
             case 'str_replace':
535
-                if(empty($opt) || strpos($opt,',')===false) break;
536
-                if    (substr_count($opt, ',') ==1) $delim = ',';
537
-                elseif(substr_count($opt, '|') ==1) $delim = '|';
538
-                elseif(substr_count($opt, '=>')==1) $delim = '=>';
539
-                elseif(substr_count($opt, '/') ==1) $delim = '/';
540
-                else break;
616
+                if(empty($opt) || strpos($opt,',')===false) {
617
+                    break;
618
+                }
619
+                if    (substr_count($opt, ',') ==1) {
620
+                    $delim = ',';
621
+                } elseif(substr_count($opt, '|') ==1) {
622
+                    $delim = '|';
623
+                } elseif(substr_count($opt, '=>')==1) {
624
+                    $delim = '=>';
625
+                } elseif(substr_count($opt, '/') ==1) {
626
+                    $delim = '/';
627
+                } else {
628
+                    break;
629
+                }
541 630
                 list($s,$r) = explode($delim,$opt);
542
-                if($value!=='') return str_replace($s,$r,$value);
631
+                if($value!=='') {
632
+                    return str_replace($s,$r,$value);
633
+                }
543 634
                 break;
544 635
             case 'replace_to':
545 636
             case 'tpl':
546
-                if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt);
637
+                if($value!=='') {
638
+                    return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt);
639
+                }
547 640
                 break;
548 641
             case 'eachtpl':
549 642
                 $value = explode('||',$value);
@@ -554,59 +647,83 @@  discard block
 block discarded – undo
554 647
                 return join("\n", $_);
555 648
             case 'array_pop':
556 649
             case 'array_shift':
557
-                if(strpos($value,'||')!==false) $delim = '||';
558
-                else                            $delim = ',';
650
+                if(strpos($value,'||')!==false) {
651
+                    $delim = '||';
652
+                } else {
653
+                    $delim = ',';
654
+                }
559 655
                 return $cmd(explode($delim,$value));
560 656
             case 'preg_replace':
561 657
             case 'regex_replace':
562
-                if(empty($opt) || strpos($opt,',')===false) break;
658
+                if(empty($opt) || strpos($opt,',')===false) {
659
+                    break;
660
+                }
563 661
                 list($s,$r) = explode(',',$opt,2);
564
-                if($value!=='') return preg_replace($s,$r,$value);
662
+                if($value!=='') {
663
+                    return preg_replace($s,$r,$value);
664
+                }
565 665
                 break;
566 666
             case 'cat':
567 667
             case 'concatenate':
568 668
             case '.':
569
-                if($value!=='') return $value . $opt;
669
+                if($value!=='') {
670
+                    return $value . $opt;
671
+                }
570 672
                 break;
571 673
             case 'sprintf':
572 674
             case 'string_format':
573
-                if($value!=='') return sprintf($opt,$value);
675
+                if($value!=='') {
676
+                    return sprintf($opt,$value);
677
+                }
574 678
                 break;
575 679
             case 'number_format':
576
-                    if($opt=='') $opt = 0;
680
+                    if($opt=='') {
681
+                        $opt = 0;
682
+                    }
577 683
                     return number_format($value,$opt);
578 684
             case 'money_format':
579 685
                     setlocale(LC_MONETARY,setlocale(LC_TIME,0));
580
-                    if($value!=='') return money_format($opt,(double)$value);
686
+                    if($value!=='') {
687
+                        return money_format($opt,(double)$value);
688
+                    }
581 689
                     break;
582 690
             case 'tobool':
583 691
                 return boolval($value);
584 692
             case 'nl2lf':
585
-                if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value);
693
+                if($value!=='') {
694
+                    return str_replace(array("\r\n","\n", "\r"), '\n', $value);
695
+                }
586 696
                 break;
587 697
             case 'br2nl':
588 698
                 return preg_replace('@<br[\s/]*>@i', "\n", $value);
589 699
             case 'nl2br':
590
-                if (version_compare(PHP_VERSION, '5.3.0', '<'))
591
-                    return nl2br($value);
592
-                if($opt!=='')
593
-                {
700
+                if (version_compare(PHP_VERSION, '5.3.0', '<')) {
701
+                                    return nl2br($value);
702
+                }
703
+                if($opt!=='') {
594 704
                     $opt = trim($opt);
595 705
                     $opt = strtolower($opt);
596
-                    if($opt==='false') $opt = false;
597
-                    elseif($opt==='0') $opt = false;
598
-                    else               $opt = true;
706
+                    if($opt==='false') {
707
+                        $opt = false;
708
+                    } elseif($opt==='0') {
709
+                        $opt = false;
710
+                    } else {
711
+                        $opt = true;
712
+                    }
713
+                } elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') {
714
+                                                       $opt = false;
715
+                } else {
716
+                    $opt = true;
599 717
                 }
600
-                elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html')
601
-                                       $opt = false;
602
-                else                   $opt = true;
603 718
                 return nl2br($value,$opt);
604 719
             case 'ltrim':
605 720
             case 'rtrim':
606 721
             case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html
607
-                if($opt==='')
608
-                    return $cmd($value);
609
-                else return $cmd($value,$opt);
722
+                if($opt==='') {
723
+                                    return $cmd($value);
724
+                } else {
725
+                    return $cmd($value,$opt);
726
+                }
610 727
             // These are all straight wrappers for PHP functions
611 728
             case 'ucfirst':
612 729
             case 'lcfirst':
@@ -617,15 +734,24 @@  discard block
 block discarded – undo
617 734
             case 'strftime':
618 735
             case 'date':
619 736
             case 'dateformat':
620
-                if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly');
621
-                if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value);
622
-                if(strpos($opt,'%')!==false)
623
-                    return strftime($opt,0+$value);
624
-                else
625
-                    return date($opt,0+$value);
737
+                if(empty($opt)) {
738
+                    $opt = $modx->toDateFormat(null, 'formatOnly');
739
+                }
740
+                if(!preg_match('@^[0-9]+$@',$value)) {
741
+                    $value = strtotime($value);
742
+                }
743
+                if(strpos($opt,'%')!==false) {
744
+                                    return strftime($opt,0+$value);
745
+                } else {
746
+                                    return date($opt,0+$value);
747
+                }
626 748
             case 'time':
627
-                if(empty($opt)) $opt = '%H:%M';
628
-                if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value);
749
+                if(empty($opt)) {
750
+                    $opt = '%H:%M';
751
+                }
752
+                if(!preg_match('@^[0-9]+$@',$value)) {
753
+                    $value = strtotime($value);
754
+                }
629 755
                 return strftime($opt,0+$value);
630 756
             case 'strtotime':
631 757
                 return strtotime($value);
@@ -635,7 +761,9 @@  discard block
 block discarded – undo
635 761
             case 'tofloat':
636 762
                 return floatval($value);
637 763
             case 'round':
638
-                if(!$opt) $opt = 0;
764
+                if(!$opt) {
765
+                    $opt = 0;
766
+                }
639 767
                 return $cmd($value,$opt);
640 768
             case 'max':
641 769
             case 'min':
@@ -647,28 +775,42 @@  discard block
 block discarded – undo
647 775
             case 'math':
648 776
             case 'calc':
649 777
                 $value = (int)$value;
650
-                if(empty($value)) $value = '0';
778
+                if(empty($value)) {
779
+                    $value = '0';
780
+                }
651 781
                 $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt);
652 782
                 $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter);
653
-                if(strpos($filter,'?')===false) $filter = "?{$filter}";
783
+                if(strpos($filter,'?')===false) {
784
+                    $filter = "?{$filter}";
785
+                }
654 786
                 $filter = str_replace('?',$value,$filter);
655 787
                 return eval("return {$filter};");
656 788
             case 'count':
657
-                if($value=='') return 0;
789
+                if($value=='') {
790
+                    return 0;
791
+                }
658 792
                 $value = explode(',',$value);
659 793
                 return count($value);
660 794
             case 'sort':
661 795
             case 'rsort':
662
-                if(strpos($value,"\n")!==false) $delim="\n";
663
-                else $delim = ',';
796
+                if(strpos($value,"\n")!==false) {
797
+                    $delim="\n";
798
+                } else {
799
+                    $delim = ',';
800
+                }
664 801
                 $swap = explode($delim,$value);
665
-                if(!$opt) $opt = SORT_REGULAR;
666
-                else      $opt = constant($opt);
802
+                if(!$opt) {
803
+                    $opt = SORT_REGULAR;
804
+                } else {
805
+                    $opt = constant($opt);
806
+                }
667 807
                 $cmd($swap,$opt);
668 808
                 return join($delim,$swap);
669 809
             #####  Resource fields
670 810
             case 'id':
671
-                if($opt) return $this->getDocumentObject($opt,$key);
811
+                if($opt) {
812
+                    return $this->getDocumentObject($opt,$key);
813
+                }
672 814
                 break;
673 815
             case 'type':
674 816
             case 'contenttype':
@@ -705,7 +847,9 @@  discard block
 block discarded – undo
705 847
             case 'privatemgr':
706 848
             case 'content_dispo':
707 849
             case 'hidemenu':
708
-                if($cmd==='contenttype') $cmd = 'contentType';
850
+                if($cmd==='contenttype') {
851
+                    $cmd = 'contentType';
852
+                }
709 853
                 return $this->getDocumentObject($value,$cmd);
710 854
             case 'title':
711 855
                 $pagetitle = $this->getDocumentObject($value,'pagetitle');
@@ -720,13 +864,20 @@  discard block
 block discarded – undo
720 864
                 $templateName = $modx->db->getValue($rs);
721 865
                 return !$templateName ? '(blank)' : $templateName;
722 866
             case 'getfield':
723
-                if(!$opt) $opt = 'content';
867
+                if(!$opt) {
868
+                    $opt = 'content';
869
+                }
724 870
                 return $modx->getField($opt,$value);
725 871
             case 'children':
726 872
             case 'childids':
727
-                if($value=='') $value = 0; // 値がない場合はルートと見なす
873
+                if($value=='') {
874
+                    $value = 0;
875
+                }
876
+                // 値がない場合はルートと見なす
728 877
                 $published = 1;
729
-                if($opt=='') $opt = 'page';
878
+                if($opt=='') {
879
+                    $opt = 'page';
880
+                }
730 881
                 $_ = explode(',',$opt);
731 882
                 $where = array();
732 883
                 foreach($_ as $opt) {
@@ -742,29 +893,43 @@  discard block
 block discarded – undo
742 893
                 $where = join(' AND ', $where);
743 894
                 $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where);
744 895
                 $result = array();
745
-                foreach((array)$children as $child){
896
+                foreach((array)$children as $child) {
746 897
                     $result[] = $child['id'];
747 898
                 }
748 899
                 return join(',', $result);
749 900
             case 'fullurl':
750
-                if(!is_numeric($value)) return $value;
901
+                if(!is_numeric($value)) {
902
+                    return $value;
903
+                }
751 904
                 return $modx->makeUrl($value);
752 905
             case 'makeurl':
753
-                if(!is_numeric($value)) return $value;
754
-                if(!$opt) $opt = 'full';
906
+                if(!is_numeric($value)) {
907
+                    return $value;
908
+                }
909
+                if(!$opt) {
910
+                    $opt = 'full';
911
+                }
755 912
                 return $modx->makeUrl($value,'','',$opt);
756 913
                 
757 914
             #####  File system
758 915
             case 'getimageinfo':
759 916
             case 'imageinfo':
760
-                if(!is_file($value)) return '';
917
+                if(!is_file($value)) {
918
+                    return '';
919
+                }
761 920
                 $_ = getimagesize($value);
762
-                if(!$_[0]) return '';
921
+                if(!$_[0]) {
922
+                    return '';
923
+                }
763 924
                 $info['width']  = $_[0];
764 925
                 $info['height'] = $_[1];
765
-                if    ($_[0] > $_[1]) $info['aspect'] = 'landscape';
766
-                elseif($_[0] < $_[1]) $info['aspect'] = 'portrait';
767
-                else                  $info['aspect'] = 'square';
926
+                if    ($_[0] > $_[1]) {
927
+                    $info['aspect'] = 'landscape';
928
+                } elseif($_[0] < $_[1]) {
929
+                    $info['aspect'] = 'portrait';
930
+                } else {
931
+                    $info['aspect'] = 'square';
932
+                }
768 933
                 switch($_[2]) {
769 934
                     case IMAGETYPE_GIF  : $info['type'] = 'gif'; break;
770 935
                     case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break;
@@ -783,33 +948,47 @@  discard block
 block discarded – undo
783 948
             
784 949
             case 'file_get_contents':
785 950
             case 'readfile':
786
-                if(!is_file($value)) return $value;
951
+                if(!is_file($value)) {
952
+                    return $value;
953
+                }
787 954
                 $value = realpath($value);
788
-                if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file');
955
+                if(strpos($value,MODX_MANAGER_PATH)!==false) {
956
+                    exit('Can not read core file');
957
+                }
789 958
                 $ext = strtolower(substr($value,-4));
790
-                if($ext==='.php') exit('Can not read php file');
791
-                if($ext==='.cgi') exit('Can not read cgi file');
959
+                if($ext==='.php') {
960
+                    exit('Can not read php file');
961
+                }
962
+                if($ext==='.cgi') {
963
+                    exit('Can not read cgi file');
964
+                }
792 965
                 return file_get_contents($value);
793 966
             case 'filesize':
794
-                if($value == '') return '';
967
+                if($value == '') {
968
+                    return '';
969
+                }
795 970
                 $filename = $value;
796 971
                 
797 972
                 $site_url = $modx->config['site_url'];
798
-                if(strpos($filename,$site_url) === 0)
799
-                    $filename = substr($filename,0,strlen($site_url));
973
+                if(strpos($filename,$site_url) === 0) {
974
+                                    $filename = substr($filename,0,strlen($site_url));
975
+                }
800 976
                 $filename = trim($filename,'/');
801 977
                 
802 978
                 $opt = trim($opt,'/');
803
-                if($opt!=='') $opt .= '/';
979
+                if($opt!=='') {
980
+                    $opt .= '/';
981
+                }
804 982
                 
805 983
                 $filename = MODX_BASE_PATH.$opt.$filename;
806 984
                 
807
-                if(is_file($filename)){
985
+                if(is_file($filename)) {
808 986
                     clearstatcache();
809 987
                     $size = filesize($filename);
810 988
                     return $size;
989
+                } else {
990
+                    return '';
811 991
                 }
812
-                else return '';
813 992
             #####  User info
814 993
             case 'username':
815 994
             case 'fullname':
@@ -837,19 +1016,29 @@  discard block
 block discarded – undo
837 1016
                 $this->opt = $cmd;
838 1017
                 return $this->includeMdfFile('moduser');
839 1018
             case 'userinfo':
840
-                if(empty($opt)) $this->opt = 'username';
1019
+                if(empty($opt)) {
1020
+                    $this->opt = 'username';
1021
+                }
841 1022
                 return $this->includeMdfFile('moduser');
842 1023
             case 'webuserinfo':
843
-                if(empty($opt)) $this->opt = 'username';
1024
+                if(empty($opt)) {
1025
+                    $this->opt = 'username';
1026
+                }
844 1027
                 $this->value = -$value;
845 1028
                 return $this->includeMdfFile('moduser');
846 1029
             #####  Special functions 
847 1030
             case 'ifempty':
848 1031
             case '_default':
849 1032
             case 'default':
850
-                if (empty($value)) return $opt; break;
1033
+                if (empty($value)) {
1034
+                    return $opt;
1035
+                }
1036
+                break;
851 1037
             case 'ifnotempty':
852
-                if (!empty($value)) return $opt; break;
1038
+                if (!empty($value)) {
1039
+                    return $opt;
1040
+                }
1041
+                break;
853 1042
             case 'datagrid':
854 1043
                 include_once(MODX_CORE_PATH . 'controls/datagrid.class.php');
855 1044
                 $grd = new DataGrid();
@@ -857,13 +1046,18 @@  discard block
 block discarded – undo
857 1046
                 $grd->itemStyle = '';
858 1047
                 $grd->altItemStyle = '';
859 1048
                 $pos = strpos($value,"\n");
860
-                if($pos) $_ = substr($value,0,$pos);
861
-                else $_ = $pos;
1049
+                if($pos) {
1050
+                    $_ = substr($value,0,$pos);
1051
+                } else {
1052
+                    $_ = $pos;
1053
+                }
862 1054
                 $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ',';
863 1055
                 return $grd->render();
864 1056
             case 'rotate':
865 1057
             case 'evenodd':
866
-                if(strpos($opt,',')===false) $opt = 'odd,even';
1058
+                if(strpos($opt,',')===false) {
1059
+                    $opt = 'odd,even';
1060
+                }
867 1061
                 $_ = explode(',', $opt);
868 1062
                 $c = count($_);
869 1063
                 $i = $value + $c;
@@ -872,7 +1066,9 @@  discard block
 block discarded – undo
872 1066
             case 'takeval':
873 1067
                 $arr = explode(",",$opt);
874 1068
                 $idx = $value;
875
-                if(!is_numeric($idx)) return $value;
1069
+                if(!is_numeric($idx)) {
1070
+                    return $value;
1071
+                }
876 1072
                 return $arr[$idx];
877 1073
             case 'getimage':
878 1074
                 return $this->includeMdfFile('getimage');
@@ -880,14 +1076,18 @@  discard block
 block discarded – undo
880 1076
                     return $modx->nicesize($value);
881 1077
             case 'googlemap':
882 1078
             case 'googlemaps':
883
-                if(empty($opt)) $opt = 'border:none;width:500px;height:350px;';
1079
+                if(empty($opt)) {
1080
+                    $opt = 'border:none;width:500px;height:350px;';
1081
+                }
884 1082
                 $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>';
885 1083
                 $ph['style'] = $opt;
886 1084
                 $ph['value'] = $value;
887 1085
                 return $modx->parseText($tpl,$ph);
888 1086
             case 'youtube':
889 1087
             case 'youtube16x9':
890
-                if(empty($opt)) $opt = 560;
1088
+                if(empty($opt)) {
1089
+                    $opt = 560;
1090
+                }
891 1091
                 $h = round($opt*0.5625);
892 1092
                 $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>';
893 1093
                 return sprintf($tpl,$opt,$h,$value);
@@ -920,7 +1120,8 @@  discard block
 block discarded – undo
920 1120
         return $value;
921 1121
     }
922 1122
 
923
-    function includeMdfFile($cmd) {
1123
+    function includeMdfFile($cmd)
1124
+    {
924 1125
         global $modx;
925 1126
         $key = $this->key;
926 1127
         $value  = $this->value;
@@ -931,55 +1132,65 @@  discard block
 block discarded – undo
931 1132
     function getValueFromElement($key, $value, $cmd, $opt)
932 1133
     {
933 1134
         global $modx;
934
-        if( isset($modx->snippetCache[$this->elmName]) )
935
-        {
1135
+        if( isset($modx->snippetCache[$this->elmName]) ) {
936 1136
             $php = $modx->snippetCache[$this->elmName];
937
-        }
938
-        else
939
-        {
1137
+        } else {
940 1138
             $esc_elmName = $modx->db->escape($this->elmName);
941 1139
             $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'");
942 1140
             $total = $modx->db->getRecordCount($result);
943
-            if($total == 1)
944
-            {
1141
+            if($total == 1) {
945 1142
                 $row = $modx->db->getRow($result);
946 1143
                 $php = $row['snippet'];
947
-            }
948
-            elseif($total == 0)
949
-            {
1144
+            } elseif($total == 0) {
950 1145
                 $assets_path = MODX_BASE_PATH.'assets/';
951
-                if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php"))
952
-                    $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php";
953
-                elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php"))
954
-                    $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php";
955
-                elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"))
956
-                    $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php";
957
-                else $modifiers_path = false;
1146
+                if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) {
1147
+                                    $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php";
1148
+                } elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) {
1149
+                                    $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php";
1150
+                } elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) {
1151
+                                    $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php";
1152
+                } else {
1153
+                    $modifiers_path = false;
1154
+                }
958 1155
                 
959 1156
                 if($modifiers_path) {
960 1157
                     $php = @file_get_contents($modifiers_path);
961 1158
                     $php = trim($php);
962
-                    if(substr($php,0,5)==='<?php') $php = substr($php,6);
963
-                    if(substr($php,0,2)==='<?')    $php = substr($php,3);
964
-                    if(substr($php,-2)==='?>')     $php = substr($php,0,-2);
965
-                    if($this->elmName!=='')
966
-                        $modx->snippetCache[$this->elmName.'Props'] = '';
967
-                }
968
-                else
969
-                    $php = false;
1159
+                    if(substr($php,0,5)==='<?php') {
1160
+                        $php = substr($php,6);
1161
+                    }
1162
+                    if(substr($php,0,2)==='<?') {
1163
+                        $php = substr($php,3);
1164
+                    }
1165
+                    if(substr($php,-2)==='?>') {
1166
+                        $php = substr($php,0,-2);
1167
+                    }
1168
+                    if($this->elmName!=='') {
1169
+                                            $modx->snippetCache[$this->elmName.'Props'] = '';
1170
+                    }
1171
+                } else {
1172
+                                    $php = false;
1173
+                }
1174
+            } else {
1175
+                $php = false;
970 1176
             }
971
-            else $php = false;
972
-            if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php;
1177
+            if($this->elmName!=='') {
1178
+                $modx->snippetCache[$this->elmName]= $php;
1179
+            }
1180
+        }
1181
+        if($php==='') {
1182
+            $php=false;
973 1183
         }
974
-        if($php==='') $php=false;
975 1184
         
976
-        if($php===false) $html = $modx->getChunk($this->elmName);
977
-        else             $html = false;
1185
+        if($php===false) {
1186
+            $html = $modx->getChunk($this->elmName);
1187
+        } else {
1188
+            $html = false;
1189
+        }
978 1190
 
979 1191
         $self = '[+output+]';
980 1192
         
981
-        if($php !== false)
982
-        {
1193
+        if($php !== false) {
983 1194
             ob_start();
984 1195
             $options = $opt;
985 1196
             $output = $value;
@@ -991,19 +1202,19 @@  discard block
 block discarded – undo
991 1202
             $this->vars['options'] = & $opt;
992 1203
             $custom = eval($php);
993 1204
             $msg = ob_get_contents();
994
-            if($value===$this->bt) $value = $msg . $custom;
1205
+            if($value===$this->bt) {
1206
+                $value = $msg . $custom;
1207
+            }
995 1208
             ob_end_clean();
996
-        }
997
-        elseif($html!==false && isset($value) && $value!=='')
998
-        {
1209
+        } elseif($html!==false && isset($value) && $value!=='') {
999 1210
             $html = str_replace(array($self,'[+value+]'), $value, $html);
1000 1211
             $value = str_replace(array('[+options+]','[+param+]'), $opt, $html);
1212
+        } else {
1213
+            return false;
1001 1214
         }
1002
-        else return false;
1003 1215
         
1004 1216
         if($php===false && $html===false && $value!==''
1005
-           && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false))
1006
-        {
1217
+           && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) {
1007 1218
             $value = str_replace(array('[+value+]',$self),$value,$cmd);
1008 1219
         }
1009 1220
         return $value;
@@ -1013,23 +1224,39 @@  discard block
 block discarded – undo
1013 1224
     {
1014 1225
         global $modx;
1015 1226
         
1016
-        if(strpos($content,'[')===false && strpos($content,'{')===false) return $content;
1227
+        if(strpos($content,'[')===false && strpos($content,'{')===false) {
1228
+            return $content;
1229
+        }
1017 1230
         
1018
-        if(!$modx->maxParserPasses) $modx->maxParserPasses = 10;
1231
+        if(!$modx->maxParserPasses) {
1232
+            $modx->maxParserPasses = 10;
1233
+        }
1019 1234
         $bt='';
1020 1235
         $i=0;
1021
-        while($bt!==$content)
1022
-        {
1236
+        while($bt!==$content) {
1023 1237
             $bt = $content;
1024
-            if(strpos($content,'[*')!==false && $modx->documentIdentifier)
1025
-                                              $content = $modx->mergeDocumentContent($content);
1026
-            if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content);
1027
-            if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content);
1028
-            if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content);
1029
-            if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content);
1238
+            if(strpos($content,'[*')!==false && $modx->documentIdentifier) {
1239
+                                                          $content = $modx->mergeDocumentContent($content);
1240
+            }
1241
+            if(strpos($content,'[(')!==false) {
1242
+                $content = $modx->mergeSettingsContent($content);
1243
+            }
1244
+            if(strpos($content,'{{')!==false) {
1245
+                $content = $modx->mergeChunkContent($content);
1246
+            }
1247
+            if(strpos($content,'[!')!==false) {
1248
+                $content = str_replace(array('[!','!]'),array('[[',']]'),$content);
1249
+            }
1250
+            if(strpos($content,'[[')!==false) {
1251
+                $content = $modx->evalSnippets($content);
1252
+            }
1030 1253
             
1031
-            if($content===$bt)              break;
1032
-            if($modx->maxParserPasses < $i) break;
1254
+            if($content===$bt) {
1255
+                break;
1256
+            }
1257
+            if($modx->maxParserPasses < $i) {
1258
+                break;
1259
+            }
1033 1260
             $i++;
1034 1261
         }
1035 1262
         return $content;
@@ -1040,103 +1267,138 @@  discard block
 block discarded – undo
1040 1267
         global $modx;
1041 1268
         
1042 1269
         $target = trim($target);
1043
-        if(empty($target)) $target = $modx->config['site_start'];
1044
-        if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id';
1045
-        else $method = 'alias';
1270
+        if(empty($target)) {
1271
+            $target = $modx->config['site_start'];
1272
+        }
1273
+        if(preg_match('@^[1-9][0-9]*$@',$target)) {
1274
+            $method='id';
1275
+        } else {
1276
+            $method = 'alias';
1277
+        }
1046 1278
 
1047
-        if(!isset($this->documentObject[$target]))
1048
-        {
1279
+        if(!isset($this->documentObject[$target])) {
1049 1280
             $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct');
1050 1281
         }
1051 1282
         
1052
-        if($this->documentObject[$target]['publishedon']==='0')
1053
-            return '';
1054
-        elseif(isset($this->documentObject[$target][$field]))
1055
-        {
1056
-            if(is_array($this->documentObject[$target][$field]))
1057
-            {
1283
+        if($this->documentObject[$target]['publishedon']==='0') {
1284
+                    return '';
1285
+        } elseif(isset($this->documentObject[$target][$field])) {
1286
+            if(is_array($this->documentObject[$target][$field])) {
1058 1287
                 $a = $modx->getTemplateVarOutput($field,$target);
1059 1288
                 $this->documentObject[$target][$field] = $a[$field];
1060 1289
             }
1290
+        } else {
1291
+            $this->documentObject[$target][$field] = false;
1061 1292
         }
1062
-        else $this->documentObject[$target][$field] = false;
1063 1293
         
1064 1294
         return $this->documentObject[$target][$field];
1065 1295
     }
1066 1296
     
1067
-    function setPlaceholders($value = '', $key = '', $path = '') {
1068
-        if($path!=='') $key = "{$path}.{$key}";
1297
+    function setPlaceholders($value = '', $key = '', $path = '')
1298
+    {
1299
+        if($path!=='') {
1300
+            $key = "{$path}.{$key}";
1301
+        }
1069 1302
         if (is_array($value)) {
1070 1303
             foreach ($value as $subkey => $subval) {
1071 1304
                 $this->setPlaceholders($subval, $subkey, $key);
1072 1305
             }
1306
+        } else {
1307
+            $this->setModifiersVariable($key, $value);
1073 1308
         }
1074
-        else $this->setModifiersVariable($key, $value);
1075 1309
     }
1076 1310
     
1077 1311
     // Sets a placeholder variable which can only be access by Modifiers
1078
-    function setModifiersVariable($key, $value) {
1079
-        if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value;
1312
+    function setModifiersVariable($key, $value)
1313
+    {
1314
+        if ($key != 'phx' && $key != 'dummy') {
1315
+            $this->placeholders[$key] = $value;
1316
+        }
1080 1317
     }
1081 1318
     
1082 1319
     //mbstring
1083
-    function substr($str, $s, $l = null) {
1320
+    function substr($str, $s, $l = null)
1321
+    {
1084 1322
         global $modx;
1085
-        if(is_null($l)) $l = $this->strlen($str);
1086
-        if (function_exists('mb_substr'))
1087
-        {
1088
-            if(strpos($str,"\r")!==false)
1089
-                $str = str_replace(array("\r\n","\r"), "\n", $str);
1323
+        if(is_null($l)) {
1324
+            $l = $this->strlen($str);
1325
+        }
1326
+        if (function_exists('mb_substr')) {
1327
+            if(strpos($str,"\r")!==false) {
1328
+                            $str = str_replace(array("\r\n","\r"), "\n", $str);
1329
+            }
1090 1330
             return mb_substr($str, $s, $l, $modx->config['modx_charset']);
1091 1331
         }
1092 1332
         return substr($str, $s, $l);
1093 1333
     }
1094
-    function strpos($haystack,$needle,$offset=0) {
1334
+    function strpos($haystack,$needle,$offset=0)
1335
+    {
1095 1336
         global $modx;
1096
-        if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']);
1337
+        if (function_exists('mb_strpos')) {
1338
+            return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']);
1339
+        }
1097 1340
         return strpos($haystack,$needle,$offset);
1098 1341
     }
1099
-    function strlen($str) {
1342
+    function strlen($str)
1343
+    {
1100 1344
         global $modx;
1101
-        if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']);
1345
+        if (function_exists('mb_strlen')) {
1346
+            return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']);
1347
+        }
1102 1348
         return strlen($str);
1103 1349
     }
1104
-    function strtolower($str) {
1105
-        if (function_exists('mb_strtolower')) return mb_strtolower($str);
1350
+    function strtolower($str)
1351
+    {
1352
+        if (function_exists('mb_strtolower')) {
1353
+            return mb_strtolower($str);
1354
+        }
1106 1355
         return strtolower($str);
1107 1356
     }
1108
-    function strtoupper($str) {
1109
-        if (function_exists('mb_strtoupper')) return mb_strtoupper($str);
1357
+    function strtoupper($str)
1358
+    {
1359
+        if (function_exists('mb_strtoupper')) {
1360
+            return mb_strtoupper($str);
1361
+        }
1110 1362
         return strtoupper($str);
1111 1363
     }
1112
-    function ucfirst($str) {
1113
-        if (function_exists('mb_strtoupper')) 
1114
-            return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str));
1364
+    function ucfirst($str)
1365
+    {
1366
+        if (function_exists('mb_strtoupper')) {
1367
+                    return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str));
1368
+        }
1115 1369
         return ucfirst($str);
1116 1370
     }
1117
-    function lcfirst($str) {
1118
-        if (function_exists('mb_strtolower')) 
1119
-            return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str));
1371
+    function lcfirst($str)
1372
+    {
1373
+        if (function_exists('mb_strtolower')) {
1374
+                    return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str));
1375
+        }
1120 1376
         return lcfirst($str);
1121 1377
     }
1122
-    function ucwords($str) {
1123
-        if (function_exists('mb_convert_case'))
1124
-            return mb_convert_case($str, MB_CASE_TITLE);
1378
+    function ucwords($str)
1379
+    {
1380
+        if (function_exists('mb_convert_case')) {
1381
+                    return mb_convert_case($str, MB_CASE_TITLE);
1382
+        }
1125 1383
         return ucwords($str);
1126 1384
     }
1127
-    function strrev($str) {
1385
+    function strrev($str)
1386
+    {
1128 1387
         preg_match_all('/./us', $str, $ar);
1129 1388
         return join(array_reverse($ar[0]));
1130 1389
     }
1131
-    function str_shuffle($str) {
1390
+    function str_shuffle($str)
1391
+    {
1132 1392
         preg_match_all('/./us', $str, $ar);
1133 1393
         shuffle($ar[0]);
1134 1394
         return join($ar[0]);
1135 1395
     }
1136
-    function str_word_count($str) {
1396
+    function str_word_count($str)
1397
+    {
1137 1398
         return count(preg_split('~[^\p{L}\p{N}\']+~u',$str));
1138 1399
     }
1139
-    function strip_tags($value,$params='') {
1400
+    function strip_tags($value,$params='')
1401
+    {
1140 1402
         global $modx;
1141 1403
 
1142 1404
         if(stripos($params,'style')===false && stripos($value,'</style>')!==false) {
Please login to merge, or discard this patch.
manager/includes/extenders/ex_modxmailer.inc.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
  * Time: 14:17
7 7
  */
8 8
 
9
-if (!include_once(MODX_MANAGER_PATH . 'includes/extenders/modxmailer.class.inc.php')){
9
+if (!include_once(MODX_MANAGER_PATH . 'includes/extenders/modxmailer.class.inc.php')) {
10 10
     return false;
11
-}else{
11
+} else {
12 12
     $this->mail = new MODxMailer;
13 13
     $this->mail->init($this);
14 14
     return true;
Please login to merge, or discard this patch.