@@ -414,6 +414,9 @@ discard block |
||
414 | 414 | } |
415 | 415 | } |
416 | 416 | |
417 | + /** |
|
418 | + * @param string $table |
|
419 | + */ |
|
417 | 420 | public function save($fields, $table, $where = '') |
418 | 421 | { |
419 | 422 | |
@@ -444,6 +447,7 @@ discard block |
||
444 | 447 | /** |
445 | 448 | * @name: freeResult |
446 | 449 | * |
450 | + * @param mysqli_result $rs |
|
447 | 451 | */ |
448 | 452 | public function freeResult($rs) |
449 | 453 | { |
@@ -554,6 +558,7 @@ discard block |
||
554 | 558 | * @name: getColumn |
555 | 559 | * @desc: returns an array of the values found on colun $name |
556 | 560 | * @param: $dsq - dataset or query string |
561 | + * @param string $name |
|
557 | 562 | */ |
558 | 563 | public function getColumn($name, $dsq) |
559 | 564 | { |
@@ -720,6 +725,9 @@ discard block |
||
720 | 725 | return $result; |
721 | 726 | } |
722 | 727 | |
728 | + /** |
|
729 | + * @param string $table_name |
|
730 | + */ |
|
723 | 731 | public function optimize($table_name) |
724 | 732 | { |
725 | 733 | $rs = $this->query("OPTIMIZE TABLE {$table_name}"); |
@@ -730,6 +738,9 @@ discard block |
||
730 | 738 | return $rs; |
731 | 739 | } |
732 | 740 | |
741 | + /** |
|
742 | + * @param string $table_name |
|
743 | + */ |
|
733 | 744 | public function truncate($table_name) |
734 | 745 | { |
735 | 746 | $rs = $this->query("TRUNCATE {$table_name}"); |
@@ -240,9 +240,9 @@ discard block |
||
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
243 | - * @param string|array $fields |
|
244 | - * @param string|array $from |
|
245 | - * @param string|array $where |
|
243 | + * @param string $fields |
|
244 | + * @param string $from |
|
245 | + * @param string $where |
|
246 | 246 | * @param string $orderBy |
247 | 247 | * @param string $limit |
248 | 248 | * @return bool|mysqli_result |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | * @param string $fromtable |
327 | 327 | * @param string $where |
328 | 328 | * @param string $limit |
329 | - * @return mixed |
|
329 | + * @return null|integer |
|
330 | 330 | */ |
331 | 331 | public function insert($fields, $intotable, $fromfields = "*", $fromtable = "", $where = "", $limit = "") |
332 | 332 | { |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | |
369 | 369 | /** |
370 | 370 | * @param $fields |
371 | - * @param $table |
|
371 | + * @param string $table |
|
372 | 372 | * @param string $where |
373 | 373 | * @return bool|mixed|mysqli_result |
374 | 374 | */ |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | |
436 | 436 | /** |
437 | 437 | * @param null|mysqli $conn |
438 | - * @return mixed |
|
438 | + * @return integer |
|
439 | 439 | */ |
440 | 440 | public function getInsertId($conn = null) |
441 | 441 | { |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | } |
514 | 514 | |
515 | 515 | /** |
516 | - * @param $name |
|
516 | + * @param string $name |
|
517 | 517 | * @param mysqli_result|string $dsq |
518 | 518 | * @return array |
519 | 519 | */ |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | |
573 | 573 | /** |
574 | 574 | * @param string $table |
575 | - * @return array |
|
575 | + * @return boolean |
|
576 | 576 | */ |
577 | 577 | public function getTableMetaData($table) |
578 | 578 | { |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | } |
620 | 620 | |
621 | 621 | /** |
622 | - * @param string|mysqli_result $rs |
|
622 | + * @param string $rs |
|
623 | 623 | * @param bool $index |
624 | 624 | * @return array |
625 | 625 | */ |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $pre = null, |
31 | 31 | $charset = '', |
32 | 32 | $connection_method = 'SET CHARACTER SET' |
33 | - ) { |
|
33 | + ){ |
|
34 | 34 | $this->config['host'] = $host ? $host : $GLOBALS['database_server']; |
35 | 35 | $this->config['dbase'] = $dbase ? $dbase : $GLOBALS['dbase']; |
36 | 36 | $this->config['user'] = $uid ? $uid : $GLOBALS['database_user']; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $ua = $modx->htmlspecialchars($_SERVER['HTTP_USER_AGENT']); |
71 | 71 | $referer = $modx->htmlspecialchars($_SERVER['HTTP_REFERER']); |
72 | 72 | $modx->sendmail(array( |
73 | - 'subject' => 'Missing to create the database connection! from ' . $modx->config['site_name'], |
|
73 | + 'subject' => 'Missing to create the database connection! from '.$modx->config['site_name'], |
|
74 | 74 | 'body' => "{$logtitle}\n{$request_uri}\n{$ua}\n{$referer}", |
75 | 75 | 'type' => 'text' |
76 | 76 | )); |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | $tend = $modx->getMicroTime(); |
86 | 86 | $totaltime = $tend - $tstart; |
87 | 87 | if ($modx->dumpSQL) { |
88 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>" . sprintf("Database connection was created in %2.4f s", |
|
89 | - $totaltime) . "</fieldset><br />"; |
|
88 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Database connection</legend>".sprintf("Database connection was created in %2.4f s", |
|
89 | + $totaltime)."</fieldset><br />"; |
|
90 | 90 | } |
91 | 91 | $this->conn->set_charset($this->config['charset']); |
92 | 92 | $this->isConnected = true; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | if (1000 < $safeCount) { |
120 | 120 | exit("Too many loops '{$safeCount}'"); |
121 | 121 | } |
122 | - if ( ! ($this->conn instanceof mysqli)) { |
|
122 | + if (!($this->conn instanceof mysqli)) { |
|
123 | 123 | $this->connect(); |
124 | 124 | } |
125 | 125 | if (is_array($s)) { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | public function query($sql, $watchError = true) |
146 | 146 | { |
147 | 147 | $modx = evolutionCMS(); |
148 | - if ( ! ($this->conn instanceof mysqli)) { |
|
148 | + if (!($this->conn instanceof mysqli)) { |
|
149 | 149 | $this->connect(); |
150 | 150 | } |
151 | 151 | $tStart = $modx->getMicroTime(); |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | case 1091: |
166 | 166 | break; |
167 | 167 | default: |
168 | - $modx->messageQuit('Execution of a query to the database failed - ' . $this->getLastError(), $sql); |
|
168 | + $modx->messageQuit('Execution of a query to the database failed - '.$this->getLastError(), $sql); |
|
169 | 169 | } |
170 | 170 | } else { |
171 | 171 | $tend = $modx->getMicroTime(); |
@@ -179,24 +179,24 @@ discard block |
||
179 | 179 | $debug_path[] = $line['function']; |
180 | 180 | } |
181 | 181 | $debug_path = implode(' > ', array_reverse($debug_path)); |
182 | - $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query " . ($modx->executedQueries + 1) . " - " . sprintf("%2.2f ms", |
|
183 | - $totalTime * 1000) . "</legend>"; |
|
184 | - $modx->queryCode .= $sql . '<br><br>'; |
|
182 | + $modx->queryCode .= "<fieldset style='text-align:left'><legend>Query ".($modx->executedQueries + 1)." - ".sprintf("%2.2f ms", |
|
183 | + $totalTime * 1000)."</legend>"; |
|
184 | + $modx->queryCode .= $sql.'<br><br>'; |
|
185 | 185 | if ($modx->event->name) { |
186 | - $modx->queryCode .= 'Current Event => ' . $modx->event->name . '<br>'; |
|
186 | + $modx->queryCode .= 'Current Event => '.$modx->event->name.'<br>'; |
|
187 | 187 | } |
188 | 188 | if ($modx->event->activePlugin) { |
189 | - $modx->queryCode .= 'Current Plugin => ' . $modx->event->activePlugin . '<br>'; |
|
189 | + $modx->queryCode .= 'Current Plugin => '.$modx->event->activePlugin.'<br>'; |
|
190 | 190 | } |
191 | 191 | if ($modx->currentSnippet) { |
192 | - $modx->queryCode .= 'Current Snippet => ' . $modx->currentSnippet . '<br>'; |
|
192 | + $modx->queryCode .= 'Current Snippet => '.$modx->currentSnippet.'<br>'; |
|
193 | 193 | } |
194 | 194 | if (stripos($sql, 'select') === 0) { |
195 | - $modx->queryCode .= 'Record Count => ' . $this->getRecordCount($result) . '<br>'; |
|
195 | + $modx->queryCode .= 'Record Count => '.$this->getRecordCount($result).'<br>'; |
|
196 | 196 | } else { |
197 | - $modx->queryCode .= 'Affected Rows => ' . $this->getAffectedRows() . '<br>'; |
|
197 | + $modx->queryCode .= 'Affected Rows => '.$this->getAffectedRows().'<br>'; |
|
198 | 198 | } |
199 | - $modx->queryCode .= 'Functions Path => ' . $debug_path . '<br>'; |
|
199 | + $modx->queryCode .= 'Functions Path => '.$debug_path.'<br>'; |
|
200 | 200 | $modx->queryCode .= "</fieldset><br />"; |
201 | 201 | } |
202 | 202 | $modx->executedQueries++; |
@@ -303,9 +303,9 @@ discard block |
||
303 | 303 | if ($value === null || strtolower($value) === 'null') { |
304 | 304 | $f = 'NULL'; |
305 | 305 | } else { |
306 | - $f = "'" . $value . "'"; |
|
306 | + $f = "'".$value."'"; |
|
307 | 307 | } |
308 | - $fields[$key] = "`{$key}` = " . $f; |
|
308 | + $fields[$key] = "`{$key}` = ".$f; |
|
309 | 309 | } |
310 | 310 | $fields = implode(',', $fields); |
311 | 311 | } |
@@ -340,12 +340,12 @@ discard block |
||
340 | 340 | $this->query("INSERT INTO {$intotable} {$fields}"); |
341 | 341 | } else { |
342 | 342 | if (empty($fromtable)) { |
343 | - $fields = "(`" . implode("`, `", array_keys($fields)) . "`) VALUES('" . implode("', '", |
|
344 | - array_values($fields)) . "')"; |
|
343 | + $fields = "(`".implode("`, `", array_keys($fields))."`) VALUES('".implode("', '", |
|
344 | + array_values($fields))."')"; |
|
345 | 345 | $this->query("INSERT INTO {$intotable} {$fields}"); |
346 | 346 | } else { |
347 | 347 | $fromtable = $this->replaceFullTableName($fromtable); |
348 | - $fields = "(" . implode(",", array_keys($fields)) . ")"; |
|
348 | + $fields = "(".implode(",", array_keys($fields)).")"; |
|
349 | 349 | $where = trim($where); |
350 | 350 | $limit = trim($limit); |
351 | 351 | if ($where !== '' && stripos($where, 'WHERE') !== 0) { |
@@ -439,8 +439,8 @@ discard block |
||
439 | 439 | */ |
440 | 440 | public function getInsertId($conn = null) |
441 | 441 | { |
442 | - if (! ($conn instanceof mysqli)) { |
|
443 | - $conn =& $this->conn; |
|
442 | + if (!($conn instanceof mysqli)) { |
|
443 | + $conn = & $this->conn; |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | return $conn->insert_id; |
@@ -452,8 +452,8 @@ discard block |
||
452 | 452 | */ |
453 | 453 | public function getAffectedRows($conn = null) |
454 | 454 | { |
455 | - if (! ($conn instanceof mysqli)) { |
|
456 | - $conn =& $this->conn; |
|
455 | + if (!($conn instanceof mysqli)) { |
|
456 | + $conn = & $this->conn; |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | return $conn->affected_rows; |
@@ -465,8 +465,8 @@ discard block |
||
465 | 465 | */ |
466 | 466 | public function getLastError($conn = null) |
467 | 467 | { |
468 | - if (! ($conn instanceof mysqli)) { |
|
469 | - $conn =& $this->conn; |
|
468 | + if (!($conn instanceof mysqli)) { |
|
469 | + $conn = & $this->conn; |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | return $conn->error; |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | { |
491 | 491 | $out = false; |
492 | 492 | if ($ds instanceof mysqli_result) { |
493 | - switch($mode){ |
|
493 | + switch ($mode) { |
|
494 | 494 | case 'assoc': |
495 | 495 | $out = $ds->fetch_assoc(); |
496 | 496 | break; |
@@ -520,7 +520,7 @@ discard block |
||
520 | 520 | public function getColumn($name, $dsq) |
521 | 521 | { |
522 | 522 | $col = array(); |
523 | - if ( ! ($dsq instanceof mysqli_result)) { |
|
523 | + if (!($dsq instanceof mysqli_result)) { |
|
524 | 524 | $dsq = $this->query($dsq); |
525 | 525 | } |
526 | 526 | if ($dsq) { |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | public function getColumnNames($dsq) |
540 | 540 | { |
541 | 541 | $names = array(); |
542 | - if ( ! ($dsq instanceof mysqli_result)) { |
|
542 | + if (!($dsq instanceof mysqli_result)) { |
|
543 | 543 | $dsq = $this->query($dsq); |
544 | 544 | } |
545 | 545 | if ($dsq) { |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | public function getValue($dsq) |
560 | 560 | { |
561 | 561 | $out = false; |
562 | - if ( ! ($dsq instanceof mysqli_result)) { |
|
562 | + if (!($dsq instanceof mysqli_result)) { |
|
563 | 563 | $dsq = $this->query($dsq); |
564 | 564 | } |
565 | 565 | if ($dsq) { |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | $tableName = trim($tableName); |
658 | 658 | $dbase = trim($this->config['dbase'], '`'); |
659 | 659 | $prefix = $this->config['table_prefix']; |
660 | - if ((bool)$force === true) { |
|
660 | + if ((bool) $force === true) { |
|
661 | 661 | $result = "`{$dbase}`.`{$prefix}{$tableName}`"; |
662 | 662 | } elseif (strpos($tableName, '[+prefix+]') !== false) { |
663 | 663 | $result = preg_replace('@\[\+prefix\+\]([0-9a-zA-Z_]+)@', "`{$dbase}`.`{$prefix}$1`", $tableName); |
@@ -72,7 +72,7 @@ |
||
72 | 72 | * @deprecated |
73 | 73 | * |
74 | 74 | * @param $rs |
75 | - * @return int|mixed |
|
75 | + * @return integer |
|
76 | 76 | */ |
77 | 77 | public function insertId($rs) |
78 | 78 | { |
@@ -177,7 +177,8 @@ |
||
177 | 177 | * @return bool|string |
178 | 178 | */ |
179 | 179 | public function putChunk($chunkName) |
180 | - { // alias name >.< |
|
180 | + { |
|
181 | +// alias name >.< |
|
181 | 182 | $modx = evolutionCMS(); |
182 | 183 | |
183 | 184 | return $modx->getChunk($chunkName); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $autoloader = __DIR__.'/vendor/autoload.php'; |
49 | 49 | if (file_exists($autoloader) && is_readable($autoloader)) { |
50 | - include_once($autoloader); |
|
50 | + include_once($autoloader); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | if(!isset($_SERVER['REQUEST_TIME_FLOAT'])) $_SERVER['REQUEST_TIME_FLOAT'] = microtime(true); |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | if(is_file($base_path . 'assets/cache/siteManager.php')) |
57 | 57 | include_once($base_path . 'assets/cache/siteManager.php'); |
58 | 58 | if(!defined('MGR_DIR') && is_dir("{$base_path}manager")) |
59 | - define('MGR_DIR', 'manager'); |
|
59 | + define('MGR_DIR', 'manager'); |
|
60 | 60 | if(is_file($base_path . 'assets/cache/siteHostnames.php')) |
61 | 61 | include_once($base_path . 'assets/cache/siteHostnames.php'); |
62 | 62 | if(!defined('MODX_SITE_HOSTNAMES')) |
63 | - define('MODX_SITE_HOSTNAMES', ''); |
|
63 | + define('MODX_SITE_HOSTNAMES', ''); |
|
64 | 64 | |
65 | 65 | // get start time |
66 | 66 | $mstart = memory_get_usage(); |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | define('IN_PARSER_MODE', true); |
86 | 86 | if ( ! defined('IN_MANAGER_MODE')) { |
87 | - define('IN_MANAGER_MODE', false); |
|
87 | + define('IN_MANAGER_MODE', false); |
|
88 | 88 | } |
89 | 89 | if (!defined('MODX_API_MODE')) { |
90 | 90 | define('MODX_API_MODE', false); |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | |
93 | 93 | // get the required includes |
94 | 94 | if(!isset($database_user) || $database_user=="") { |
95 | - $rt = @include_once(dirname(__FILE__).'/'.MGR_DIR.'/includes/config.inc.php'); |
|
96 | - // Be sure config.inc.php is there and that it contains some important values |
|
97 | - if(!$rt || !$database_type || !$database_server || !$database_user || !$dbase) { |
|
98 | - readfile('install/not_installed.tpl'); |
|
99 | - exit; |
|
100 | - } |
|
95 | + $rt = @include_once(dirname(__FILE__).'/'.MGR_DIR.'/includes/config.inc.php'); |
|
96 | + // Be sure config.inc.php is there and that it contains some important values |
|
97 | + if(!$rt || !$database_type || !$database_server || !$database_user || !$dbase) { |
|
98 | + readfile('install/not_installed.tpl'); |
|
99 | + exit; |
|
100 | + } |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | // start session |
@@ -105,11 +105,11 @@ discard block |
||
105 | 105 | |
106 | 106 | // initiate a new document parser |
107 | 107 | if (isset($coreClass) && class_exists($coreClass)) { |
108 | - $modx = new $coreClass; |
|
108 | + $modx = new $coreClass; |
|
109 | 109 | } |
110 | 110 | if (!isset($modx) || !($modx instanceof \DocumentParser)) { |
111 | - include_once(MODX_MANAGER_PATH.'includes/document.parser.class.inc.php'); |
|
112 | - $modx = DocumentParser::getInstance(); |
|
111 | + include_once(MODX_MANAGER_PATH.'includes/document.parser.class.inc.php'); |
|
112 | + $modx = DocumentParser::getInstance(); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | // set some parser options |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php" |
281 | 281 | * $extname - extension name in lowercase |
282 | 282 | * |
283 | - * @param $extname |
|
283 | + * @param string $extname |
|
284 | 284 | * @param bool $reload |
285 | 285 | * @return bool |
286 | 286 | */ |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @param int $count_attempts |
326 | 326 | * @param string $type $type |
327 | 327 | * @param string $responseCode |
328 | - * @return bool|null |
|
328 | + * @return false|null |
|
329 | 329 | * @global string $base_url |
330 | 330 | * @global string $site_url |
331 | 331 | */ |
@@ -1041,7 +1041,7 @@ discard block |
||
1041 | 1041 | } |
1042 | 1042 | |
1043 | 1043 | /** |
1044 | - * @param $contents |
|
1044 | + * @param string $contents |
|
1045 | 1045 | * @return mixed |
1046 | 1046 | */ |
1047 | 1047 | public function RecoveryEscapedTags($contents) |
@@ -1067,7 +1067,7 @@ discard block |
||
1067 | 1067 | } |
1068 | 1068 | |
1069 | 1069 | /** |
1070 | - * @param $tstart |
|
1070 | + * @param double $tstart |
|
1071 | 1071 | * @return array |
1072 | 1072 | */ |
1073 | 1073 | public function getTimerStats($tstart) |
@@ -1850,7 +1850,7 @@ discard block |
||
1850 | 1850 | |
1851 | 1851 | /** |
1852 | 1852 | * Remove Comment-Tags from output like <!--@- Comment -@--> |
1853 | - * @param $content |
|
1853 | + * @param string $content |
|
1854 | 1854 | * @param string $left |
1855 | 1855 | * @param string $right |
1856 | 1856 | * @return mixed |
@@ -2028,7 +2028,7 @@ discard block |
||
2028 | 2028 | /** |
2029 | 2029 | * Run snippets as per the tags in $documentSource and replace the tags with the returned values. |
2030 | 2030 | * |
2031 | - * @param $content |
|
2031 | + * @param string $content |
|
2032 | 2032 | * @return string |
2033 | 2033 | * @internal param string $documentSource |
2034 | 2034 | */ |
@@ -3095,7 +3095,7 @@ discard block |
||
3095 | 3095 | |
3096 | 3096 | /** |
3097 | 3097 | * @param $templateID |
3098 | - * @return mixed |
|
3098 | + * @return string |
|
3099 | 3099 | */ |
3100 | 3100 | public function _getTemplateCodeFromDB($templateID) |
3101 | 3101 | { |
@@ -3137,9 +3137,9 @@ discard block |
||
3137 | 3137 | } |
3138 | 3138 | |
3139 | 3139 | /** |
3140 | - * @param $id |
|
3140 | + * @param integer $id |
|
3141 | 3141 | * @param int $top |
3142 | - * @return mixed |
|
3142 | + * @return string |
|
3143 | 3143 | */ |
3144 | 3144 | public function getUltimateParentId($id, $top = 0) |
3145 | 3145 | { |
@@ -3479,7 +3479,7 @@ discard block |
||
3479 | 3479 | * |
3480 | 3480 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
3481 | 3481 | * @param int $id Element- / Resource-id |
3482 | - * @return bool |
|
3482 | + * @return false|null |
|
3483 | 3483 | */ |
3484 | 3484 | public function lockElement($type, $id) |
3485 | 3485 | { |
@@ -3502,7 +3502,7 @@ discard block |
||
3502 | 3502 | * @param int $type Types: 1=template, 2=tv, 3=chunk, 4=snippet, 5=plugin, 6=module, 7=resource, 8=role |
3503 | 3503 | * @param int $id Element- / Resource-id |
3504 | 3504 | * @param bool $includeAllUsers true = Deletes not only own user-locks |
3505 | - * @return bool |
|
3505 | + * @return false|null |
|
3506 | 3506 | */ |
3507 | 3507 | public function unlockElement($type, $id, $includeAllUsers = false) |
3508 | 3508 | { |
@@ -3613,7 +3613,7 @@ discard block |
||
3613 | 3613 | * @param array $params |
3614 | 3614 | * @param string $msg |
3615 | 3615 | * @param array $files |
3616 | - * @return mixed |
|
3616 | + * @return boolean |
|
3617 | 3617 | */ |
3618 | 3618 | public function sendmail($params = array(), $msg = '', $files = array()) |
3619 | 3619 | { |
@@ -4050,7 +4050,7 @@ discard block |
||
4050 | 4050 | * Default: 1 |
4051 | 4051 | * @param string $fields List of fields |
4052 | 4052 | * Default: id, pagetitle, description, alias |
4053 | - * @return boolean|array |
|
4053 | + * @return string |
|
4054 | 4054 | */ |
4055 | 4055 | public function getPageInfo($pageid = -1, $active = 1, $fields = 'id, pagetitle, description, alias') |
4056 | 4056 | { |
@@ -4148,7 +4148,7 @@ discard block |
||
4148 | 4148 | * |
4149 | 4149 | * @param string $type |
4150 | 4150 | * @param bool $report |
4151 | - * @return bool |
|
4151 | + * @return boolean|null |
|
4152 | 4152 | */ |
4153 | 4153 | public function clearCache($type = '', $report = false) |
4154 | 4154 | { |
@@ -4521,7 +4521,7 @@ discard block |
||
4521 | 4521 | * - Placeholders prefix. Default: '{'. |
4522 | 4522 | * @param string $suffix {string} |
4523 | 4523 | * - Placeholders suffix. Default: '}'. |
4524 | - * @return bool|mixed|string {string; false} - Parsed chunk or false if $chunkArr is not array. |
|
4524 | + * @return false|string {string; false} - Parsed chunk or false if $chunkArr is not array. |
|
4525 | 4525 | * - Parsed chunk or false if $chunkArr is not array. |
4526 | 4526 | */ |
4527 | 4527 | public function parseChunk($chunkName, $chunkArr, $prefix = '{', $suffix = '}') |
@@ -5555,7 +5555,7 @@ discard block |
||
5555 | 5555 | * Remove event listener - only for use within the current execution cycle |
5556 | 5556 | * |
5557 | 5557 | * @param string $evtName |
5558 | - * @return boolean |
|
5558 | + * @return false|null |
|
5559 | 5559 | */ |
5560 | 5560 | public function removeEventListener($evtName) |
5561 | 5561 | { |
@@ -5579,7 +5579,7 @@ discard block |
||
5579 | 5579 | * |
5580 | 5580 | * @param string $evtName |
5581 | 5581 | * @param array $extParams Parameters available to plugins. Each array key will be the PHP variable name, and the array value will be the variable value. |
5582 | - * @return boolean|array |
|
5582 | + * @return false|null |
|
5583 | 5583 | */ |
5584 | 5584 | public function invokeEvent($evtName, $extParams = array()) |
5585 | 5585 | { |
@@ -6201,7 +6201,7 @@ discard block |
||
6201 | 6201 | |
6202 | 6202 | /** |
6203 | 6203 | * @param string $str |
6204 | - * @return bool|mixed|string |
|
6204 | + * @return string |
|
6205 | 6205 | */ |
6206 | 6206 | public function atBindFileContent($str = '') |
6207 | 6207 | { |
@@ -6258,8 +6258,8 @@ discard block |
||
6258 | 6258 | } |
6259 | 6259 | |
6260 | 6260 | /** |
6261 | - * @param $str |
|
6262 | - * @return bool|string |
|
6261 | + * @param string $str |
|
6262 | + * @return false|string |
|
6263 | 6263 | */ |
6264 | 6264 | public function getExtFromFilename($str) |
6265 | 6265 | { |
@@ -6287,7 +6287,7 @@ discard block |
||
6287 | 6287 | * @param string $text Error message |
6288 | 6288 | * @param string $file File where the error was detected |
6289 | 6289 | * @param string $line Line number within $file |
6290 | - * @return boolean |
|
6290 | + * @return boolean|null |
|
6291 | 6291 | */ |
6292 | 6292 | public function phpError($nr, $text, $file, $line) |
6293 | 6293 | { |
@@ -6339,7 +6339,7 @@ discard block |
||
6339 | 6339 | * @param string $text |
6340 | 6340 | * @param string $line |
6341 | 6341 | * @param string $output |
6342 | - * @return bool |
|
6342 | + * @return null|boolean |
|
6343 | 6343 | */ |
6344 | 6344 | public function messageQuit( |
6345 | 6345 | $msg = 'unspecified error', |
@@ -6782,7 +6782,7 @@ discard block |
||
6782 | 6782 | |
6783 | 6783 | /** |
6784 | 6784 | * @param string $str |
6785 | - * @return bool|mixed|string |
|
6785 | + * @return string |
|
6786 | 6786 | */ |
6787 | 6787 | public function atBindInclude($str = '') |
6788 | 6788 | { |
@@ -6834,7 +6834,7 @@ discard block |
||
6834 | 6834 | * @param $str |
6835 | 6835 | * @param int $flags |
6836 | 6836 | * @param string $encode |
6837 | - * @return mixed |
|
6837 | + * @return string |
|
6838 | 6838 | */ |
6839 | 6839 | public function htmlspecialchars($str, $flags = ENT_COMPAT, $encode = '') |
6840 | 6840 | { |
@@ -6844,7 +6844,7 @@ discard block |
||
6844 | 6844 | } |
6845 | 6845 | |
6846 | 6846 | /** |
6847 | - * @param $string |
|
6847 | + * @param string $string |
|
6848 | 6848 | * @param bool $returnData |
6849 | 6849 | * @return bool|mixed |
6850 | 6850 | */ |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | */ |
229 | 229 | function __call($method_name, $arguments) |
230 | 230 | { |
231 | - include_once(MODX_MANAGER_PATH . 'includes/extenders/deprecated.functions.inc.php'); |
|
231 | + include_once(MODX_MANAGER_PATH.'includes/extenders/deprecated.functions.inc.php'); |
|
232 | 232 | if (method_exists($this->old, $method_name)) { |
233 | 233 | $error_type = 1; |
234 | 234 | } else { |
@@ -246,12 +246,12 @@ discard block |
||
246 | 246 | $info = debug_backtrace(); |
247 | 247 | $m[] = $msg; |
248 | 248 | if (!empty($this->currentSnippet)) { |
249 | - $m[] = 'Snippet - ' . $this->currentSnippet; |
|
249 | + $m[] = 'Snippet - '.$this->currentSnippet; |
|
250 | 250 | } elseif (!empty($this->event->activePlugin)) { |
251 | - $m[] = 'Plugin - ' . $this->event->activePlugin; |
|
251 | + $m[] = 'Plugin - '.$this->event->activePlugin; |
|
252 | 252 | } |
253 | 253 | $m[] = $this->decoded_request_uri; |
254 | - $m[] = str_replace('\\', '/', $info[0]['file']) . '(line:' . $info[0]['line'] . ')'; |
|
254 | + $m[] = str_replace('\\', '/', $info[0]['file']).'(line:'.$info[0]['line'].')'; |
|
255 | 255 | $msg = implode('<br />', $m); |
256 | 256 | $this->logEvent(0, $error_type, $msg, $title); |
257 | 257 | } |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | { |
269 | 269 | $flag = false; |
270 | 270 | if (is_scalar($connector) && !empty($connector) && isset($this->{$connector}) && $this->{$connector} instanceof DBAPI) { |
271 | - $flag = (bool)$this->{$connector}->conn; |
|
271 | + $flag = (bool) $this->{$connector}->conn; |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | return $flag; |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | } |
297 | 297 | if (!$out && $flag) { |
298 | 298 | $extname = trim(str_replace(array('..', '/', '\\'), '', strtolower($extname))); |
299 | - $filename = MODX_MANAGER_PATH . "includes/extenders/ex_{$extname}.inc.php"; |
|
299 | + $filename = MODX_MANAGER_PATH."includes/extenders/ex_{$extname}.inc.php"; |
|
300 | 300 | $out = is_file($filename) ? include $filename : false; |
301 | 301 | } |
302 | 302 | if ($out && !in_array($extname, $this->extensions)) { |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | { |
316 | 316 | list ($usec, $sec) = explode(' ', microtime()); |
317 | 317 | |
318 | - return ((float)$usec + (float)$sec); |
|
318 | + return ((float) $usec + (float) $sec); |
|
319 | 319 | } |
320 | 320 | |
321 | 321 | /** |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | // append the redirect count string to the url |
340 | 340 | $currentNumberOfRedirects = isset ($_REQUEST['err']) ? $_REQUEST['err'] : 0; |
341 | 341 | if ($currentNumberOfRedirects > 3) { |
342 | - $this->messageQuit('Redirection attempt failed - please ensure the document you\'re trying to redirect to exists. <p>Redirection URL: <i>' . $url . '</i></p>'); |
|
342 | + $this->messageQuit('Redirection attempt failed - please ensure the document you\'re trying to redirect to exists. <p>Redirection URL: <i>'.$url.'</i></p>'); |
|
343 | 343 | } else { |
344 | 344 | $currentNumberOfRedirects += 1; |
345 | 345 | if (strpos($url, "?") > 0) { |
@@ -350,9 +350,9 @@ discard block |
||
350 | 350 | } |
351 | 351 | } |
352 | 352 | if ($type == 'REDIRECT_REFRESH') { |
353 | - $header = 'Refresh: 0;URL=' . $url; |
|
353 | + $header = 'Refresh: 0;URL='.$url; |
|
354 | 354 | } elseif ($type == 'REDIRECT_META') { |
355 | - $header = '<META HTTP-EQUIV="Refresh" CONTENT="0; URL=' . $url . '" />'; |
|
355 | + $header = '<META HTTP-EQUIV="Refresh" CONTENT="0; URL='.$url.'" />'; |
|
356 | 356 | echo $header; |
357 | 357 | exit; |
358 | 358 | } elseif ($type == 'REDIRECT_HEADER' || empty ($type)) { |
@@ -360,10 +360,10 @@ discard block |
||
360 | 360 | global $base_url, $site_url; |
361 | 361 | if (substr($url, 0, strlen($base_url)) == $base_url) { |
362 | 362 | // append $site_url to make it work with Location: |
363 | - $url = $site_url . substr($url, strlen($base_url)); |
|
363 | + $url = $site_url.substr($url, strlen($base_url)); |
|
364 | 364 | } |
365 | 365 | if (strpos($url, "\n") === false) { |
366 | - $header = 'Location: ' . $url; |
|
366 | + $header = 'Location: '.$url; |
|
367 | 367 | } else { |
368 | 368 | $this->messageQuit('No newline allowed in redirect url.'); |
369 | 369 | } |
@@ -477,8 +477,8 @@ discard block |
||
477 | 477 | |
478 | 478 | private function recoverySiteCache() |
479 | 479 | { |
480 | - $site_cache_dir = MODX_BASE_PATH . $this->getCacheFolder(); |
|
481 | - $site_cache_path = $site_cache_dir . 'siteCache.idx.php'; |
|
480 | + $site_cache_dir = MODX_BASE_PATH.$this->getCacheFolder(); |
|
481 | + $site_cache_path = $site_cache_dir.'siteCache.idx.php'; |
|
482 | 482 | |
483 | 483 | if (is_file($site_cache_path)) { |
484 | 484 | include($site_cache_path); |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | return; |
488 | 488 | } |
489 | 489 | |
490 | - include_once(MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php'); |
|
490 | + include_once(MODX_MANAGER_PATH.'processors/cache_sync.class.processor.php'); |
|
491 | 491 | $cache = new synccache(); |
492 | 492 | $cache->setCachepath($site_cache_dir); |
493 | 493 | $cache->setReport(false); |
@@ -539,8 +539,8 @@ discard block |
||
539 | 539 | $this->invokeEvent("OnBeforeManagerPageInit"); |
540 | 540 | } |
541 | 541 | |
542 | - if (isset ($_SESSION[$usrType . 'UsrConfigSet'])) { |
|
543 | - $usrSettings = &$_SESSION[$usrType . 'UsrConfigSet']; |
|
542 | + if (isset ($_SESSION[$usrType.'UsrConfigSet'])) { |
|
543 | + $usrSettings = &$_SESSION[$usrType.'UsrConfigSet']; |
|
544 | 544 | } else { |
545 | 545 | if ($usrType == 'web') { |
546 | 546 | $from = $tbl_web_user_settings; |
@@ -560,7 +560,7 @@ discard block |
||
560 | 560 | $usrSettings[$row['setting_name']] = $row['setting_value']; |
561 | 561 | } |
562 | 562 | if (isset ($usrType)) { |
563 | - $_SESSION[$usrType . 'UsrConfigSet'] = $usrSettings; |
|
563 | + $_SESSION[$usrType.'UsrConfigSet'] = $usrSettings; |
|
564 | 564 | } // store user settings in session |
565 | 565 | } |
566 | 566 | } |
@@ -706,10 +706,10 @@ discard block |
||
706 | 706 | $suf = $this->config['friendly_url_suffix']; |
707 | 707 | $pre = preg_quote($pre, '/'); |
708 | 708 | $suf = preg_quote($suf, '/'); |
709 | - if ($pre && preg_match('@^' . $pre . '(.*)$@', $q, $_)) { |
|
709 | + if ($pre && preg_match('@^'.$pre.'(.*)$@', $q, $_)) { |
|
710 | 710 | $q = $_[1]; |
711 | 711 | } |
712 | - if ($suf && preg_match('@(.*)' . $suf . '$@', $q, $_)) { |
|
712 | + if ($suf && preg_match('@(.*)'.$suf.'$@', $q, $_)) { |
|
713 | 713 | $q = $_[1]; |
714 | 714 | } |
715 | 715 | |
@@ -732,7 +732,7 @@ discard block |
||
732 | 732 | $q) && !isset($this->documentListing[$q])) { /* we got an ID returned, check to make sure it's not an alias */ |
733 | 733 | /* FS#476 and FS#308: check that id is valid in terms of virtualDir structure */ |
734 | 734 | if ($this->config['use_alias_path'] == 1) { |
735 | - if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir . '/' . $q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, |
|
735 | + if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir.'/'.$q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, |
|
736 | 736 | $this->getChildIds($this->documentListing[$this->virtualDir], |
737 | 737 | 1))) || ($this->virtualDir == '' && in_array($q, $this->getChildIds(0, 1))))) { |
738 | 738 | $this->documentMethod = 'id'; |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | */ |
773 | 773 | public function getHashFile($key) |
774 | 774 | { |
775 | - return $this->getCacheFolder() . "docid_" . $key . ".pageCache.php"; |
|
775 | + return $this->getCacheFolder()."docid_".$key.".pageCache.php"; |
|
776 | 776 | } |
777 | 777 | |
778 | 778 | /** |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | // Sort GET parameters so that the order of parameters on the HTTP request don't affect the generated cache ID. |
792 | 792 | $params = $_GET; |
793 | 793 | ksort($params); |
794 | - $hash .= '_' . md5(http_build_query($params)); |
|
794 | + $hash .= '_'.md5(http_build_query($params)); |
|
795 | 795 | } |
796 | 796 | } |
797 | 797 | $evtOut = $this->invokeEvent("OnMakePageCacheKey", array("hash" => $hash, "id" => $id, 'params' => $params)); |
@@ -940,12 +940,12 @@ discard block |
||
940 | 940 | if ($js = $this->getRegisteredClientStartupScripts()) { |
941 | 941 | // change to just before closing </head> |
942 | 942 | // $this->documentContent = preg_replace("/(<head[^>]*>)/i", "\\1\n".$js, $this->documentContent); |
943 | - $this->documentOutput = preg_replace("/(<\/head>)/i", $js . "\n\\1", $this->documentOutput); |
|
943 | + $this->documentOutput = preg_replace("/(<\/head>)/i", $js."\n\\1", $this->documentOutput); |
|
944 | 944 | } |
945 | 945 | |
946 | 946 | // Insert jscripts & html block into template - template must have a </body> tag |
947 | 947 | if ($js = $this->getRegisteredClientScripts()) { |
948 | - $this->documentOutput = preg_replace("/(<\/body>)/i", $js . "\n\\1", $this->documentOutput); |
|
948 | + $this->documentOutput = preg_replace("/(<\/body>)/i", $js."\n\\1", $this->documentOutput); |
|
949 | 949 | } |
950 | 950 | // End fix by sirlancelot |
951 | 951 | |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | // send out content-type and content-disposition headers |
957 | 957 | if (IN_PARSER_MODE == "true") { |
958 | 958 | $type = !empty ($this->contentTypes[$this->documentIdentifier]) ? $this->contentTypes[$this->documentIdentifier] : "text/html"; |
959 | - header('Content-Type: ' . $type . '; charset=' . $this->config['modx_charset']); |
|
959 | + header('Content-Type: '.$type.'; charset='.$this->config['modx_charset']); |
|
960 | 960 | // if (($this->documentIdentifier == $this->config['error_page']) || $redirect_error) |
961 | 961 | // header('HTTP/1.0 404 Not Found'); |
962 | 962 | if (!$this->checkPreview() && $this->documentObject['content_dispo'] == 1) { |
@@ -974,7 +974,7 @@ discard block |
||
974 | 974 | $name = preg_replace('|-+|', '-', $name); |
975 | 975 | $name = trim($name, '-'); |
976 | 976 | } |
977 | - $header = 'Content-Disposition: attachment; filename=' . $name; |
|
977 | + $header = 'Content-Disposition: attachment; filename='.$name; |
|
978 | 978 | header($header); |
979 | 979 | } |
980 | 980 | } |
@@ -982,7 +982,7 @@ discard block |
||
982 | 982 | |
983 | 983 | $stats = $this->getTimerStats($this->tstart); |
984 | 984 | |
985 | - $out =& $this->documentOutput; |
|
985 | + $out = & $this->documentOutput; |
|
986 | 986 | $out = str_replace("[^q^]", $stats['queries'], $out); |
987 | 987 | $out = str_replace("[^qt^]", $stats['queryTime'], $out); |
988 | 988 | $out = str_replace("[^p^]", $stats['phpTime'], $out); |
@@ -1021,19 +1021,19 @@ discard block |
||
1021 | 1021 | $sc .= sprintf("%s. %s (%s)<br>", $s, $sname, sprintf("%2.2f ms", $t)); // currentSnippet |
1022 | 1022 | $tt += $t; |
1023 | 1023 | } |
1024 | - echo "<fieldset><legend><b>Snippets</b> (" . count($this->snippetsTime) . " / " . sprintf("%2.2f ms", |
|
1025 | - $tt) . ")</legend>{$sc}</fieldset><br />"; |
|
1024 | + echo "<fieldset><legend><b>Snippets</b> (".count($this->snippetsTime)." / ".sprintf("%2.2f ms", |
|
1025 | + $tt).")</legend>{$sc}</fieldset><br />"; |
|
1026 | 1026 | echo $this->snippetsCode; |
1027 | 1027 | } |
1028 | 1028 | if ($this->dumpPlugins) { |
1029 | 1029 | $ps = ""; |
1030 | 1030 | $tt = 0; |
1031 | 1031 | foreach ($this->pluginsTime as $s => $t) { |
1032 | - $ps .= "$s (" . sprintf("%2.2f ms", $t * 1000) . ")<br>"; |
|
1032 | + $ps .= "$s (".sprintf("%2.2f ms", $t * 1000).")<br>"; |
|
1033 | 1033 | $tt += $t; |
1034 | 1034 | } |
1035 | - echo "<fieldset><legend><b>Plugins</b> (" . count($this->pluginsTime) . " / " . sprintf("%2.2f ms", |
|
1036 | - $tt * 1000) . ")</legend>{$ps}</fieldset><br />"; |
|
1035 | + echo "<fieldset><legend><b>Plugins</b> (".count($this->pluginsTime)." / ".sprintf("%2.2f ms", |
|
1036 | + $tt * 1000).")</legend>{$ps}</fieldset><br />"; |
|
1037 | 1037 | echo $this->pluginsCode; |
1038 | 1038 | } |
1039 | 1039 | |
@@ -1060,7 +1060,7 @@ discard block |
||
1060 | 1060 | $srcTags = explode(',', $tags); |
1061 | 1061 | $repTags = array(); |
1062 | 1062 | foreach ($srcTags as $tag) { |
1063 | - $repTags[] = '\\' . $tag[0] . '\\' . $tag[1]; |
|
1063 | + $repTags[] = '\\'.$tag[0].'\\'.$tag[1]; |
|
1064 | 1064 | } |
1065 | 1065 | |
1066 | 1066 | return array($srcTags, $repTags); |
@@ -1083,7 +1083,7 @@ discard block |
||
1083 | 1083 | $stats['phpTime'] = sprintf("%2.4f s", $stats['phpTime']); |
1084 | 1084 | $stats['source'] = $this->documentGenerated == 1 ? "database" : "cache"; |
1085 | 1085 | $stats['queries'] = isset ($this->executedQueries) ? $this->executedQueries : 0; |
1086 | - $stats['phpMemory'] = (memory_get_peak_usage(true) / 1024 / 1024) . " mb"; |
|
1086 | + $stats['phpMemory'] = (memory_get_peak_usage(true) / 1024 / 1024)." mb"; |
|
1087 | 1087 | |
1088 | 1088 | return $stats; |
1089 | 1089 | } |
@@ -1116,7 +1116,7 @@ discard block |
||
1116 | 1116 | { |
1117 | 1117 | $cacheRefreshTime = 0; |
1118 | 1118 | $recent_update = 0; |
1119 | - @include(MODX_BASE_PATH . $this->getCacheFolder() . 'sitePublishing.idx.php'); |
|
1119 | + @include(MODX_BASE_PATH.$this->getCacheFolder().'sitePublishing.idx.php'); |
|
1120 | 1120 | $this->recentUpdate = $recent_update; |
1121 | 1121 | |
1122 | 1122 | $timeNow = $_SERVER['REQUEST_TIME'] + $this->config['server_offset_time']; |
@@ -1170,8 +1170,8 @@ discard block |
||
1170 | 1170 | } |
1171 | 1171 | |
1172 | 1172 | $docObjSerial = serialize($this->documentObject); |
1173 | - $cacheContent = $docObjSerial . "<!--__MODxCacheSpliter__-->" . $this->documentContent; |
|
1174 | - $page_cache_path = MODX_BASE_PATH . $this->getHashFile($this->cacheKey); |
|
1173 | + $cacheContent = $docObjSerial."<!--__MODxCacheSpliter__-->".$this->documentContent; |
|
1174 | + $page_cache_path = MODX_BASE_PATH.$this->getHashFile($this->cacheKey); |
|
1175 | 1175 | file_put_contents($page_cache_path, "<?php die('Unauthorized access.'); ?>$cacheContent"); |
1176 | 1176 | } |
1177 | 1177 | } |
@@ -1231,7 +1231,7 @@ discard block |
||
1231 | 1231 | $pos[']]>'] = strpos($content, ']]>'); |
1232 | 1232 | |
1233 | 1233 | if ($pos['<![CDATA['] !== false && $pos[']]>'] !== false) { |
1234 | - $content = substr($content, 0, $pos['<![CDATA[']) . substr($content, $pos[']]>'] + 3); |
|
1234 | + $content = substr($content, 0, $pos['<![CDATA[']).substr($content, $pos[']]>'] + 3); |
|
1235 | 1235 | } |
1236 | 1236 | |
1237 | 1237 | $lp = explode($left, $content); |
@@ -1361,8 +1361,8 @@ discard block |
||
1361 | 1361 | } |
1362 | 1362 | |
1363 | 1363 | if (is_array($value)) { |
1364 | - include_once(MODX_MANAGER_PATH . 'includes/tmplvars.format.inc.php'); |
|
1365 | - include_once(MODX_MANAGER_PATH . 'includes/tmplvars.commands.inc.php'); |
|
1364 | + include_once(MODX_MANAGER_PATH.'includes/tmplvars.format.inc.php'); |
|
1365 | + include_once(MODX_MANAGER_PATH.'includes/tmplvars.commands.inc.php'); |
|
1366 | 1366 | $value = getTVDisplayFormat($value[0], $value[1], $value[2], $value[3], $value[4]); |
1367 | 1367 | } |
1368 | 1368 | |
@@ -1374,7 +1374,7 @@ discard block |
||
1374 | 1374 | if (strpos($content, $s) !== false) { |
1375 | 1375 | $content = str_replace($s, $value, $content); |
1376 | 1376 | } elseif ($this->debug) { |
1377 | - $this->addLog('mergeDocumentContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
1377 | + $this->addLog('mergeDocumentContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
1378 | 1378 | } |
1379 | 1379 | } |
1380 | 1380 | |
@@ -1543,7 +1543,7 @@ discard block |
||
1543 | 1543 | if (strpos($content, $s) !== false) { |
1544 | 1544 | $content = str_replace($s, $value, $content); |
1545 | 1545 | } elseif ($this->debug) { |
1546 | - $this->addLog('mergeSettingsContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
1546 | + $this->addLog('mergeSettingsContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
1547 | 1547 | } |
1548 | 1548 | } |
1549 | 1549 | |
@@ -1597,7 +1597,7 @@ discard block |
||
1597 | 1597 | } |
1598 | 1598 | |
1599 | 1599 | $value = $this->parseText($value, $params); // parse local scope placeholers for ConditionalTags |
1600 | - $value = $this->mergePlaceholderContent($value, $params); // parse page global placeholers |
|
1600 | + $value = $this->mergePlaceholderContent($value, $params); // parse page global placeholers |
|
1601 | 1601 | if ($this->config['enable_at_syntax']) { |
1602 | 1602 | $value = $this->mergeConditionalTagsContent($value); |
1603 | 1603 | } |
@@ -1613,7 +1613,7 @@ discard block |
||
1613 | 1613 | if (strpos($content, $s) !== false) { |
1614 | 1614 | $content = str_replace($s, $value, $content); |
1615 | 1615 | } elseif ($this->debug) { |
1616 | - $this->addLog('mergeChunkContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
1616 | + $this->addLog('mergeChunkContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
1617 | 1617 | } |
1618 | 1618 | } |
1619 | 1619 | |
@@ -1673,7 +1673,7 @@ discard block |
||
1673 | 1673 | if (strpos($content, $s) !== false) { |
1674 | 1674 | $content = str_replace($s, $value, $content); |
1675 | 1675 | } elseif ($this->debug) { |
1676 | - $this->addLog('mergePlaceholderContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
1676 | + $this->addLog('mergePlaceholderContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
1677 | 1677 | } |
1678 | 1678 | } |
1679 | 1679 | |
@@ -1694,7 +1694,7 @@ discard block |
||
1694 | 1694 | $elseiftag = '<@ELSEIF:', |
1695 | 1695 | $elsetag = '<@ELSE>', |
1696 | 1696 | $endiftag = '<@ENDIF>' |
1697 | - ) { |
|
1697 | + ){ |
|
1698 | 1698 | if (strpos($content, '@IF') !== false) { |
1699 | 1699 | $content = $this->_prepareCTag($content, $iftag, $elseiftag, $elsetag, $endiftag); |
1700 | 1700 | } |
@@ -1703,7 +1703,7 @@ discard block |
||
1703 | 1703 | return $content; |
1704 | 1704 | } |
1705 | 1705 | |
1706 | - $sp = '#' . md5('ConditionalTags' . $_SERVER['REQUEST_TIME']) . '#'; |
|
1706 | + $sp = '#'.md5('ConditionalTags'.$_SERVER['REQUEST_TIME']).'#'; |
|
1707 | 1707 | $content = str_replace(array('<?php', '<?=', '<?', '?>'), array("{$sp}b", "{$sp}p", "{$sp}s", "{$sp}e"), |
1708 | 1708 | $content); |
1709 | 1709 | |
@@ -1715,7 +1715,7 @@ discard block |
||
1715 | 1715 | } |
1716 | 1716 | list($cmd, $text) = explode('>', $split, 2); |
1717 | 1717 | $cmd = str_replace("'", "\'", $cmd); |
1718 | - $content .= "<?php if(\$this->_parseCTagCMD('" . $cmd . "')): ?>"; |
|
1718 | + $content .= "<?php if(\$this->_parseCTagCMD('".$cmd."')): ?>"; |
|
1719 | 1719 | $content .= $text; |
1720 | 1720 | } |
1721 | 1721 | $pieces = explode('<@ELSEIF:', $content); |
@@ -1726,13 +1726,13 @@ discard block |
||
1726 | 1726 | } |
1727 | 1727 | list($cmd, $text) = explode('>', $split, 2); |
1728 | 1728 | $cmd = str_replace("'", "\'", $cmd); |
1729 | - $content .= "<?php elseif(\$this->_parseCTagCMD('" . $cmd . "')): ?>"; |
|
1729 | + $content .= "<?php elseif(\$this->_parseCTagCMD('".$cmd."')): ?>"; |
|
1730 | 1730 | $content .= $text; |
1731 | 1731 | } |
1732 | 1732 | |
1733 | 1733 | $content = str_replace(array('<@ELSE>', '<@ENDIF>'), array('<?php else:?>', '<?php endif;?>'), $content); |
1734 | 1734 | ob_start(); |
1735 | - $content = eval('?>' . $content); |
|
1735 | + $content = eval('?>'.$content); |
|
1736 | 1736 | $content = ob_get_clean(); |
1737 | 1737 | $content = str_replace(array("{$sp}b", "{$sp}p", "{$sp}s", "{$sp}e"), array('<?php', '<?=', '<?', '?>'), |
1738 | 1738 | $content); |
@@ -1754,7 +1754,7 @@ discard block |
||
1754 | 1754 | $elseiftag = '<@ELSEIF:', |
1755 | 1755 | $elsetag = '<@ELSE>', |
1756 | 1756 | $endiftag = '<@ENDIF>' |
1757 | - ) { |
|
1757 | + ){ |
|
1758 | 1758 | if (strpos($content, '<!--@IF ') !== false) { |
1759 | 1759 | $content = str_replace('<!--@IF ', $iftag, $content); |
1760 | 1760 | } // for jp |
@@ -1864,7 +1864,7 @@ discard block |
||
1864 | 1864 | $matches = $this->getTagsFromContent($content, $left, $right); |
1865 | 1865 | if (!empty($matches)) { |
1866 | 1866 | foreach ($matches[0] as $i => $v) { |
1867 | - $addBreakMatches[$i] = $v . "\n"; |
|
1867 | + $addBreakMatches[$i] = $v."\n"; |
|
1868 | 1868 | } |
1869 | 1869 | $content = str_replace($addBreakMatches, '', $content); |
1870 | 1870 | if (strpos($content, $left) !== false) { |
@@ -1899,7 +1899,7 @@ discard block |
||
1899 | 1899 | if (strpos($content, $s) !== false) { |
1900 | 1900 | $content = str_replace($s, $v, $content); |
1901 | 1901 | } elseif ($this->debug) { |
1902 | - $this->addLog('ignoreCommentedTagsContent parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
1902 | + $this->addLog('ignoreCommentedTagsContent parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
1903 | 1903 | } |
1904 | 1904 | } |
1905 | 1905 | |
@@ -1966,7 +1966,7 @@ discard block |
||
1966 | 1966 | $this->messageQuit('PHP Parse Error', '', true, $error_info['type'], $error_info['file'], 'Plugin', |
1967 | 1967 | $error_info['message'], $error_info['line'], $msg); |
1968 | 1968 | if ($this->isBackend()) { |
1969 | - $this->event->alert('An error occurred while loading. Please see the event log for more information.<p>' . $msg . '</p>'); |
|
1969 | + $this->event->alert('An error occurred while loading. Please see the event log for more information.<p>'.$msg.'</p>'); |
|
1970 | 1970 | } |
1971 | 1971 | } |
1972 | 1972 | } else { |
@@ -2013,7 +2013,7 @@ discard block |
||
2013 | 2013 | $this->messageQuit('PHP Parse Error', '', true, $error_info['type'], $error_info['file'], 'Snippet', |
2014 | 2014 | $error_info['message'], $error_info['line'], $echo); |
2015 | 2015 | if ($this->isBackend()) { |
2016 | - $this->event->alert('An error occurred while loading. Please see the event log for more information<p>' . $echo . $return . '</p>'); |
|
2016 | + $this->event->alert('An error occurred while loading. Please see the event log for more information<p>'.$echo.$return.'</p>'); |
|
2017 | 2017 | } |
2018 | 2018 | } |
2019 | 2019 | } |
@@ -2021,7 +2021,7 @@ discard block |
||
2021 | 2021 | if (is_array($return) || is_object($return)) { |
2022 | 2022 | return $return; |
2023 | 2023 | } else { |
2024 | - return $echo . $return; |
|
2024 | + return $echo.$return; |
|
2025 | 2025 | } |
2026 | 2026 | } |
2027 | 2027 | |
@@ -2061,7 +2061,7 @@ discard block |
||
2061 | 2061 | if (strpos($content, $s) !== false) { |
2062 | 2062 | $content = str_replace($s, $value, $content); |
2063 | 2063 | } elseif ($this->debug) { |
2064 | - $this->addLog('evalSnippetsSGVar parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
2064 | + $this->addLog('evalSnippetsSGVar parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
2065 | 2065 | } |
2066 | 2066 | continue; |
2067 | 2067 | } |
@@ -2073,7 +2073,7 @@ discard block |
||
2073 | 2073 | if (strpos($content, $s) !== false) { |
2074 | 2074 | $content = str_replace($s, $value, $content); |
2075 | 2075 | } elseif ($this->debug) { |
2076 | - $this->addLog('evalSnippets parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
2076 | + $this->addLog('evalSnippets parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
2077 | 2077 | } |
2078 | 2078 | } |
2079 | 2079 | |
@@ -2166,7 +2166,7 @@ discard block |
||
2166 | 2166 | $code = str_replace("\t", ' ', $this->htmlspecialchars($value)); |
2167 | 2167 | $piece = str_replace("\t", ' ', $this->htmlspecialchars($piece)); |
2168 | 2168 | $print_r_params = str_replace("\t", ' ', |
2169 | - $this->htmlspecialchars('$modx->event->params = ' . print_r($params, true))); |
|
2169 | + $this->htmlspecialchars('$modx->event->params = '.print_r($params, true))); |
|
2170 | 2170 | $this->snippetsCode .= sprintf('<fieldset style="margin:1em;"><legend><b>%s</b>(%s)</legend><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">[[%s]]</pre><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">%s</pre><pre style="white-space: pre-wrap;background-color:#fff;width:90%%;">%s</pre></fieldset>', |
2171 | 2171 | $snippetObject['name'], $eventtime, $piece, $print_r_params, $code); |
2172 | 2172 | $this->snippetsTime[] = array('sname' => $key, 'time' => $eventtime); |
@@ -2415,7 +2415,7 @@ discard block |
||
2415 | 2415 | $rs = $this->db->select('name,snippet,properties', '[+prefix+]site_snippets', $where); |
2416 | 2416 | $count = $this->db->getRecordCount($rs); |
2417 | 2417 | if (1 < $count) { |
2418 | - exit('Error $modx->_getSnippetObject()' . $snip_name); |
|
2418 | + exit('Error $modx->_getSnippetObject()'.$snip_name); |
|
2419 | 2419 | } |
2420 | 2420 | if ($count) { |
2421 | 2421 | $row = $this->db->getRow($rs); |
@@ -2444,13 +2444,13 @@ discard block |
||
2444 | 2444 | $suff = $this->config['friendly_url_suffix']; |
2445 | 2445 | |
2446 | 2446 | return str_replace(array( |
2447 | - '.xml' . $suff, |
|
2448 | - '.rss' . $suff, |
|
2449 | - '.js' . $suff, |
|
2450 | - '.css' . $suff, |
|
2451 | - '.txt' . $suff, |
|
2452 | - '.json' . $suff, |
|
2453 | - '.pdf' . $suff |
|
2447 | + '.xml'.$suff, |
|
2448 | + '.rss'.$suff, |
|
2449 | + '.js'.$suff, |
|
2450 | + '.css'.$suff, |
|
2451 | + '.txt'.$suff, |
|
2452 | + '.json'.$suff, |
|
2453 | + '.pdf'.$suff |
|
2454 | 2454 | ), array('.xml', '.rss', '.js', '.css', '.txt', '.json', '.pdf'), $text); |
2455 | 2455 | } |
2456 | 2456 | |
@@ -2483,7 +2483,7 @@ discard block |
||
2483 | 2483 | $suff = '/'; |
2484 | 2484 | } |
2485 | 2485 | |
2486 | - $url = ($dir != '' ? $dir . '/' : '') . $pre . $alias . $suff; |
|
2486 | + $url = ($dir != '' ? $dir.'/' : '').$pre.$alias.$suff; |
|
2487 | 2487 | } |
2488 | 2488 | |
2489 | 2489 | $evtOut = $this->invokeEvent('OnMakeDocUrl', array( |
@@ -2521,7 +2521,7 @@ discard block |
||
2521 | 2521 | $ids = implode(',', array_unique($match['1'])); |
2522 | 2522 | if ($ids) { |
2523 | 2523 | $res = $this->db->select("id,alias,isfolder,parent,alias_visible", |
2524 | - $this->getFullTableName('site_content'), "id IN (" . $ids . ") AND isfolder = '0'"); |
|
2524 | + $this->getFullTableName('site_content'), "id IN (".$ids.") AND isfolder = '0'"); |
|
2525 | 2525 | while ($row = $this->db->getRow($res)) { |
2526 | 2526 | if ($this->config['use_alias_path'] == '1' && $row['parent'] != 0) { |
2527 | 2527 | $parent = $row['parent']; |
@@ -2532,7 +2532,7 @@ discard block |
||
2532 | 2532 | $parent = $this->aliasListing[$parent]['parent']; |
2533 | 2533 | } |
2534 | 2534 | |
2535 | - $aliases[$row['id']] = $path . '/' . $row['alias']; |
|
2535 | + $aliases[$row['id']] = $path.'/'.$row['alias']; |
|
2536 | 2536 | } else { |
2537 | 2537 | $aliases[$row['id']] = $row['alias']; |
2538 | 2538 | } |
@@ -2545,7 +2545,7 @@ discard block |
||
2545 | 2545 | $pref = $this->config['friendly_url_prefix']; |
2546 | 2546 | $suff = $this->config['friendly_url_suffix']; |
2547 | 2547 | $documentSource = preg_replace_callback($in, |
2548 | - function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
2548 | + function($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
2549 | 2549 | $modx = evolutionCMS(); |
2550 | 2550 | $thealias = $aliases[$m[1]]; |
2551 | 2551 | $thefolder = $isfolder[$m[1]]; |
@@ -2564,7 +2564,7 @@ discard block |
||
2564 | 2564 | |
2565 | 2565 | } else { |
2566 | 2566 | $in = '!\[\~([0-9]+)\~\]!is'; |
2567 | - $out = "index.php?id=" . '\1'; |
|
2567 | + $out = "index.php?id=".'\1'; |
|
2568 | 2568 | $documentSource = preg_replace($in, $out, $documentSource); |
2569 | 2569 | } |
2570 | 2570 | |
@@ -2585,7 +2585,7 @@ discard block |
||
2585 | 2585 | $scheme = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http'; |
2586 | 2586 | $len_base_url = strlen($this->config['base_url']); |
2587 | 2587 | |
2588 | - $url_path = $q;//LANG |
|
2588 | + $url_path = $q; //LANG |
|
2589 | 2589 | |
2590 | 2590 | if (substr($url_path, 0, $len_base_url) === $this->config['base_url']) { |
2591 | 2591 | $url_path = substr($url_path, $len_base_url); |
@@ -2597,7 +2597,7 @@ discard block |
||
2597 | 2597 | $strictURL = substr($strictURL, $len_base_url); |
2598 | 2598 | } |
2599 | 2599 | $http_host = $_SERVER['HTTP_HOST']; |
2600 | - $requestedURL = "{$scheme}://{$http_host}" . '/' . $q; //LANG |
|
2600 | + $requestedURL = "{$scheme}://{$http_host}".'/'.$q; //LANG |
|
2601 | 2601 | |
2602 | 2602 | $site_url = $this->config['site_url']; |
2603 | 2603 | |
@@ -2614,7 +2614,7 @@ discard block |
||
2614 | 2614 | } |
2615 | 2615 | if ($this->config['base_url'] != $_SERVER['REQUEST_URI']) { |
2616 | 2616 | if (empty($_POST)) { |
2617 | - if (($this->config['base_url'] . '?' . $qstring) != $_SERVER['REQUEST_URI']) { |
|
2617 | + if (($this->config['base_url'].'?'.$qstring) != $_SERVER['REQUEST_URI']) { |
|
2618 | 2618 | $this->sendRedirect($url, 0, 'REDIRECT_HEADER', 'HTTP/1.0 301 Moved Permanently'); |
2619 | 2619 | exit(0); |
2620 | 2620 | } |
@@ -2679,7 +2679,7 @@ discard block |
||
2679 | 2679 | $docgrp = implode(",", $docgrp); |
2680 | 2680 | } |
2681 | 2681 | // get document |
2682 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
2682 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
2683 | 2683 | $rs = $this->db->select('sc.*', "{$tblsc} sc |
2684 | 2684 | LEFT JOIN {$tbldg} dg ON dg.document = sc.id", "sc.{$method} = '{$identifier}' AND ({$access})", "", 1); |
2685 | 2685 | if ($this->db->getRecordCount($rs) < 1) { |
@@ -2717,9 +2717,9 @@ discard block |
||
2717 | 2717 | if ($documentObject['template']) { |
2718 | 2718 | // load TVs and merge with document - Orig by Apodigm - Docvars |
2719 | 2719 | $rs = $this->db->select("tv.*, IF(tvc.value!='',tvc.value,tv.default_text) as value", |
2720 | - $this->getFullTableName("site_tmplvars") . " tv |
|
2721 | - INNER JOIN " . $this->getFullTableName("site_tmplvar_templates") . " tvtpl ON tvtpl.tmplvarid = tv.id |
|
2722 | - LEFT JOIN " . $this->getFullTableName("site_tmplvar_contentvalues") . " tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$documentObject['id']}'", |
|
2720 | + $this->getFullTableName("site_tmplvars")." tv |
|
2721 | + INNER JOIN " . $this->getFullTableName("site_tmplvar_templates")." tvtpl ON tvtpl.tmplvarid = tv.id |
|
2722 | + LEFT JOIN " . $this->getFullTableName("site_tmplvar_contentvalues")." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$documentObject['id']}'", |
|
2723 | 2723 | "tvtpl.templateid = '{$documentObject['template']}'"); |
2724 | 2724 | $tmplvars = array(); |
2725 | 2725 | while ($row = $this->db->getRow($rs)) { |
@@ -2766,7 +2766,7 @@ discard block |
||
2766 | 2766 | $st = md5($source); |
2767 | 2767 | } |
2768 | 2768 | if ($this->dumpSnippets == 1) { |
2769 | - $this->snippetsCode .= "<fieldset><legend><b style='color: #821517;'>PARSE PASS " . ($i + 1) . "</b></legend><p>The following snippets (if any) were parsed during this pass.</p>"; |
|
2769 | + $this->snippetsCode .= "<fieldset><legend><b style='color: #821517;'>PARSE PASS ".($i + 1)."</b></legend><p>The following snippets (if any) were parsed during this pass.</p>"; |
|
2770 | 2770 | } |
2771 | 2771 | |
2772 | 2772 | // invoke OnParseDocument event |
@@ -2853,7 +2853,7 @@ discard block |
||
2853 | 2853 | |
2854 | 2854 | // Check use_alias_path and check if $this->virtualDir is set to anything, then parse the path |
2855 | 2855 | if ($this->config['use_alias_path'] == 1) { |
2856 | - $alias = (strlen($this->virtualDir) > 0 ? $this->virtualDir . '/' : '') . $this->documentIdentifier; |
|
2856 | + $alias = (strlen($this->virtualDir) > 0 ? $this->virtualDir.'/' : '').$this->documentIdentifier; |
|
2857 | 2857 | if (isset($this->documentListing[$alias])) { |
2858 | 2858 | $this->documentIdentifier = $this->documentListing[$alias]; |
2859 | 2859 | } else { |
@@ -2916,7 +2916,7 @@ discard block |
||
2916 | 2916 | $docAlias = $this->db->escape($this->documentIdentifier); |
2917 | 2917 | $rs = $this->db->select('id', $this->getFullTableName('site_content'), |
2918 | 2918 | "deleted=0 and alias='{$docAlias}'"); |
2919 | - $this->documentIdentifier = (int)$this->db->getValue($rs); |
|
2919 | + $this->documentIdentifier = (int) $this->db->getValue($rs); |
|
2920 | 2920 | } |
2921 | 2921 | } |
2922 | 2922 | $this->documentMethod = 'id'; |
@@ -2970,7 +2970,7 @@ discard block |
||
2970 | 2970 | $_REQUEST[$n] = $_GET[$n] = $v; |
2971 | 2971 | } |
2972 | 2972 | } |
2973 | - $_SERVER['PHP_SELF'] = $this->config['base_url'] . $qp['path']; |
|
2973 | + $_SERVER['PHP_SELF'] = $this->config['base_url'].$qp['path']; |
|
2974 | 2974 | $this->q = $qp['path']; |
2975 | 2975 | |
2976 | 2976 | return $qp['path']; |
@@ -3066,7 +3066,7 @@ discard block |
||
3066 | 3066 | $this->sendErrorPage(); |
3067 | 3067 | } else { |
3068 | 3068 | // Inculde the necessary files to check document permissions |
3069 | - include_once(MODX_MANAGER_PATH . 'processors/user_documents_permissions.class.php'); |
|
3069 | + include_once(MODX_MANAGER_PATH.'processors/user_documents_permissions.class.php'); |
|
3070 | 3070 | $udperms = new udperms(); |
3071 | 3071 | $udperms->user = $this->getLoginUserID(); |
3072 | 3072 | $udperms->document = $this->documentIdentifier; |
@@ -3120,7 +3120,7 @@ discard block |
||
3120 | 3120 | while ($id && $height--) { |
3121 | 3121 | $thisid = $id; |
3122 | 3122 | if ($this->config['aliaslistingfolder'] == 1) { |
3123 | - $id = isset($this->aliasListing[$id]['parent']) ? $this->aliasListing[$id]['parent'] : $this->db->getValue("SELECT `parent` FROM " . $this->getFullTableName("site_content") . " WHERE `id` = '{$id}' LIMIT 0,1"); |
|
3123 | + $id = isset($this->aliasListing[$id]['parent']) ? $this->aliasListing[$id]['parent'] : $this->db->getValue("SELECT `parent` FROM ".$this->getFullTableName("site_content")." WHERE `id` = '{$id}' LIMIT 0,1"); |
|
3124 | 3124 | if (!$id || $id == '0') { |
3125 | 3125 | break; |
3126 | 3126 | } |
@@ -3174,15 +3174,15 @@ discard block |
||
3174 | 3174 | if ($this->config['aliaslistingfolder'] == 1) { |
3175 | 3175 | |
3176 | 3176 | $res = $this->db->select("id,alias,isfolder,parent", $this->getFullTableName('site_content'), |
3177 | - "parent IN (" . $id . ") AND deleted = '0'"); |
|
3177 | + "parent IN (".$id.") AND deleted = '0'"); |
|
3178 | 3178 | $idx = array(); |
3179 | 3179 | while ($row = $this->db->getRow($res)) { |
3180 | 3180 | $pAlias = ''; |
3181 | 3181 | if (isset($this->aliasListing[$row['parent']])) { |
3182 | - $pAlias .= !empty($this->aliasListing[$row['parent']]['path']) ? $this->aliasListing[$row['parent']]['path'] . '/' : ''; |
|
3183 | - $pAlias .= !empty($this->aliasListing[$row['parent']]['alias']) ? $this->aliasListing[$row['parent']]['alias'] . '/' : ''; |
|
3182 | + $pAlias .= !empty($this->aliasListing[$row['parent']]['path']) ? $this->aliasListing[$row['parent']]['path'].'/' : ''; |
|
3183 | + $pAlias .= !empty($this->aliasListing[$row['parent']]['alias']) ? $this->aliasListing[$row['parent']]['alias'].'/' : ''; |
|
3184 | 3184 | }; |
3185 | - $children[$pAlias . $row['alias']] = $row['id']; |
|
3185 | + $children[$pAlias.$row['alias']] = $row['id']; |
|
3186 | 3186 | if ($row['isfolder'] == 1) { |
3187 | 3187 | $idx[] = $row['id']; |
3188 | 3188 | } |
@@ -3215,7 +3215,7 @@ discard block |
||
3215 | 3215 | $depth--; |
3216 | 3216 | |
3217 | 3217 | foreach ($documentMap_cache[$id] as $childId) { |
3218 | - $pkey = (strlen($this->aliasListing[$childId]['path']) ? "{$this->aliasListing[$childId]['path']}/" : '') . $this->aliasListing[$childId]['alias']; |
|
3218 | + $pkey = (strlen($this->aliasListing[$childId]['path']) ? "{$this->aliasListing[$childId]['path']}/" : '').$this->aliasListing[$childId]['alias']; |
|
3219 | 3219 | if (!strlen($pkey)) { |
3220 | 3220 | $pkey = "{$childId}"; |
3221 | 3221 | } |
@@ -3245,7 +3245,7 @@ discard block |
||
3245 | 3245 | if (substr(strtolower($url), 0, 11) == "javascript:") { |
3246 | 3246 | $fnc = substr($url, 11); |
3247 | 3247 | } elseif ($url) { |
3248 | - $fnc = "window.location.href='" . addslashes($url) . "';"; |
|
3248 | + $fnc = "window.location.href='".addslashes($url)."';"; |
|
3249 | 3249 | } else { |
3250 | 3250 | $fnc = "history.back(-1);"; |
3251 | 3251 | } |
@@ -3254,7 +3254,7 @@ discard block |
||
3254 | 3254 | <meta http-equiv=\"Content-Type\" content=\"text/html; charset={$modx_manager_charset};\"> |
3255 | 3255 | <script> |
3256 | 3256 | function __alertQuit() { |
3257 | - alert('" . addslashes($msg) . "'); |
|
3257 | + alert('".addslashes($msg)."'); |
|
3258 | 3258 | {$fnc} |
3259 | 3259 | } |
3260 | 3260 | window.setTimeout('__alertQuit();',100); |
@@ -3276,10 +3276,10 @@ discard block |
||
3276 | 3276 | $state = 0; |
3277 | 3277 | $pms = $_SESSION['mgrPermissions']; |
3278 | 3278 | if ($pms) { |
3279 | - $state = ((bool)$pms[$pm] === true); |
|
3279 | + $state = ((bool) $pms[$pm] === true); |
|
3280 | 3280 | } |
3281 | 3281 | |
3282 | - return (int)$state; |
|
3282 | + return (int) $state; |
|
3283 | 3283 | } |
3284 | 3284 | |
3285 | 3285 | /** |
@@ -3292,8 +3292,8 @@ discard block |
||
3292 | 3292 | */ |
3293 | 3293 | public function elementIsLocked($type, $id, $includeThisUser = false) |
3294 | 3294 | { |
3295 | - $id = (int)$id; |
|
3296 | - $type = (int)$type; |
|
3295 | + $id = (int) $id; |
|
3296 | + $type = (int) $type; |
|
3297 | 3297 | if (!$type || !$id) { |
3298 | 3298 | return null; |
3299 | 3299 | } |
@@ -3343,7 +3343,7 @@ discard block |
||
3343 | 3343 | return $lockedElements; |
3344 | 3344 | } |
3345 | 3345 | |
3346 | - $type = (int)$type; |
|
3346 | + $type = (int) $type; |
|
3347 | 3347 | if (isset($lockedElements[$type])) { |
3348 | 3348 | return $lockedElements[$type]; |
3349 | 3349 | } else { |
@@ -3361,7 +3361,7 @@ discard block |
||
3361 | 3361 | $this->cleanupExpiredLocks(); |
3362 | 3362 | |
3363 | 3363 | $rs = $this->db->select('sid,internalKey,elementType,elementId,lasthit,username', |
3364 | - $this->getFullTableName('active_user_locks') . " ul |
|
3364 | + $this->getFullTableName('active_user_locks')." ul |
|
3365 | 3365 | LEFT JOIN {$this->getFullTableName('manager_users')} mu on ul.internalKey = mu.id"); |
3366 | 3366 | while ($row = $this->db->getRow($rs)) { |
3367 | 3367 | $this->lockedElements[$row['elementType']][$row['elementId']] = array( |
@@ -3384,7 +3384,7 @@ discard block |
||
3384 | 3384 | public function cleanupExpiredLocks() |
3385 | 3385 | { |
3386 | 3386 | // Clean-up active_user_sessions first |
3387 | - $timeout = (int)$this->config['session_timeout'] < 2 ? 120 : $this->config['session_timeout'] * 60; // session.js pings every 10min, updateMail() in mainMenu pings every minute, so 2min is minimum |
|
3387 | + $timeout = (int) $this->config['session_timeout'] < 2 ? 120 : $this->config['session_timeout'] * 60; // session.js pings every 10min, updateMail() in mainMenu pings every minute, so 2min is minimum |
|
3388 | 3388 | $validSessionTimeLimit = $this->time - $timeout; |
3389 | 3389 | $this->db->delete($this->getFullTableName('active_user_sessions'), "lasthit < {$validSessionTimeLimit}"); |
3390 | 3390 | |
@@ -3397,7 +3397,7 @@ discard block |
||
3397 | 3397 | foreach ($rs as $row) { |
3398 | 3398 | $userSids[] = $row['sid']; |
3399 | 3399 | } |
3400 | - $userSids = "'" . implode("','", $userSids) . "'"; |
|
3400 | + $userSids = "'".implode("','", $userSids)."'"; |
|
3401 | 3401 | $this->db->delete($this->getFullTableName('active_user_locks'), "sid NOT IN({$userSids})"); |
3402 | 3402 | } else { |
3403 | 3403 | $this->db->delete($this->getFullTableName('active_user_locks')); |
@@ -3484,8 +3484,8 @@ discard block |
||
3484 | 3484 | public function lockElement($type, $id) |
3485 | 3485 | { |
3486 | 3486 | $userId = $this->isBackend() && $_SESSION['mgrInternalKey'] ? $_SESSION['mgrInternalKey'] : 0; |
3487 | - $type = (int)$type; |
|
3488 | - $id = (int)$id; |
|
3487 | + $type = (int) $type; |
|
3488 | + $id = (int) $id; |
|
3489 | 3489 | if (!$type || !$id || !$userId) { |
3490 | 3490 | return false; |
3491 | 3491 | } |
@@ -3507,8 +3507,8 @@ discard block |
||
3507 | 3507 | public function unlockElement($type, $id, $includeAllUsers = false) |
3508 | 3508 | { |
3509 | 3509 | $userId = $this->isBackend() && $_SESSION['mgrInternalKey'] ? $_SESSION['mgrInternalKey'] : 0; |
3510 | - $type = (int)$type; |
|
3511 | - $id = (int)$id; |
|
3510 | + $type = (int) $type; |
|
3511 | + $id = (int) $id; |
|
3512 | 3512 | if (!$type || !$id) { |
3513 | 3513 | return false; |
3514 | 3514 | } |
@@ -3578,8 +3578,8 @@ discard block |
||
3578 | 3578 | } |
3579 | 3579 | |
3580 | 3580 | $usertype = $this->isFrontend() ? 1 : 0; |
3581 | - $evtid = (int)$evtid; |
|
3582 | - $type = (int)$type; |
|
3581 | + $evtid = (int) $evtid; |
|
3582 | + $type = (int) $type; |
|
3583 | 3583 | |
3584 | 3584 | // Types: 1 = information, 2 = warning, 3 = error |
3585 | 3585 | if ($type < 1) { |
@@ -3601,8 +3601,8 @@ discard block |
||
3601 | 3601 | if (isset($this->config['send_errormail']) && $this->config['send_errormail'] !== '0') { |
3602 | 3602 | if ($this->config['send_errormail'] <= $type) { |
3603 | 3603 | $this->sendmail(array( |
3604 | - 'subject' => 'MODX System Error on ' . $this->config['site_name'], |
|
3605 | - 'body' => 'Source: ' . $source . ' - The details of the error could be seen in the MODX system events log.', |
|
3604 | + 'subject' => 'MODX System Error on '.$this->config['site_name'], |
|
3605 | + 'body' => 'Source: '.$source.' - The details of the error could be seen in the MODX system events log.', |
|
3606 | 3606 | 'type' => 'text' |
3607 | 3607 | )); |
3608 | 3608 | } |
@@ -3650,7 +3650,7 @@ discard block |
||
3650 | 3650 | $p['fromname'] = $userinfo['username']; |
3651 | 3651 | } |
3652 | 3652 | if ($msg === '' && !isset($p['body'])) { |
3653 | - $p['body'] = $_SERVER['REQUEST_URI'] . "\n" . $_SERVER['HTTP_USER_AGENT'] . "\n" . $_SERVER['HTTP_REFERER']; |
|
3653 | + $p['body'] = $_SERVER['REQUEST_URI']."\n".$_SERVER['HTTP_USER_AGENT']."\n".$_SERVER['HTTP_REFERER']; |
|
3654 | 3654 | } elseif (is_string($msg) && 0 < strlen($msg)) { |
3655 | 3655 | $p['body'] = $msg; |
3656 | 3656 | } |
@@ -3690,8 +3690,8 @@ discard block |
||
3690 | 3690 | $files = array(); |
3691 | 3691 | } |
3692 | 3692 | foreach ($files as $f) { |
3693 | - if (file_exists(MODX_BASE_PATH . $f) && is_file(MODX_BASE_PATH . $f) && is_readable(MODX_BASE_PATH . $f)) { |
|
3694 | - $this->mail->AddAttachment(MODX_BASE_PATH . $f); |
|
3693 | + if (file_exists(MODX_BASE_PATH.$f) && is_file(MODX_BASE_PATH.$f) && is_readable(MODX_BASE_PATH.$f)) { |
|
3694 | + $this->mail->AddAttachment(MODX_BASE_PATH.$f); |
|
3695 | 3695 | } |
3696 | 3696 | } |
3697 | 3697 | $rs = $this->mail->send(); |
@@ -3756,7 +3756,7 @@ discard block |
||
3756 | 3756 | $sort = 'menuindex', |
3757 | 3757 | $dir = 'ASC', |
3758 | 3758 | $fields = 'id, pagetitle, description, parent, alias, menutitle' |
3759 | - ) { |
|
3759 | + ){ |
|
3760 | 3760 | |
3761 | 3761 | $cacheKey = md5(print_r(func_get_args(), true)); |
3762 | 3762 | if (isset($this->tmpCache[__FUNCTION__][$cacheKey])) { |
@@ -3766,14 +3766,14 @@ discard block |
||
3766 | 3766 | $tblsc = $this->getFullTableName("site_content"); |
3767 | 3767 | $tbldg = $this->getFullTableName("document_groups"); |
3768 | 3768 | // modify field names to use sc. table reference |
3769 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3770 | - $sort = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3769 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3770 | + $sort = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3771 | 3771 | // get document groups for current user |
3772 | 3772 | if ($docgrp = $this->getUserDocGroups()) { |
3773 | 3773 | $docgrp = implode(",", $docgrp); |
3774 | 3774 | } |
3775 | 3775 | // build query |
3776 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
3776 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
3777 | 3777 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
3778 | 3778 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND ({$access}) GROUP BY sc.id", |
3779 | 3779 | "{$sort} {$dir}"); |
@@ -3799,7 +3799,7 @@ discard block |
||
3799 | 3799 | $sort = 'menuindex', |
3800 | 3800 | $dir = 'ASC', |
3801 | 3801 | $fields = 'id, pagetitle, description, parent, alias, menutitle' |
3802 | - ) { |
|
3802 | + ){ |
|
3803 | 3803 | $cacheKey = md5(print_r(func_get_args(), true)); |
3804 | 3804 | if (isset($this->tmpCache[__FUNCTION__][$cacheKey])) { |
3805 | 3805 | return $this->tmpCache[__FUNCTION__][$cacheKey]; |
@@ -3809,14 +3809,14 @@ discard block |
||
3809 | 3809 | $tbldg = $this->getFullTableName("document_groups"); |
3810 | 3810 | |
3811 | 3811 | // modify field names to use sc. table reference |
3812 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3813 | - $sort = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3812 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3813 | + $sort = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3814 | 3814 | // get document groups for current user |
3815 | 3815 | if ($docgrp = $this->getUserDocGroups()) { |
3816 | 3816 | $docgrp = implode(",", $docgrp); |
3817 | 3817 | } |
3818 | 3818 | // build query |
3819 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
3819 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
3820 | 3820 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
3821 | 3821 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", |
3822 | 3822 | "sc.parent = '{$id}' AND sc.published=1 AND sc.deleted=0 AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
@@ -3853,23 +3853,23 @@ discard block |
||
3853 | 3853 | $sort = 'menuindex', |
3854 | 3854 | $dir = 'ASC', |
3855 | 3855 | $limit = '' |
3856 | - ) { |
|
3856 | + ){ |
|
3857 | 3857 | |
3858 | 3858 | $cacheKey = md5(print_r(func_get_args(), true)); |
3859 | 3859 | if (isset($this->tmpCache[__FUNCTION__][$cacheKey])) { |
3860 | 3860 | return $this->tmpCache[__FUNCTION__][$cacheKey]; |
3861 | 3861 | } |
3862 | 3862 | |
3863 | - $published = ($published !== 'all') ? 'AND sc.published = ' . $published : ''; |
|
3864 | - $deleted = ($deleted !== 'all') ? 'AND sc.deleted = ' . $deleted : ''; |
|
3863 | + $published = ($published !== 'all') ? 'AND sc.published = '.$published : ''; |
|
3864 | + $deleted = ($deleted !== 'all') ? 'AND sc.deleted = '.$deleted : ''; |
|
3865 | 3865 | |
3866 | 3866 | if ($where != '') { |
3867 | - $where = 'AND ' . $where; |
|
3867 | + $where = 'AND '.$where; |
|
3868 | 3868 | } |
3869 | 3869 | |
3870 | 3870 | // modify field names to use sc. table reference |
3871 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3872 | - $sort = ($sort == '') ? '' : 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3871 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3872 | + $sort = ($sort == '') ? '' : 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3873 | 3873 | |
3874 | 3874 | // get document groups for current user |
3875 | 3875 | if ($docgrp = $this->getUserDocGroups()) { |
@@ -3877,7 +3877,7 @@ discard block |
||
3877 | 3877 | } |
3878 | 3878 | |
3879 | 3879 | // build query |
3880 | - $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="' . $_SESSION['mgrRole'] . '" OR sc.privatemgr=0') . (!$docgrp ? '' : ' OR dg.document_group IN (' . $docgrp . ')'); |
|
3880 | + $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="'.$_SESSION['mgrRole'].'" OR sc.privatemgr=0').(!$docgrp ? '' : ' OR dg.document_group IN ('.$docgrp.')'); |
|
3881 | 3881 | |
3882 | 3882 | $tblsc = $this->getFullTableName('site_content'); |
3883 | 3883 | $tbldg = $this->getFullTableName('document_groups'); |
@@ -3920,7 +3920,7 @@ discard block |
||
3920 | 3920 | $sort = 'menuindex', |
3921 | 3921 | $dir = 'ASC', |
3922 | 3922 | $limit = '' |
3923 | - ) { |
|
3923 | + ){ |
|
3924 | 3924 | |
3925 | 3925 | $cacheKey = md5(print_r(func_get_args(), true)); |
3926 | 3926 | if (isset($this->tmpCache[__FUNCTION__][$cacheKey])) { |
@@ -3940,10 +3940,10 @@ discard block |
||
3940 | 3940 | return false; |
3941 | 3941 | } else { |
3942 | 3942 | // modify field names to use sc. table reference |
3943 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3944 | - $sort = ($sort == '') ? '' : 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3943 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
3944 | + $sort = ($sort == '') ? '' : 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $sort)))); |
|
3945 | 3945 | if ($where != '') { |
3946 | - $where = 'AND ' . $where; |
|
3946 | + $where = 'AND '.$where; |
|
3947 | 3947 | } |
3948 | 3948 | |
3949 | 3949 | $published = ($published !== 'all') ? "AND sc.published = '{$published}'" : ''; |
@@ -3954,14 +3954,14 @@ discard block |
||
3954 | 3954 | $docgrp = implode(',', $docgrp); |
3955 | 3955 | } |
3956 | 3956 | |
3957 | - $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="' . $_SESSION['mgrRole'] . '" OR sc.privatemgr=0') . (!$docgrp ? '' : ' OR dg.document_group IN (' . $docgrp . ')'); |
|
3957 | + $access = ($this->isFrontend() ? 'sc.privateweb=0' : '1="'.$_SESSION['mgrRole'].'" OR sc.privatemgr=0').(!$docgrp ? '' : ' OR dg.document_group IN ('.$docgrp.')'); |
|
3958 | 3958 | |
3959 | 3959 | $tblsc = $this->getFullTableName('site_content'); |
3960 | 3960 | $tbldg = $this->getFullTableName('document_groups'); |
3961 | 3961 | |
3962 | 3962 | $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
3963 | - LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (" . implode(',', |
|
3964 | - $ids) . ") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", |
|
3963 | + LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (".implode(',', |
|
3964 | + $ids).") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", |
|
3965 | 3965 | ($sort ? "{$sort} {$dir}" : ""), $limit); |
3966 | 3966 | |
3967 | 3967 | $resourceArray = $this->db->makeArray($result); |
@@ -4067,12 +4067,12 @@ discard block |
||
4067 | 4067 | $tbldg = $this->getFullTableName("document_groups"); |
4068 | 4068 | $activeSql = $active == 1 ? "AND sc.published=1 AND sc.deleted=0" : ""; |
4069 | 4069 | // modify field names to use sc. table reference |
4070 | - $fields = 'sc.' . implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
4070 | + $fields = 'sc.'.implode(',sc.', array_filter(array_map('trim', explode(',', $fields)))); |
|
4071 | 4071 | // get document groups for current user |
4072 | 4072 | if ($docgrp = $this->getUserDocGroups()) { |
4073 | 4073 | $docgrp = implode(",", $docgrp); |
4074 | 4074 | } |
4075 | - $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
4075 | + $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='".$_SESSION['mgrRole']."' OR sc.privatemgr=0").(!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
|
4076 | 4076 | $result = $this->db->select($fields, "{$tblsc} sc LEFT JOIN {$tbldg} dg on dg.document = sc.id", |
4077 | 4077 | "(sc.id='{$pageid}' {$activeSql}) AND ({$access})", "", 1); |
4078 | 4078 | $pageInfo = $this->db->getRow($result); |
@@ -4124,7 +4124,7 @@ discard block |
||
4124 | 4124 | { |
4125 | 4125 | if ($this->currentSnippet) { |
4126 | 4126 | $tbl = $this->getFullTableName("site_snippets"); |
4127 | - $rs = $this->db->select('id', $tbl, "name='" . $this->db->escape($this->currentSnippet) . "'", '', 1); |
|
4127 | + $rs = $this->db->select('id', $tbl, "name='".$this->db->escape($this->currentSnippet)."'", '', 1); |
|
4128 | 4128 | if ($snippetId = $this->db->getValue($rs)) { |
4129 | 4129 | return $snippetId; |
4130 | 4130 | } |
@@ -4152,23 +4152,23 @@ discard block |
||
4152 | 4152 | */ |
4153 | 4153 | public function clearCache($type = '', $report = false) |
4154 | 4154 | { |
4155 | - $cache_dir = MODX_BASE_PATH . $this->getCacheFolder(); |
|
4155 | + $cache_dir = MODX_BASE_PATH.$this->getCacheFolder(); |
|
4156 | 4156 | if (is_array($type)) { |
4157 | 4157 | foreach ($type as $_) { |
4158 | 4158 | $this->clearCache($_, $report); |
4159 | 4159 | } |
4160 | 4160 | } elseif ($type == 'full') { |
4161 | - include_once(MODX_MANAGER_PATH . 'processors/cache_sync.class.processor.php'); |
|
4161 | + include_once(MODX_MANAGER_PATH.'processors/cache_sync.class.processor.php'); |
|
4162 | 4162 | $sync = new synccache(); |
4163 | 4163 | $sync->setCachepath($cache_dir); |
4164 | 4164 | $sync->setReport($report); |
4165 | 4165 | $sync->emptyCache(); |
4166 | 4166 | } elseif (preg_match('@^[1-9][0-9]*$@', $type)) { |
4167 | 4167 | $key = ($this->config['cache_type'] == 2) ? $this->makePageCacheKey($type) : $type; |
4168 | - $file_name = "docid_" . $key . "_*.pageCache.php"; |
|
4169 | - $cache_path = $cache_dir . $file_name; |
|
4168 | + $file_name = "docid_".$key."_*.pageCache.php"; |
|
4169 | + $cache_path = $cache_dir.$file_name; |
|
4170 | 4170 | $files = glob($cache_path); |
4171 | - $files[] = $cache_dir . "docid_" . $key . ".pageCache.php"; |
|
4171 | + $files[] = $cache_dir."docid_".$key.".pageCache.php"; |
|
4172 | 4172 | foreach ($files as $file) { |
4173 | 4173 | if (!is_file($file)) { |
4174 | 4174 | continue; |
@@ -4176,7 +4176,7 @@ discard block |
||
4176 | 4176 | unlink($file); |
4177 | 4177 | } |
4178 | 4178 | } else { |
4179 | - $files = glob($cache_dir . '*'); |
|
4179 | + $files = glob($cache_dir.'*'); |
|
4180 | 4180 | foreach ($files as $file) { |
4181 | 4181 | $name = basename($file); |
4182 | 4182 | if (strpos($name, '.pageCache.php') === false) { |
@@ -4245,7 +4245,7 @@ discard block |
||
4245 | 4245 | $f_url_suffix = '/'; |
4246 | 4246 | } |
4247 | 4247 | |
4248 | - $alPath = !empty ($al['path']) ? $al['path'] . '/' : ''; |
|
4248 | + $alPath = !empty ($al['path']) ? $al['path'].'/' : ''; |
|
4249 | 4249 | |
4250 | 4250 | if ($al && $al['alias']) { |
4251 | 4251 | $alias = $al['alias']; |
@@ -4253,7 +4253,7 @@ discard block |
||
4253 | 4253 | |
4254 | 4254 | } |
4255 | 4255 | |
4256 | - $alias = $alPath . $f_url_prefix . $alias . $f_url_suffix; |
|
4256 | + $alias = $alPath.$f_url_prefix.$alias.$f_url_suffix; |
|
4257 | 4257 | $url = "{$alias}{$args}"; |
4258 | 4258 | } else { |
4259 | 4259 | $url = "index.php?id={$id}{$args}"; |
@@ -4272,7 +4272,7 @@ discard block |
||
4272 | 4272 | } |
4273 | 4273 | |
4274 | 4274 | //TODO: check to make sure that $site_url incudes the url :port (e.g. :8080) |
4275 | - $host = $scheme == 'full' ? $this->config['site_url'] : $scheme . '://' . $_SERVER['HTTP_HOST'] . $host; |
|
4275 | + $host = $scheme == 'full' ? $this->config['site_url'] : $scheme.'://'.$_SERVER['HTTP_HOST'].$host; |
|
4276 | 4276 | } |
4277 | 4277 | |
4278 | 4278 | //fix strictUrl by Bumkaka |
@@ -4281,9 +4281,9 @@ discard block |
||
4281 | 4281 | } |
4282 | 4282 | |
4283 | 4283 | if ($this->config['xhtml_urls']) { |
4284 | - $url = preg_replace("/&(?!amp;)/", "&", $host . $virtualDir . $url); |
|
4284 | + $url = preg_replace("/&(?!amp;)/", "&", $host.$virtualDir.$url); |
|
4285 | 4285 | } else { |
4286 | - $url = $host . $virtualDir . $url; |
|
4286 | + $url = $host.$virtualDir.$url; |
|
4287 | 4287 | } |
4288 | 4288 | |
4289 | 4289 | $evtOut = $this->invokeEvent('OnMakeDocUrl', array( |
@@ -4307,21 +4307,21 @@ discard block |
||
4307 | 4307 | if (isset($this->aliasListing[$id])) { |
4308 | 4308 | $out = $this->aliasListing[$id]; |
4309 | 4309 | } else { |
4310 | - $q = $this->db->query("SELECT id,alias,isfolder,parent FROM " . $this->getFullTableName("site_content") . " WHERE id=" . (int)$id); |
|
4310 | + $q = $this->db->query("SELECT id,alias,isfolder,parent FROM ".$this->getFullTableName("site_content")." WHERE id=".(int) $id); |
|
4311 | 4311 | if ($this->db->getRecordCount($q) == '1') { |
4312 | 4312 | $q = $this->db->getRow($q); |
4313 | 4313 | $this->aliasListing[$id] = array( |
4314 | - 'id' => (int)$q['id'], |
|
4314 | + 'id' => (int) $q['id'], |
|
4315 | 4315 | 'alias' => $q['alias'] == '' ? $q['id'] : $q['alias'], |
4316 | - 'parent' => (int)$q['parent'], |
|
4317 | - 'isfolder' => (int)$q['isfolder'], |
|
4316 | + 'parent' => (int) $q['parent'], |
|
4317 | + 'isfolder' => (int) $q['isfolder'], |
|
4318 | 4318 | ); |
4319 | 4319 | if ($this->aliasListing[$id]['parent'] > 0) { |
4320 | 4320 | //fix alias_path_usage |
4321 | 4321 | if ($this->config['use_alias_path'] == '1') { |
4322 | 4322 | //&& $tmp['path'] != '' - fix error slash with epty path |
4323 | 4323 | $tmp = $this->getAliasListing($this->aliasListing[$id]['parent']); |
4324 | - $this->aliasListing[$id]['path'] = $tmp['path'] . ($tmp['alias_visible'] ? (($tmp['parent'] > 0 && $tmp['path'] != '') ? '/' : '') . $tmp['alias'] : ''); |
|
4324 | + $this->aliasListing[$id]['path'] = $tmp['path'].($tmp['alias_visible'] ? (($tmp['parent'] > 0 && $tmp['path'] != '') ? '/' : '').$tmp['alias'] : ''); |
|
4325 | 4325 | } else { |
4326 | 4326 | $this->aliasListing[$id]['path'] = ''; |
4327 | 4327 | } |
@@ -4363,7 +4363,7 @@ discard block |
||
4363 | 4363 | $out = array(); |
4364 | 4364 | if (empty($this->version) || !is_array($this->version)) { |
4365 | 4365 | //include for compatibility modx version < 1.0.10 |
4366 | - include MODX_MANAGER_PATH . "includes/version.inc.php"; |
|
4366 | + include MODX_MANAGER_PATH."includes/version.inc.php"; |
|
4367 | 4367 | $this->version = array(); |
4368 | 4368 | $this->version['version'] = isset($modx_version) ? $modx_version : ''; |
4369 | 4369 | $this->version['branch'] = isset($modx_branch) ? $modx_branch : ''; |
@@ -4386,19 +4386,19 @@ discard block |
||
4386 | 4386 | { |
4387 | 4387 | if (isset ($this->snippetCache[$snippetName])) { |
4388 | 4388 | $snippet = $this->snippetCache[$snippetName]; |
4389 | - $properties = !empty($this->snippetCache[$snippetName . "Props"]) ? $this->snippetCache[$snippetName . "Props"] : ''; |
|
4389 | + $properties = !empty($this->snippetCache[$snippetName."Props"]) ? $this->snippetCache[$snippetName."Props"] : ''; |
|
4390 | 4390 | } else { // not in cache so let's check the db |
4391 | - $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM " . $this->getFullTableName("site_snippets") . " as ss LEFT JOIN " . $this->getFullTableName('site_modules') . " as sm on sm.guid=ss.moduleguid WHERE ss.`name`='" . $this->db->escape($snippetName) . "' AND ss.disabled=0;"; |
|
4391 | + $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM ".$this->getFullTableName("site_snippets")." as ss LEFT JOIN ".$this->getFullTableName('site_modules')." as sm on sm.guid=ss.moduleguid WHERE ss.`name`='".$this->db->escape($snippetName)."' AND ss.disabled=0;"; |
|
4392 | 4392 | $result = $this->db->query($sql); |
4393 | 4393 | if ($this->db->getRecordCount($result) == 1) { |
4394 | 4394 | $row = $this->db->getRow($result); |
4395 | 4395 | $snippet = $this->snippetCache[$snippetName] = $row['snippet']; |
4396 | 4396 | $mergedProperties = array_merge($this->parseProperties($row['properties']), |
4397 | 4397 | $this->parseProperties($row['sharedproperties'])); |
4398 | - $properties = $this->snippetCache[$snippetName . "Props"] = json_encode($mergedProperties); |
|
4398 | + $properties = $this->snippetCache[$snippetName."Props"] = json_encode($mergedProperties); |
|
4399 | 4399 | } else { |
4400 | 4400 | $snippet = $this->snippetCache[$snippetName] = "return false;"; |
4401 | - $properties = $this->snippetCache[$snippetName . "Props"] = ''; |
|
4401 | + $properties = $this->snippetCache[$snippetName."Props"] = ''; |
|
4402 | 4402 | } |
4403 | 4403 | } |
4404 | 4404 | // load default params/properties |
@@ -4502,7 +4502,7 @@ discard block |
||
4502 | 4502 | if (strpos($tpl, $s) !== false) { |
4503 | 4503 | $tpl = str_replace($s, $value, $tpl); |
4504 | 4504 | } elseif ($this->debug) { |
4505 | - $this->addLog('parseText parse error', $_SERVER['REQUEST_URI'] . $s, 2); |
|
4505 | + $this->addLog('parseText parse error', $_SERVER['REQUEST_URI'].$s, 2); |
|
4506 | 4506 | } |
4507 | 4507 | } |
4508 | 4508 | |
@@ -4551,7 +4551,7 @@ discard block |
||
4551 | 4551 | case 'CODE': |
4552 | 4552 | break; |
4553 | 4553 | case 'FILE': |
4554 | - $template = file_get_contents(MODX_BASE_PATH . $template); |
|
4554 | + $template = file_get_contents(MODX_BASE_PATH.$template); |
|
4555 | 4555 | break; |
4556 | 4556 | case 'CHUNK': |
4557 | 4557 | $template = $this->getChunk($template); |
@@ -4585,7 +4585,7 @@ discard block |
||
4585 | 4585 | if ($mode !== 'formatOnly' && empty($timestamp)) { |
4586 | 4586 | return '-'; |
4587 | 4587 | } |
4588 | - $timestamp = (int)$timestamp; |
|
4588 | + $timestamp = (int) $timestamp; |
|
4589 | 4589 | |
4590 | 4590 | switch ($this->config['datetime_format']) { |
4591 | 4591 | case 'YYYY/mm/dd': |
@@ -4605,7 +4605,7 @@ discard block |
||
4605 | 4605 | } |
4606 | 4606 | |
4607 | 4607 | if (empty($mode)) { |
4608 | - $strTime = strftime($dateFormat . " %H:%M:%S", $timestamp); |
|
4608 | + $strTime = strftime($dateFormat." %H:%M:%S", $timestamp); |
|
4609 | 4609 | } elseif ($mode == 'dateOnly') { |
4610 | 4610 | $strTime = strftime($dateFormat, $timestamp); |
4611 | 4611 | } elseif ($mode == 'formatOnly') { |
@@ -4660,7 +4660,7 @@ discard block |
||
4660 | 4660 | $S = 0; |
4661 | 4661 | } |
4662 | 4662 | $timeStamp = mktime($H, $M, $S, $m, $d, $Y); |
4663 | - $timeStamp = (int)$timeStamp; |
|
4663 | + $timeStamp = (int) $timeStamp; |
|
4664 | 4664 | |
4665 | 4665 | return $timeStamp; |
4666 | 4666 | } |
@@ -4698,7 +4698,7 @@ discard block |
||
4698 | 4698 | $tvfields = "*", |
4699 | 4699 | $tvsort = "rank", |
4700 | 4700 | $tvsortdir = "ASC" |
4701 | - ) { |
|
4701 | + ){ |
|
4702 | 4702 | $docs = $this->getDocumentChildren($parentid, $published, 0, '*', '', $docsort, $docsortdir); |
4703 | 4703 | if (!$docs) { |
4704 | 4704 | return false; |
@@ -4711,7 +4711,7 @@ discard block |
||
4711 | 4711 | if ($v === 'value') { |
4712 | 4712 | unset($_[$i]); |
4713 | 4713 | } else { |
4714 | - $_[$i] = 'tv.' . $v; |
|
4714 | + $_[$i] = 'tv.'.$v; |
|
4715 | 4715 | } |
4716 | 4716 | } |
4717 | 4717 | $fields = implode(',', $_); |
@@ -4720,13 +4720,13 @@ discard block |
||
4720 | 4720 | } |
4721 | 4721 | |
4722 | 4722 | if ($tvsort != '') { |
4723 | - $tvsort = 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
|
4723 | + $tvsort = 'tv.'.implode(',tv.', array_filter(array_map('trim', explode(',', $tvsort)))); |
|
4724 | 4724 | } |
4725 | 4725 | if ($tvidnames == "*") { |
4726 | 4726 | $query = "tv.id<>0"; |
4727 | 4727 | } else { |
4728 | - $query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name") . " IN ('" . implode("','", |
|
4729 | - $tvidnames) . "')"; |
|
4728 | + $query = (is_numeric($tvidnames[0]) ? "tv.id" : "tv.name")." IN ('".implode("','", |
|
4729 | + $tvidnames)."')"; |
|
4730 | 4730 | } |
4731 | 4731 | |
4732 | 4732 | $this->getUserDocGroups(); |
@@ -4788,7 +4788,7 @@ discard block |
||
4788 | 4788 | $sortDir = 'ASC', |
4789 | 4789 | $where = '', |
4790 | 4790 | $resultKey = 'id' |
4791 | - ) { |
|
4791 | + ){ |
|
4792 | 4792 | $docs = $this->getDocumentChildren($parentid, $published, 0, 'id', $where, $sortBy, $sortDir); |
4793 | 4793 | |
4794 | 4794 | if (!$docs) { |
@@ -4883,7 +4883,7 @@ discard block |
||
4883 | 4883 | $published = 1, |
4884 | 4884 | $sort = 'rank', |
4885 | 4885 | $dir = 'ASC' |
4886 | - ) { |
|
4886 | + ){ |
|
4887 | 4887 | $cacheKey = md5(print_r(func_get_args(), true)); |
4888 | 4888 | if (isset($this->tmpCache[__FUNCTION__][$cacheKey])) { |
4889 | 4889 | return $this->tmpCache[__FUNCTION__][$cacheKey]; |
@@ -4908,20 +4908,20 @@ discard block |
||
4908 | 4908 | } |
4909 | 4909 | |
4910 | 4910 | // get user defined template variables |
4911 | - $fields = ($fields == '') ? 'tv.*' : 'tv.' . implode(',tv.', |
|
4911 | + $fields = ($fields == '') ? 'tv.*' : 'tv.'.implode(',tv.', |
|
4912 | 4912 | array_filter(array_map('trim', explode(',', $fields)))); |
4913 | - $sort = ($sort == '') ? '' : 'tv.' . implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
|
4913 | + $sort = ($sort == '') ? '' : 'tv.'.implode(',tv.', array_filter(array_map('trim', explode(',', $sort)))); |
|
4914 | 4914 | |
4915 | 4915 | if ($idnames == '*') { |
4916 | 4916 | $query = 'tv.id<>0'; |
4917 | 4917 | } else { |
4918 | - $query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name') . " IN ('" . implode("','", $idnames) . "')"; |
|
4918 | + $query = (is_numeric($idnames[0]) ? 'tv.id' : 'tv.name')." IN ('".implode("','", $idnames)."')"; |
|
4919 | 4919 | } |
4920 | 4920 | |
4921 | 4921 | $rs = $this->db->select("{$fields}, IF(tvc.value != '', tvc.value, tv.default_text) as value", |
4922 | - $this->getFullTableName('site_tmplvars') . " tv |
|
4923 | - INNER JOIN " . $this->getFullTableName('site_tmplvar_templates') . " tvtpl ON tvtpl.tmplvarid = tv.id |
|
4924 | - LEFT JOIN " . $this->getFullTableName('site_tmplvar_contentvalues') . " tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$docid}'", |
|
4922 | + $this->getFullTableName('site_tmplvars')." tv |
|
4923 | + INNER JOIN " . $this->getFullTableName('site_tmplvar_templates')." tvtpl ON tvtpl.tmplvarid = tv.id |
|
4924 | + LEFT JOIN " . $this->getFullTableName('site_tmplvar_contentvalues')." tvc ON tvc.tmplvarid=tv.id AND tvc.contentid = '{$docid}'", |
|
4925 | 4925 | "{$query} AND tvtpl.templateid = '{$docRow['template']}'", ($sort ? "{$sort} {$dir}" : "")); |
4926 | 4926 | |
4927 | 4927 | $result = $this->db->makeArray($rs); |
@@ -4971,16 +4971,16 @@ discard block |
||
4971 | 4971 | $output = array(); |
4972 | 4972 | $vars = ($idnames == '*' || is_array($idnames)) ? $idnames : array($idnames); |
4973 | 4973 | |
4974 | - $docid = (int)$docid > 0 ? (int)$docid : $this->documentIdentifier; |
|
4974 | + $docid = (int) $docid > 0 ? (int) $docid : $this->documentIdentifier; |
|
4975 | 4975 | // remove sort for speed |
4976 | 4976 | $result = $this->getTemplateVars($vars, '*', $docid, $published, '', ''); |
4977 | 4977 | |
4978 | 4978 | if ($result == false) { |
4979 | 4979 | return false; |
4980 | 4980 | } else { |
4981 | - $baspath = MODX_MANAGER_PATH . 'includes'; |
|
4982 | - include_once $baspath . '/tmplvars.format.inc.php'; |
|
4983 | - include_once $baspath . '/tmplvars.commands.inc.php'; |
|
4981 | + $baspath = MODX_MANAGER_PATH.'includes'; |
|
4982 | + include_once $baspath.'/tmplvars.format.inc.php'; |
|
4983 | + include_once $baspath.'/tmplvars.commands.inc.php'; |
|
4984 | 4984 | |
4985 | 4985 | for ($i = 0; $i < count($result); $i++) { |
4986 | 4986 | $row = $result[$i]; |
@@ -5006,7 +5006,7 @@ discard block |
||
5006 | 5006 | */ |
5007 | 5007 | public function getFullTableName($tbl) |
5008 | 5008 | { |
5009 | - return $this->db->config['dbase'] . ".`" . $this->db->config['table_prefix'] . $tbl . "`"; |
|
5009 | + return $this->db->config['dbase'].".`".$this->db->config['table_prefix'].$tbl."`"; |
|
5010 | 5010 | } |
5011 | 5011 | |
5012 | 5012 | /** |
@@ -5085,7 +5085,7 @@ discard block |
||
5085 | 5085 | public function getCachePath() |
5086 | 5086 | { |
5087 | 5087 | global $base_url; |
5088 | - $pth = $base_url . $this->getCacheFolder(); |
|
5088 | + $pth = $base_url.$this->getCacheFolder(); |
|
5089 | 5089 | |
5090 | 5090 | return $pth; |
5091 | 5091 | } |
@@ -5138,8 +5138,8 @@ discard block |
||
5138 | 5138 | $out = false; |
5139 | 5139 | |
5140 | 5140 | if (!empty($context)) { |
5141 | - if (is_scalar($context) && isset($_SESSION[$context . 'Validated'])) { |
|
5142 | - $out = $_SESSION[$context . 'InternalKey']; |
|
5141 | + if (is_scalar($context) && isset($_SESSION[$context.'Validated'])) { |
|
5142 | + $out = $_SESSION[$context.'InternalKey']; |
|
5143 | 5143 | } |
5144 | 5144 | } else { |
5145 | 5145 | switch (true) { |
@@ -5168,8 +5168,8 @@ discard block |
||
5168 | 5168 | $out = false; |
5169 | 5169 | |
5170 | 5170 | if (!empty($context)) { |
5171 | - if (is_scalar($context) && isset($_SESSION[$context . 'Validated'])) { |
|
5172 | - $out = $_SESSION[$context . 'Shortname']; |
|
5171 | + if (is_scalar($context) && isset($_SESSION[$context.'Validated'])) { |
|
5172 | + $out = $_SESSION[$context.'Shortname']; |
|
5173 | 5173 | } |
5174 | 5174 | } else { |
5175 | 5175 | switch (true) { |
@@ -5241,8 +5241,8 @@ discard block |
||
5241 | 5241 | */ |
5242 | 5242 | public function getWebUserInfo($uid) |
5243 | 5243 | { |
5244 | - $rs = $this->db->select('wu.username, wu.password, wua.*', $this->getFullTableName("web_users") . " wu |
|
5245 | - INNER JOIN " . $this->getFullTableName("web_user_attributes") . " wua ON wua.internalkey=wu.id", |
|
5244 | + $rs = $this->db->select('wu.username, wu.password, wua.*', $this->getFullTableName("web_users")." wu |
|
5245 | + INNER JOIN " . $this->getFullTableName("web_user_attributes")." wua ON wua.internalkey=wu.id", |
|
5246 | 5246 | "wu.id='{$uid}'"); |
5247 | 5247 | if ($row = $this->db->getRow($rs)) { |
5248 | 5248 | if (!isset($row['usertype']) or !$row["usertype"]) { |
@@ -5285,7 +5285,7 @@ discard block |
||
5285 | 5285 | // resolve ids to names |
5286 | 5286 | $dgn = array(); |
5287 | 5287 | $ds = $this->db->select('name', $this->getFullTableName("documentgroup_names"), |
5288 | - "id IN (" . implode(",", $dg) . ")"); |
|
5288 | + "id IN (".implode(",", $dg).")"); |
|
5289 | 5289 | while ($row = $this->db->getRow($ds)) { |
5290 | 5290 | $dgn[] = $row['name']; |
5291 | 5291 | } |
@@ -5316,7 +5316,7 @@ discard block |
||
5316 | 5316 | $rt = false; |
5317 | 5317 | if ($_SESSION["webValidated"] == 1) { |
5318 | 5318 | $tbl = $this->getFullTableName("web_users"); |
5319 | - $ds = $this->db->select('id, username, password', $tbl, "id='" . $this->getLoginUserID() . "'"); |
|
5319 | + $ds = $this->db->select('id, username, password', $tbl, "id='".$this->getLoginUserID()."'"); |
|
5320 | 5320 | if ($row = $this->db->getRow($ds)) { |
5321 | 5321 | if ($row["password"] == md5($oldPwd)) { |
5322 | 5322 | if (strlen($newPwd) < 6) { |
@@ -5326,7 +5326,7 @@ discard block |
||
5326 | 5326 | } else { |
5327 | 5327 | $this->db->update(array( |
5328 | 5328 | 'password' => $this->db->escape($newPwd), |
5329 | - ), $tbl, "id='" . $this->getLoginUserID() . "'"); |
|
5329 | + ), $tbl, "id='".$this->getLoginUserID()."'"); |
|
5330 | 5330 | // invoke OnWebChangePassword event |
5331 | 5331 | $this->invokeEvent("OnWebChangePassword", array( |
5332 | 5332 | "userid" => $row["id"], |
@@ -5359,8 +5359,8 @@ discard block |
||
5359 | 5359 | // check cache |
5360 | 5360 | $grpNames = isset ($_SESSION['webUserGroupNames']) ? $_SESSION['webUserGroupNames'] : false; |
5361 | 5361 | if (!is_array($grpNames)) { |
5362 | - $rs = $this->db->select('wgn.name', $this->getFullTableName("webgroup_names") . " wgn |
|
5363 | - INNER JOIN " . $this->getFullTableName("web_groups") . " wg ON wg.webgroup=wgn.id AND wg.webuser='" . $this->getLoginUserID() . "'"); |
|
5362 | + $rs = $this->db->select('wgn.name', $this->getFullTableName("webgroup_names")." wgn |
|
5363 | + INNER JOIN " . $this->getFullTableName("web_groups")." wg ON wg.webgroup=wgn.id AND wg.webuser='".$this->getLoginUserID()."'"); |
|
5364 | 5364 | $grpNames = $this->db->getColumn("name", $rs); |
5365 | 5365 | // save to cache |
5366 | 5366 | $_SESSION['webUserGroupNames'] = $grpNames; |
@@ -5394,7 +5394,7 @@ discard block |
||
5394 | 5394 | if (strpos(strtolower($src), "<style") !== false || strpos(strtolower($src), "<link") !== false) { |
5395 | 5395 | $this->sjscripts[$nextpos] = $src; |
5396 | 5396 | } else { |
5397 | - $this->sjscripts[$nextpos] = "\t" . '<link rel="stylesheet" type="text/css" href="' . $src . '" ' . ($media ? 'media="' . $media . '" ' : '') . '/>'; |
|
5397 | + $this->sjscripts[$nextpos] = "\t".'<link rel="stylesheet" type="text/css" href="'.$src.'" '.($media ? 'media="'.$media.'" ' : '').'/>'; |
|
5398 | 5398 | } |
5399 | 5399 | } |
5400 | 5400 | |
@@ -5421,7 +5421,7 @@ discard block |
||
5421 | 5421 | $src, |
5422 | 5422 | $options = array('name' => '', 'version' => '0', 'plaintext' => false), |
5423 | 5423 | $startup = false |
5424 | - ) { |
|
5424 | + ){ |
|
5425 | 5425 | if (empty($src)) { |
5426 | 5426 | return ''; |
5427 | 5427 | } // nothing to register |
@@ -5476,7 +5476,7 @@ discard block |
||
5476 | 5476 | } |
5477 | 5477 | |
5478 | 5478 | if ($useThisVer && $plaintext != true && (strpos(strtolower($src), "<script") === false)) { |
5479 | - $src = "\t" . '<script type="text/javascript" src="' . $src . '"></script>'; |
|
5479 | + $src = "\t".'<script type="text/javascript" src="'.$src.'"></script>'; |
|
5480 | 5480 | } |
5481 | 5481 | if ($startup) { |
5482 | 5482 | $pos = isset($overwritepos) ? $overwritepos : max(array_merge(array(0), array_keys($this->sjscripts))) + 1; |
@@ -5627,7 +5627,7 @@ discard block |
||
5627 | 5627 | $this->pluginsCode .= sprintf('<fieldset><legend><b>%s / %s</b> (%2.2f ms)</legend>', $evtName, |
5628 | 5628 | $pluginName, $eventtime * 1000); |
5629 | 5629 | foreach ($parameter as $k => $v) { |
5630 | - $this->pluginsCode .= "{$k} => " . print_r($v, true) . '<br>'; |
|
5630 | + $this->pluginsCode .= "{$k} => ".print_r($v, true).'<br>'; |
|
5631 | 5631 | } |
5632 | 5632 | $this->pluginsCode .= '</fieldset><br />'; |
5633 | 5633 | $this->pluginsTime["{$evtName} / {$pluginName}"] += $eventtime; |
@@ -5656,14 +5656,14 @@ discard block |
||
5656 | 5656 | $plugin = array(); |
5657 | 5657 | if (isset ($this->pluginCache[$pluginName])) { |
5658 | 5658 | $pluginCode = $this->pluginCache[$pluginName]; |
5659 | - $pluginProperties = isset($this->pluginCache[$pluginName . "Props"]) ? $this->pluginCache[$pluginName . "Props"] : ''; |
|
5659 | + $pluginProperties = isset($this->pluginCache[$pluginName."Props"]) ? $this->pluginCache[$pluginName."Props"] : ''; |
|
5660 | 5660 | } else { |
5661 | 5661 | $pluginName = $this->db->escape($pluginName); |
5662 | 5662 | $result = $this->db->select('name, plugincode, properties', $this->getFullTableName("site_plugins"), |
5663 | 5663 | "name='{$pluginName}' AND disabled=0"); |
5664 | 5664 | if ($row = $this->db->getRow($result)) { |
5665 | 5665 | $pluginCode = $this->pluginCache[$row['name']] = $row['plugincode']; |
5666 | - $pluginProperties = $this->pluginCache[$row['name'] . "Props"] = $row['properties']; |
|
5666 | + $pluginProperties = $this->pluginCache[$row['name']."Props"] = $row['properties']; |
|
5667 | 5667 | } else { |
5668 | 5668 | $pluginCode = $this->pluginCache[$pluginName] = "return false;"; |
5669 | 5669 | $pluginProperties = ''; |
@@ -5773,7 +5773,7 @@ discard block |
||
5773 | 5773 | public function parseDocBlockFromFile($element_dir, $filename, $escapeValues = false) |
5774 | 5774 | { |
5775 | 5775 | $params = array(); |
5776 | - $fullpath = $element_dir . '/' . $filename; |
|
5776 | + $fullpath = $element_dir.'/'.$filename; |
|
5777 | 5777 | if (is_readable($fullpath)) { |
5778 | 5778 | $tpl = @fopen($fullpath, "r"); |
5779 | 5779 | if ($tpl) { |
@@ -5885,7 +5885,7 @@ discard block |
||
5885 | 5885 | $name_found, |
5886 | 5886 | $description_found, |
5887 | 5887 | $docblock_end_found |
5888 | - ) { |
|
5888 | + ){ |
|
5889 | 5889 | $param = ''; |
5890 | 5890 | $val = ''; |
5891 | 5891 | $ma = null; |
@@ -5950,8 +5950,8 @@ discard block |
||
5950 | 5950 | $ph = array('site_url' => MODX_SITE_URL); |
5951 | 5951 | $regexUrl = "/((http|https|ftp|ftps)\:\/\/[^\/]+(\/[^\s]+[^,.?!:;\s])?)/"; |
5952 | 5952 | $regexEmail = '#([0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\\.[a-wyz][a-z](fo|g|l|m|mes|o|op|pa|ro|seum|t|u|v|z)?)#i'; |
5953 | - $emailSubject = isset($parsed['name']) ? '?subject=' . $parsed['name'] : ''; |
|
5954 | - $emailSubject .= isset($parsed['version']) ? ' v' . $parsed['version'] : ''; |
|
5953 | + $emailSubject = isset($parsed['name']) ? '?subject='.$parsed['name'] : ''; |
|
5954 | + $emailSubject .= isset($parsed['version']) ? ' v'.$parsed['version'] : ''; |
|
5955 | 5955 | foreach ($parsed as $key => $val) { |
5956 | 5956 | if (is_array($val)) { |
5957 | 5957 | foreach ($val as $key2 => $val2) { |
@@ -5961,7 +5961,7 @@ discard block |
||
5961 | 5961 | $val2); |
5962 | 5962 | } |
5963 | 5963 | if (preg_match($regexEmail, $val2, $url)) { |
5964 | - $val2 = preg_replace($regexEmail, '<a href="mailto:\\1' . $emailSubject . '">\\1</a>', $val2); |
|
5964 | + $val2 = preg_replace($regexEmail, '<a href="mailto:\\1'.$emailSubject.'">\\1</a>', $val2); |
|
5965 | 5965 | } |
5966 | 5966 | $parsed[$key][$key2] = $val2; |
5967 | 5967 | } |
@@ -5971,7 +5971,7 @@ discard block |
||
5971 | 5971 | $val = preg_replace($regexUrl, "<a href=\"{$url[0]}\" target=\"_blank\">{$url[0]}</a> ", $val); |
5972 | 5972 | } |
5973 | 5973 | if (preg_match($regexEmail, $val, $url)) { |
5974 | - $val = preg_replace($regexEmail, '<a href="mailto:\\1' . $emailSubject . '">\\1</a>', $val); |
|
5974 | + $val = preg_replace($regexEmail, '<a href="mailto:\\1'.$emailSubject.'">\\1</a>', $val); |
|
5975 | 5975 | } |
5976 | 5976 | $parsed[$key] = $val; |
5977 | 5977 | } |
@@ -5985,33 +5985,33 @@ discard block |
||
5985 | 5985 | ); |
5986 | 5986 | |
5987 | 5987 | $nl = "\n"; |
5988 | - $list = isset($parsed['logo']) ? '<img src="' . $this->config['base_url'] . ltrim($parsed['logo'], |
|
5989 | - "/") . '" style="float:right;max-width:100px;height:auto;" />' . $nl : ''; |
|
5990 | - $list .= '<p>' . $nl; |
|
5991 | - $list .= isset($parsed['name']) ? '<strong>' . $parsed['name'] . '</strong><br/>' . $nl : ''; |
|
5992 | - $list .= isset($parsed['description']) ? $parsed['description'] . $nl : ''; |
|
5993 | - $list .= '</p><br/>' . $nl; |
|
5994 | - $list .= isset($parsed['version']) ? '<p><strong>' . $_lang['version'] . ':</strong> ' . $parsed['version'] . '</p>' . $nl : ''; |
|
5995 | - $list .= isset($parsed['license']) ? '<p><strong>' . $_lang['license'] . ':</strong> ' . $parsed['license'] . '</p>' . $nl : ''; |
|
5996 | - $list .= isset($parsed['lastupdate']) ? '<p><strong>' . $_lang['last_update'] . ':</strong> ' . $parsed['lastupdate'] . '</p>' . $nl : ''; |
|
5997 | - $list .= '<br/>' . $nl; |
|
5988 | + $list = isset($parsed['logo']) ? '<img src="'.$this->config['base_url'].ltrim($parsed['logo'], |
|
5989 | + "/").'" style="float:right;max-width:100px;height:auto;" />'.$nl : ''; |
|
5990 | + $list .= '<p>'.$nl; |
|
5991 | + $list .= isset($parsed['name']) ? '<strong>'.$parsed['name'].'</strong><br/>'.$nl : ''; |
|
5992 | + $list .= isset($parsed['description']) ? $parsed['description'].$nl : ''; |
|
5993 | + $list .= '</p><br/>'.$nl; |
|
5994 | + $list .= isset($parsed['version']) ? '<p><strong>'.$_lang['version'].':</strong> '.$parsed['version'].'</p>'.$nl : ''; |
|
5995 | + $list .= isset($parsed['license']) ? '<p><strong>'.$_lang['license'].':</strong> '.$parsed['license'].'</p>'.$nl : ''; |
|
5996 | + $list .= isset($parsed['lastupdate']) ? '<p><strong>'.$_lang['last_update'].':</strong> '.$parsed['lastupdate'].'</p>'.$nl : ''; |
|
5997 | + $list .= '<br/>'.$nl; |
|
5998 | 5998 | $first = true; |
5999 | 5999 | foreach ($arrayParams as $param => $label) { |
6000 | 6000 | if (isset($parsed[$param])) { |
6001 | 6001 | if ($first) { |
6002 | - $list .= '<p><strong>' . $_lang['references'] . '</strong></p>' . $nl; |
|
6003 | - $list .= '<ul class="docBlockList">' . $nl; |
|
6002 | + $list .= '<p><strong>'.$_lang['references'].'</strong></p>'.$nl; |
|
6003 | + $list .= '<ul class="docBlockList">'.$nl; |
|
6004 | 6004 | $first = false; |
6005 | 6005 | } |
6006 | - $list .= ' <li><strong>' . $label . '</strong>' . $nl; |
|
6007 | - $list .= ' <ul>' . $nl; |
|
6006 | + $list .= ' <li><strong>'.$label.'</strong>'.$nl; |
|
6007 | + $list .= ' <ul>'.$nl; |
|
6008 | 6008 | foreach ($parsed[$param] as $val) { |
6009 | - $list .= ' <li>' . $val . '</li>' . $nl; |
|
6009 | + $list .= ' <li>'.$val.'</li>'.$nl; |
|
6010 | 6010 | } |
6011 | - $list .= ' </ul></li>' . $nl; |
|
6011 | + $list .= ' </ul></li>'.$nl; |
|
6012 | 6012 | } |
6013 | 6013 | } |
6014 | - $list .= !$first ? '</ul>' . $nl : ''; |
|
6014 | + $list .= !$first ? '</ul>'.$nl : ''; |
|
6015 | 6015 | |
6016 | 6016 | return $list; |
6017 | 6017 | } |
@@ -6089,7 +6089,7 @@ discard block |
||
6089 | 6089 | */ |
6090 | 6090 | public function addSnippet($name, $phpCode) |
6091 | 6091 | { |
6092 | - $this->snippetCache['#' . $name] = $phpCode; |
|
6092 | + $this->snippetCache['#'.$name] = $phpCode; |
|
6093 | 6093 | } |
6094 | 6094 | |
6095 | 6095 | /** |
@@ -6098,7 +6098,7 @@ discard block |
||
6098 | 6098 | */ |
6099 | 6099 | public function addChunk($name, $text) |
6100 | 6100 | { |
6101 | - $this->chunkCache['#' . $name] = $text; |
|
6101 | + $this->chunkCache['#'.$name] = $text; |
|
6102 | 6102 | } |
6103 | 6103 | |
6104 | 6104 | /** |
@@ -6134,7 +6134,7 @@ discard block |
||
6134 | 6134 | } |
6135 | 6135 | |
6136 | 6136 | if (!$isSafe) { |
6137 | - $msg = $phpcode . "\n" . $this->currentSnippet . "\n" . print_r($_SERVER, true); |
|
6137 | + $msg = $phpcode."\n".$this->currentSnippet."\n".print_r($_SERVER, true); |
|
6138 | 6138 | $title = sprintf('Unknown eval was executed (%s)', $this->htmlspecialchars(substr(trim($phpcode), 0, 50))); |
6139 | 6139 | $this->messageQuit($title, '', true, '', '', 'Parser', $msg); |
6140 | 6140 | |
@@ -6149,7 +6149,7 @@ discard block |
||
6149 | 6149 | return 'array()'; |
6150 | 6150 | } |
6151 | 6151 | |
6152 | - $output = $echo . $return; |
|
6152 | + $output = $echo.$return; |
|
6153 | 6153 | modx_sanitize_gpc($output); |
6154 | 6154 | |
6155 | 6155 | return $this->htmlspecialchars($output); // Maybe, all html tags are dangerous |
@@ -6168,8 +6168,8 @@ discard block |
||
6168 | 6168 | |
6169 | 6169 | $safe = explode(',', $safe_functions); |
6170 | 6170 | |
6171 | - $phpcode = rtrim($phpcode, ';') . ';'; |
|
6172 | - $tokens = token_get_all('<?php ' . $phpcode); |
|
6171 | + $phpcode = rtrim($phpcode, ';').';'; |
|
6172 | + $tokens = token_get_all('<?php '.$phpcode); |
|
6173 | 6173 | foreach ($tokens as $i => $token) { |
6174 | 6174 | if (!is_array($token)) { |
6175 | 6175 | continue; |
@@ -6210,7 +6210,7 @@ discard block |
||
6210 | 6210 | 'assets/tvs/', |
6211 | 6211 | 'assets/chunks/', |
6212 | 6212 | 'assets/templates/', |
6213 | - $this->config['rb_base_url'] . 'files/', |
|
6213 | + $this->config['rb_base_url'].'files/', |
|
6214 | 6214 | '' |
6215 | 6215 | ); |
6216 | 6216 | |
@@ -6235,7 +6235,7 @@ discard block |
||
6235 | 6235 | $errorMsg = sprintf("Could not retrieve string '%s'.", $str); |
6236 | 6236 | |
6237 | 6237 | foreach ($search_path as $path) { |
6238 | - $file_path = MODX_BASE_PATH . $path . $str; |
|
6238 | + $file_path = MODX_BASE_PATH.$path.$str; |
|
6239 | 6239 | if (strpos($file_path, MODX_MANAGER_PATH) === 0) { |
6240 | 6240 | return $errorMsg; |
6241 | 6241 | } elseif (is_file($file_path)) { |
@@ -6249,7 +6249,7 @@ discard block |
||
6249 | 6249 | return $errorMsg; |
6250 | 6250 | } |
6251 | 6251 | |
6252 | - $content = (string)file_get_contents($file_path); |
|
6252 | + $content = (string) file_get_contents($file_path); |
|
6253 | 6253 | if ($content === false) { |
6254 | 6254 | return $errorMsg; |
6255 | 6255 | } |
@@ -6351,7 +6351,7 @@ discard block |
||
6351 | 6351 | $text = '', |
6352 | 6352 | $line = '', |
6353 | 6353 | $output = '' |
6354 | - ) { |
|
6354 | + ){ |
|
6355 | 6355 | |
6356 | 6356 | if (0 < $this->messageQuitCount) { |
6357 | 6357 | return; |
@@ -6371,22 +6371,22 @@ discard block |
||
6371 | 6371 | |
6372 | 6372 | $version = isset ($GLOBALS['modx_version']) ? $GLOBALS['modx_version'] : ''; |
6373 | 6373 | $release_date = isset ($GLOBALS['release_date']) ? $GLOBALS['release_date'] : ''; |
6374 | - $request_uri = "http://" . $_SERVER['HTTP_HOST'] . ($_SERVER["SERVER_PORT"] == 80 ? "" : (":" . $_SERVER["SERVER_PORT"])) . $_SERVER['REQUEST_URI']; |
|
6374 | + $request_uri = "http://".$_SERVER['HTTP_HOST'].($_SERVER["SERVER_PORT"] == 80 ? "" : (":".$_SERVER["SERVER_PORT"])).$_SERVER['REQUEST_URI']; |
|
6375 | 6375 | $request_uri = $this->htmlspecialchars($request_uri, ENT_QUOTES, $this->config['modx_charset']); |
6376 | 6376 | $ua = $this->htmlspecialchars($_SERVER['HTTP_USER_AGENT'], ENT_QUOTES, $this->config['modx_charset']); |
6377 | 6377 | $referer = $this->htmlspecialchars($_SERVER['HTTP_REFERER'], ENT_QUOTES, $this->config['modx_charset']); |
6378 | 6378 | if ($is_error) { |
6379 | 6379 | $str = '<h2 style="color:red">« Evo Parse Error »</h2>'; |
6380 | 6380 | if ($msg != 'PHP Parse Error') { |
6381 | - $str .= '<h3 style="color:red">' . $msg . '</h3>'; |
|
6381 | + $str .= '<h3 style="color:red">'.$msg.'</h3>'; |
|
6382 | 6382 | } |
6383 | 6383 | } else { |
6384 | 6384 | $str = '<h2 style="color:#003399">« Evo Debug/ stop message »</h2>'; |
6385 | - $str .= '<h3 style="color:#003399">' . $msg . '</h3>'; |
|
6385 | + $str .= '<h3 style="color:#003399">'.$msg.'</h3>'; |
|
6386 | 6386 | } |
6387 | 6387 | |
6388 | 6388 | if (!empty ($query)) { |
6389 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">SQL > <span id="sqlHolder">' . $query . '</span></div>'; |
|
6389 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">SQL > <span id="sqlHolder">'.$query.'</span></div>'; |
|
6390 | 6390 | } |
6391 | 6391 | |
6392 | 6392 | $errortype = array( |
@@ -6409,13 +6409,13 @@ discard block |
||
6409 | 6409 | |
6410 | 6410 | if (!empty($nr) || !empty($file)) { |
6411 | 6411 | if ($text != '') { |
6412 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">Error : ' . $text . '</div>'; |
|
6412 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">Error : '.$text.'</div>'; |
|
6413 | 6413 | } |
6414 | 6414 | if ($output != '') { |
6415 | - $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">' . $output . '</div>'; |
|
6415 | + $str .= '<div style="font-weight:bold;border:1px solid #ccc;padding:8px;color:#333;background-color:#ffffcd;margin-bottom:15px;">'.$output.'</div>'; |
|
6416 | 6416 | } |
6417 | 6417 | if ($nr !== '') { |
6418 | - $table[] = array('ErrorType[num]', $errortype [$nr] . "[" . $nr . "]"); |
|
6418 | + $table[] = array('ErrorType[num]', $errortype [$nr]."[".$nr."]"); |
|
6419 | 6419 | } |
6420 | 6420 | if ($file) { |
6421 | 6421 | $table[] = array('File', $file); |
@@ -6435,7 +6435,7 @@ discard block |
||
6435 | 6435 | } |
6436 | 6436 | |
6437 | 6437 | if (!empty($this->event->activePlugin)) { |
6438 | - $table[] = array('Current Plugin', $this->event->activePlugin . '(' . $this->event->name . ')'); |
|
6438 | + $table[] = array('Current Plugin', $this->event->activePlugin.'('.$this->event->name.')'); |
|
6439 | 6439 | } |
6440 | 6440 | |
6441 | 6441 | $str .= $MakeTable->create($table, array('Error information', '')); |
@@ -6445,11 +6445,11 @@ discard block |
||
6445 | 6445 | $table[] = array('REQUEST_URI', $request_uri); |
6446 | 6446 | |
6447 | 6447 | if ($this->manager->action) { |
6448 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
6448 | + include_once(MODX_MANAGER_PATH.'includes/actionlist.inc.php'); |
|
6449 | 6449 | global $action_list; |
6450 | 6450 | $actionName = (isset($action_list[$this->manager->action])) ? " - {$action_list[$this->manager->action]}" : ''; |
6451 | 6451 | |
6452 | - $table[] = array('Manager action', $this->manager->action . $actionName); |
|
6452 | + $table[] = array('Manager action', $this->manager->action.$actionName); |
|
6453 | 6453 | } |
6454 | 6454 | |
6455 | 6455 | if (preg_match('@^[0-9]+@', $this->documentIdentifier)) { |
@@ -6457,7 +6457,7 @@ discard block |
||
6457 | 6457 | $url = $this->makeUrl($this->documentIdentifier, '', '', 'full'); |
6458 | 6458 | $table[] = array( |
6459 | 6459 | 'Resource', |
6460 | - '[' . $this->documentIdentifier . '] <a href="' . $url . '" target="_blank">' . $resource['pagetitle'] . '</a>' |
|
6460 | + '['.$this->documentIdentifier.'] <a href="'.$url.'" target="_blank">'.$resource['pagetitle'].'</a>' |
|
6461 | 6461 | ); |
6462 | 6462 | } |
6463 | 6463 | $table[] = array('Referer', $referer); |
@@ -6482,7 +6482,7 @@ discard block |
||
6482 | 6482 | |
6483 | 6483 | $mem = memory_get_peak_usage(true); |
6484 | 6484 | $total_mem = $mem - $this->mstart; |
6485 | - $total_mem = ($total_mem / 1024 / 1024) . ' mb'; |
|
6485 | + $total_mem = ($total_mem / 1024 / 1024).' mb'; |
|
6486 | 6486 | |
6487 | 6487 | $queryTime = $this->queryTime; |
6488 | 6488 | $phpTime = $totalTime - $queryTime; |
@@ -6503,18 +6503,18 @@ discard block |
||
6503 | 6503 | $str .= $this->get_backtrace(debug_backtrace()); |
6504 | 6504 | // Log error |
6505 | 6505 | if (!empty($this->currentSnippet)) { |
6506 | - $source = 'Snippet - ' . $this->currentSnippet; |
|
6506 | + $source = 'Snippet - '.$this->currentSnippet; |
|
6507 | 6507 | } elseif (!empty($this->event->activePlugin)) { |
6508 | - $source = 'Plugin - ' . $this->event->activePlugin; |
|
6508 | + $source = 'Plugin - '.$this->event->activePlugin; |
|
6509 | 6509 | } elseif ($source !== '') { |
6510 | - $source = 'Parser - ' . $source; |
|
6510 | + $source = 'Parser - '.$source; |
|
6511 | 6511 | } elseif ($query !== '') { |
6512 | 6512 | $source = 'SQL Query'; |
6513 | 6513 | } else { |
6514 | 6514 | $source = 'Parser'; |
6515 | 6515 | } |
6516 | 6516 | if ($msg) { |
6517 | - $source .= ' / ' . $msg; |
|
6517 | + $source .= ' / '.$msg; |
|
6518 | 6518 | } |
6519 | 6519 | if (isset($actionName) && !empty($actionName)) { |
6520 | 6520 | $source .= $actionName; |
@@ -6546,12 +6546,12 @@ discard block |
||
6546 | 6546 | |
6547 | 6547 | // Display error |
6548 | 6548 | if (isset($_SESSION['mgrValidated'])) { |
6549 | - echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html><head><title>EVO Content Manager ' . $version . ' » ' . $release_date . '</title> |
|
6549 | + echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html><head><title>EVO Content Manager '.$version.' » '.$release_date.'</title> |
|
6550 | 6550 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
6551 | - <link rel="stylesheet" type="text/css" href="' . $this->config['site_manager_url'] . 'media/style/' . $this->config['manager_theme'] . '/style.css" /> |
|
6551 | + <link rel="stylesheet" type="text/css" href="' . $this->config['site_manager_url'].'media/style/'.$this->config['manager_theme'].'/style.css" /> |
|
6552 | 6552 | <style type="text/css">body { padding:10px; } td {font:inherit;}</style> |
6553 | 6553 | </head><body> |
6554 | - ' . $str . '</body></html>'; |
|
6554 | + ' . $str.'</body></html>'; |
|
6555 | 6555 | |
6556 | 6556 | } else { |
6557 | 6557 | echo 'Error'; |
@@ -6589,7 +6589,7 @@ discard block |
||
6589 | 6589 | switch ($val['type']) { |
6590 | 6590 | case '->': |
6591 | 6591 | case '::': |
6592 | - $functionName = $val['function'] = $val['class'] . $val['type'] . $val['function']; |
|
6592 | + $functionName = $val['function'] = $val['class'].$val['type'].$val['function']; |
|
6593 | 6593 | break; |
6594 | 6594 | default: |
6595 | 6595 | $functionName = $val['function']; |
@@ -6599,7 +6599,7 @@ discard block |
||
6599 | 6599 | $args = array_pad(array(), $_, '$var'); |
6600 | 6600 | $args = implode(", ", $args); |
6601 | 6601 | $modx = &$this; |
6602 | - $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val) { |
|
6602 | + $args = preg_replace_callback('/\$var/', function() use ($modx, &$tmp, $val) { |
|
6603 | 6603 | $arg = $val['args'][$tmp - 1]; |
6604 | 6604 | switch (true) { |
6605 | 6605 | case is_null($arg): { |
@@ -6611,8 +6611,8 @@ discard block |
||
6611 | 6611 | break; |
6612 | 6612 | } |
6613 | 6613 | case is_scalar($arg): { |
6614 | - $out = strlen($arg) > 20 ? 'string $var' . $tmp : ("'" . $this->htmlspecialchars(str_replace("'", |
|
6615 | - "\\'", $arg)) . "'"); |
|
6614 | + $out = strlen($arg) > 20 ? 'string $var'.$tmp : ("'".$this->htmlspecialchars(str_replace("'", |
|
6615 | + "\\'", $arg))."'"); |
|
6616 | 6616 | break; |
6617 | 6617 | } |
6618 | 6618 | case is_bool($arg): { |
@@ -6620,15 +6620,15 @@ discard block |
||
6620 | 6620 | break; |
6621 | 6621 | } |
6622 | 6622 | case is_array($arg): { |
6623 | - $out = 'array $var' . $tmp; |
|
6623 | + $out = 'array $var'.$tmp; |
|
6624 | 6624 | break; |
6625 | 6625 | } |
6626 | 6626 | case is_object($arg): { |
6627 | - $out = get_class($arg) . ' $var' . $tmp; |
|
6627 | + $out = get_class($arg).' $var'.$tmp; |
|
6628 | 6628 | break; |
6629 | 6629 | } |
6630 | 6630 | default: { |
6631 | - $out = '$var' . $tmp; |
|
6631 | + $out = '$var'.$tmp; |
|
6632 | 6632 | } |
6633 | 6633 | } |
6634 | 6634 | $tmp++; |
@@ -6636,8 +6636,8 @@ discard block |
||
6636 | 6636 | return $out; |
6637 | 6637 | }, $args); |
6638 | 6638 | $line = array( |
6639 | - "<strong>" . $functionName . "</strong>(" . $args . ")", |
|
6640 | - $path . " on line " . $val['line'] |
|
6639 | + "<strong>".$functionName."</strong>(".$args.")", |
|
6640 | + $path." on line ".$val['line'] |
|
6641 | 6641 | ); |
6642 | 6642 | $table[] = array(implode("<br />", $line)); |
6643 | 6643 | } |
@@ -6679,7 +6679,7 @@ discard block |
||
6679 | 6679 | $alias = strip_tags($alias); // strip HTML |
6680 | 6680 | $alias = preg_replace('/[^\.A-Za-z0-9 _-]/', '', $alias); // strip non-alphanumeric characters |
6681 | 6681 | $alias = preg_replace('/\s+/', '-', $alias); // convert white-space to dash |
6682 | - $alias = preg_replace('/-+/', '-', $alias); // convert multiple dashes to one |
|
6682 | + $alias = preg_replace('/-+/', '-', $alias); // convert multiple dashes to one |
|
6683 | 6683 | $alias = trim($alias, '-'); // trim excess |
6684 | 6684 | |
6685 | 6685 | return $alias; |
@@ -6696,7 +6696,7 @@ discard block |
||
6696 | 6696 | $precisions = count($sizes) - 1; |
6697 | 6697 | foreach ($sizes as $unit => $bytes) { |
6698 | 6698 | if ($size >= $bytes) { |
6699 | - return number_format($size / $bytes, $precisions) . ' ' . $unit; |
|
6699 | + return number_format($size / $bytes, $precisions).' '.$unit; |
|
6700 | 6700 | } |
6701 | 6701 | $precisions--; |
6702 | 6702 | } |
@@ -6802,10 +6802,10 @@ discard block |
||
6802 | 6802 | |
6803 | 6803 | if (strpos($str, MODX_MANAGER_PATH) === 0) { |
6804 | 6804 | return false; |
6805 | - } elseif (is_file(MODX_BASE_PATH . $str)) { |
|
6806 | - $file_path = MODX_BASE_PATH . $str; |
|
6807 | - } elseif (is_file(MODX_BASE_PATH . "{$tpl_dir}{$str}")) { |
|
6808 | - $file_path = MODX_BASE_PATH . $tpl_dir . $str; |
|
6805 | + } elseif (is_file(MODX_BASE_PATH.$str)) { |
|
6806 | + $file_path = MODX_BASE_PATH.$str; |
|
6807 | + } elseif (is_file(MODX_BASE_PATH."{$tpl_dir}{$str}")) { |
|
6808 | + $file_path = MODX_BASE_PATH.$tpl_dir.$str; |
|
6809 | 6809 | } else { |
6810 | 6810 | return false; |
6811 | 6811 | } |
@@ -6935,7 +6935,7 @@ discard block |
||
6935 | 6935 | $title = 'no title'; |
6936 | 6936 | } |
6937 | 6937 | if (is_array($msg)) { |
6938 | - $msg = '<pre>' . print_r($msg, true) . '</pre>'; |
|
6938 | + $msg = '<pre>'.print_r($msg, true).'</pre>'; |
|
6939 | 6939 | } elseif ($msg === '') { |
6940 | 6940 | $msg = $_SERVER['REQUEST_URI']; |
6941 | 6941 | } |
@@ -6980,7 +6980,7 @@ discard block |
||
6980 | 6980 | if (is_array($SystemAlertMsgQueque)) { |
6981 | 6981 | $title = ''; |
6982 | 6982 | if ($this->name && $this->activePlugin) { |
6983 | - $title = "<div><b>" . $this->activePlugin . "</b> - <span style='color:maroon;'>" . $this->name . "</span></div>"; |
|
6983 | + $title = "<div><b>".$this->activePlugin."</b> - <span style='color:maroon;'>".$this->name."</span></div>"; |
|
6984 | 6984 | } |
6985 | 6985 | $SystemAlertMsgQueque[] = "$title<div style='margin-left:10px;margin-top:3px;'>$msg</div>"; |
6986 | 6986 | } |
@@ -729,7 +729,8 @@ discard block |
||
729 | 729 | } |
730 | 730 | |
731 | 731 | if (preg_match('@^[1-9][0-9]*$@', |
732 | - $q) && !isset($this->documentListing[$q])) { /* we got an ID returned, check to make sure it's not an alias */ |
|
732 | + $q) && !isset($this->documentListing[$q])) { |
|
733 | +/* we got an ID returned, check to make sure it's not an alias */ |
|
733 | 734 | /* FS#476 and FS#308: check that id is valid in terms of virtualDir structure */ |
734 | 735 | if ($this->config['use_alias_path'] == 1) { |
735 | 736 | if (($this->virtualDir != '' && !isset($this->documentListing[$this->virtualDir . '/' . $q]) || ($this->virtualDir == '' && !isset($this->documentListing[$q]))) && (($this->virtualDir != '' && isset($this->documentListing[$this->virtualDir]) && in_array($q, |
@@ -738,7 +739,8 @@ discard block |
||
738 | 739 | $this->documentMethod = 'id'; |
739 | 740 | |
740 | 741 | return $q; |
741 | - } else { /* not a valid id in terms of virtualDir, treat as alias */ |
|
742 | + } else { |
|
743 | +/* not a valid id in terms of virtualDir, treat as alias */ |
|
742 | 744 | $this->documentMethod = 'alias'; |
743 | 745 | |
744 | 746 | return $q; |
@@ -748,7 +750,8 @@ discard block |
||
748 | 750 | |
749 | 751 | return $q; |
750 | 752 | } |
751 | - } else { /* we didn't get an ID back, so instead we assume it's an alias */ |
|
753 | + } else { |
|
754 | +/* we didn't get an ID back, so instead we assume it's an alias */ |
|
752 | 755 | if ($this->config['friendly_alias_urls'] != 1) { |
753 | 756 | $q = $qOrig; |
754 | 757 | } |
@@ -1278,7 +1281,8 @@ discard block |
||
1278 | 1281 | } |
1279 | 1282 | } |
1280 | 1283 | |
1281 | - if (!in_array($fetch, $tags)) { // Avoid double Matches |
|
1284 | + if (!in_array($fetch, $tags)) { |
|
1285 | +// Avoid double Matches |
|
1282 | 1286 | $tags[] = $fetch; // Fetch |
1283 | 1287 | }; |
1284 | 1288 | $fetch = ''; // and reset |
@@ -2089,7 +2093,8 @@ discard block |
||
2089 | 2093 | * @return mixed|string |
2090 | 2094 | */ |
2091 | 2095 | public function _getSGVar($value) |
2092 | - { // Get super globals |
|
2096 | + { |
|
2097 | +// Get super globals |
|
2093 | 2098 | $key = $value; |
2094 | 2099 | $_ = $this->config['enable_filter']; |
2095 | 2100 | $this->config['enable_filter'] = 1; |
@@ -2510,7 +2515,8 @@ discard block |
||
2510 | 2515 | if ($this->config['friendly_urls'] == 1) { |
2511 | 2516 | $aliases = array(); |
2512 | 2517 | if (is_array($this->documentListing)) { |
2513 | - foreach ($this->documentListing as $path => $docid) { // This is big Loop on large site! |
|
2518 | + foreach ($this->documentListing as $path => $docid) { |
|
2519 | +// This is big Loop on large site! |
|
2514 | 2520 | $aliases[$docid] = $path; |
2515 | 2521 | $isfolder[$docid] = $this->aliasListing[$docid]['isfolder']; |
2516 | 2522 | } |
@@ -2545,7 +2551,7 @@ discard block |
||
2545 | 2551 | $pref = $this->config['friendly_url_prefix']; |
2546 | 2552 | $suff = $this->config['friendly_url_suffix']; |
2547 | 2553 | $documentSource = preg_replace_callback($in, |
2548 | - function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff) { |
|
2554 | + function ($m) use ($aliases, $isfolder, $isfriendly, $pref, $suff){ |
|
2549 | 2555 | $modx = evolutionCMS(); |
2550 | 2556 | $thealias = $aliases[$m[1]]; |
2551 | 2557 | $thefolder = $isfolder[$m[1]]; |
@@ -4387,7 +4393,8 @@ discard block |
||
4387 | 4393 | if (isset ($this->snippetCache[$snippetName])) { |
4388 | 4394 | $snippet = $this->snippetCache[$snippetName]; |
4389 | 4395 | $properties = !empty($this->snippetCache[$snippetName . "Props"]) ? $this->snippetCache[$snippetName . "Props"] : ''; |
4390 | - } else { // not in cache so let's check the db |
|
4396 | + } else { |
|
4397 | +// not in cache so let's check the db |
|
4391 | 4398 | $sql = "SELECT ss.`name`, ss.`snippet`, ss.`properties`, sm.properties as `sharedproperties` FROM " . $this->getFullTableName("site_snippets") . " as ss LEFT JOIN " . $this->getFullTableName('site_modules') . " as sm on sm.guid=ss.moduleguid WHERE ss.`name`='" . $this->db->escape($snippetName) . "' AND ss.disabled=0;"; |
4392 | 4399 | $result = $this->db->query($sql); |
4393 | 4400 | if ($this->db->getRecordCount($result) == 1) { |
@@ -5426,12 +5433,16 @@ discard block |
||
5426 | 5433 | return ''; |
5427 | 5434 | } // nothing to register |
5428 | 5435 | if (!is_array($options)) { |
5429 | - if (is_bool($options)) // backward compatibility with old plaintext parameter |
|
5436 | + if (is_bool($options)) { |
|
5437 | + // backward compatibility with old plaintext parameter |
|
5430 | 5438 | { |
5431 | 5439 | $options = array('plaintext' => $options); |
5432 | - } elseif (is_string($options)) // Also allow script name as 2nd param |
|
5440 | + } |
|
5441 | + } elseif (is_string($options)) { |
|
5442 | + // Also allow script name as 2nd param |
|
5433 | 5443 | { |
5434 | 5444 | $options = array('name' => $options); |
5445 | + } |
|
5435 | 5446 | } else { |
5436 | 5447 | $options = array(); |
5437 | 5448 | } |
@@ -5443,7 +5454,8 @@ discard block |
||
5443 | 5454 | unset($overwritepos); // probably unnecessary--just making sure |
5444 | 5455 | |
5445 | 5456 | $useThisVer = true; |
5446 | - if (isset($this->loadedjscripts[$key])) { // a matching script was found |
|
5457 | + if (isset($this->loadedjscripts[$key])) { |
|
5458 | +// a matching script was found |
|
5447 | 5459 | // if existing script is a startup script, make sure the candidate is also a startup script |
5448 | 5460 | if ($this->loadedjscripts[$key]['startup']) { |
5449 | 5461 | $startup = true; |
@@ -5463,7 +5475,8 @@ discard block |
||
5463 | 5475 | // overwrite the old script (the position may be important for dependent scripts) |
5464 | 5476 | $overwritepos = $this->loadedjscripts[$key]['pos']; |
5465 | 5477 | } |
5466 | - } else { // Use the original version |
|
5478 | + } else { |
|
5479 | +// Use the original version |
|
5467 | 5480 | if ($startup == true && $this->loadedjscripts[$key]['startup'] == false) { |
5468 | 5481 | // need to move the exisiting script to the head |
5469 | 5482 | $version = $this->loadedjscripts[$key][$version]; |
@@ -5591,7 +5604,8 @@ discard block |
||
5591 | 5604 | } |
5592 | 5605 | |
5593 | 5606 | $results = null; |
5594 | - foreach ($this->pluginEvent[$evtName] as $pluginName) { // start for loop |
|
5607 | + foreach ($this->pluginEvent[$evtName] as $pluginName) { |
|
5608 | +// start for loop |
|
5595 | 5609 | if ($this->dumpPlugins) { |
5596 | 5610 | $eventtime = $this->getMicroTime(); |
5597 | 5611 | } |
@@ -6161,7 +6175,8 @@ discard block |
||
6161 | 6175 | * @return bool |
6162 | 6176 | */ |
6163 | 6177 | public function isSafeCode($phpcode = '', $safe_functions = '') |
6164 | - { // return true or false |
|
6178 | + { |
|
6179 | +// return true or false |
|
6165 | 6180 | if ($safe_functions == '') { |
6166 | 6181 | return false; |
6167 | 6182 | } |
@@ -6599,7 +6614,7 @@ discard block |
||
6599 | 6614 | $args = array_pad(array(), $_, '$var'); |
6600 | 6615 | $args = implode(", ", $args); |
6601 | 6616 | $modx = &$this; |
6602 | - $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val) { |
|
6617 | + $args = preg_replace_callback('/\$var/', function () use ($modx, &$tmp, $val){ |
|
6603 | 6618 | $arg = $val['args'][$tmp - 1]; |
6604 | 6619 | switch (true) { |
6605 | 6620 | case is_null($arg): { |
@@ -2399,11 +2399,11 @@ discard block |
||
2399 | 2399 | if (isset($this->snippetCache[$snip_name])) { |
2400 | 2400 | $snippetObject['name'] = $snip_name; |
2401 | 2401 | $snippetObject['content'] = $this->snippetCache[$snip_name]; |
2402 | - if (isset($this->snippetCache["{$snip_name}Props"])) { |
|
2403 | - if (!isset($this->snippetCache["{$snip_name}Props"])) { |
|
2404 | - $this->snippetCache["{$snip_name}Props"] = ''; |
|
2402 | + if (isset($this->snippetCache["{$snip_name}props"])) { |
|
2403 | + if (!isset($this->snippetCache["{$snip_name}props"])) { |
|
2404 | + $this->snippetCache["{$snip_name}props"] = ''; |
|
2405 | 2405 | } |
2406 | - $snippetObject['properties'] = $this->snippetCache["{$snip_name}Props"]; |
|
2406 | + $snippetObject['properties'] = $this->snippetCache["{$snip_name}props"]; |
|
2407 | 2407 | } |
2408 | 2408 | } elseif (substr($snip_name, 0, 1) === '@' && isset($this->pluginEvent[trim($snip_name, '@')])) { |
2409 | 2409 | $snippetObject['name'] = trim($snip_name, '@'); |
@@ -2429,7 +2429,7 @@ discard block |
||
2429 | 2429 | $snippetObject['content'] = $snip_content; |
2430 | 2430 | $snippetObject['properties'] = $snip_prop; |
2431 | 2431 | $this->snippetCache[$snip_name] = $snip_content; |
2432 | - $this->snippetCache["{$snip_name}Props"] = $snip_prop; |
|
2432 | + $this->snippetCache["{$snip_name}props"] = $snip_prop; |
|
2433 | 2433 | } |
2434 | 2434 | |
2435 | 2435 | return $snippetObject; |
@@ -3774,7 +3774,7 @@ discard block |
||
3774 | 3774 | } |
3775 | 3775 | // build query |
3776 | 3776 | $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
3777 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
3777 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
3778 | 3778 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "sc.parent = '{$id}' AND ({$access}) GROUP BY sc.id", |
3779 | 3779 | "{$sort} {$dir}"); |
3780 | 3780 | $resourceArray = $this->db->makeArray($result); |
@@ -3817,7 +3817,7 @@ discard block |
||
3817 | 3817 | } |
3818 | 3818 | // build query |
3819 | 3819 | $access = ($this->isFrontend() ? "sc.privateweb=0" : "1='" . $_SESSION['mgrRole'] . "' OR sc.privatemgr=0") . (!$docgrp ? "" : " OR dg.document_group IN ($docgrp)"); |
3820 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
3820 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
3821 | 3821 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", |
3822 | 3822 | "sc.parent = '{$id}' AND sc.published=1 AND sc.deleted=0 AND ({$access}) GROUP BY sc.id", "{$sort} {$dir}"); |
3823 | 3823 | $resourceArray = $this->db->makeArray($result); |
@@ -3882,7 +3882,7 @@ discard block |
||
3882 | 3882 | $tblsc = $this->getFullTableName('site_content'); |
3883 | 3883 | $tbldg = $this->getFullTableName('document_groups'); |
3884 | 3884 | |
3885 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
3885 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
3886 | 3886 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", |
3887 | 3887 | "sc.parent = '{$parentid}' {$published} {$deleted} {$where} AND ({$access}) GROUP BY sc.id", |
3888 | 3888 | ($sort ? "{$sort} {$dir}" : ""), $limit); |
@@ -3959,7 +3959,7 @@ discard block |
||
3959 | 3959 | $tblsc = $this->getFullTableName('site_content'); |
3960 | 3960 | $tbldg = $this->getFullTableName('document_groups'); |
3961 | 3961 | |
3962 | - $result = $this->db->select("DISTINCT {$fields}", "{$tblsc} sc |
|
3962 | + $result = $this->db->select("distinct {$fields}", "{$tblsc} sc |
|
3963 | 3963 | LEFT JOIN {$tbldg} dg on dg.document = sc.id", "(sc.id IN (" . implode(',', |
3964 | 3964 | $ids) . ") {$published} {$deleted} {$where}) AND ({$access}) GROUP BY sc.id", |
3965 | 3965 | ($sort ? "{$sort} {$dir}" : ""), $limit); |
@@ -4561,7 +4561,7 @@ discard block |
||
4561 | 4561 | $template = $doc['content']; |
4562 | 4562 | break; |
4563 | 4563 | case 'SELECT': |
4564 | - $this->db->getValue($this->db->query("SELECT {$template}")); |
|
4564 | + $this->db->getValue($this->db->query("select {$template}")); |
|
4565 | 4565 | break; |
4566 | 4566 | default: |
4567 | 4567 | if (!($template = $this->getChunk($tpl))) { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | /** |
95 | 95 | * @param string $mode |
96 | 96 | * @param string $modifiers |
97 | - * @return bool|string |
|
97 | + * @return false|string |
|
98 | 98 | */ |
99 | 99 | public function _getDelim($mode,$modifiers) { |
100 | 100 | $c = substr($modifiers,0,1); |
@@ -131,6 +131,14 @@ discard block |
||
131 | 131 | return $opt; |
132 | 132 | } |
133 | 133 | } |
134 | + |
|
135 | + /** |
|
136 | + * @param string $mode |
|
137 | + * @param false|string $delim |
|
138 | + * @param string $modifiers |
|
139 | + * |
|
140 | + * @return string |
|
141 | + */ |
|
134 | 142 | public function _getRemainModifiers($mode,$delim,$modifiers) { |
135 | 143 | if($delim) { |
136 | 144 | if($mode=='(') |
@@ -158,6 +166,9 @@ discard block |
||
158 | 166 | return substr($string,strpos($string, $delim)+$len); |
159 | 167 | } |
160 | 168 | |
169 | + /** |
|
170 | + * @param string $modifiers |
|
171 | + */ |
|
161 | 172 | public function splitEachModifiers($modifiers) { |
162 | 173 | $modx = evolutionCMS(); |
163 | 174 | |
@@ -227,6 +238,10 @@ discard block |
||
227 | 238 | return $result; |
228 | 239 | } |
229 | 240 | |
241 | + /** |
|
242 | + * @param string $key |
|
243 | + * @param string $value |
|
244 | + */ |
|
230 | 245 | public function parsePhx($key,$value,$modifiers) |
231 | 246 | { |
232 | 247 | $modx = evolutionCMS(); |
@@ -293,6 +308,10 @@ discard block |
||
293 | 308 | else return true; |
294 | 309 | } |
295 | 310 | |
311 | + /** |
|
312 | + * @param string $cmd |
|
313 | + * @param string $opt |
|
314 | + */ |
|
296 | 315 | public function getValueFromPreset($key, $value, $cmd, $opt) |
297 | 316 | { |
298 | 317 | $modx = evolutionCMS(); |
@@ -978,6 +997,9 @@ discard block |
||
978 | 997 | return $value; |
979 | 998 | } |
980 | 999 | |
1000 | + /** |
|
1001 | + * @param string $cmd |
|
1002 | + */ |
|
981 | 1003 | public function includeMdfFile($cmd) { |
982 | 1004 | $modx = evolutionCMS(); |
983 | 1005 | $key = $this->key; |
@@ -1133,6 +1155,10 @@ discard block |
||
1133 | 1155 | } |
1134 | 1156 | |
1135 | 1157 | // Sets a placeholder variable which can only be access by Modifiers |
1158 | + |
|
1159 | + /** |
|
1160 | + * @param string $value |
|
1161 | + */ |
|
1136 | 1162 | public function setModifiersVariable($key, $value) { |
1137 | 1163 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
1138 | 1164 | } |
@@ -1,8 +1,8 @@ discard block |
||
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')) define('MODX_CORE_PATH', MODX_MANAGER_PATH.'includes/'); |
|
4 | 4 | |
5 | -class MODIFIERS { |
|
5 | +class MODIFIERS{ |
|
6 | 6 | /** |
7 | 7 | * @var array |
8 | 8 | */ |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | * @param string $modifiers |
71 | 71 | * @return bool|mixed|string |
72 | 72 | */ |
73 | - public function phxFilter($key,$value,$modifiers) |
|
73 | + public function phxFilter($key, $value, $modifiers) |
|
74 | 74 | { |
75 | 75 | $modx = evolutionCMS(); |
76 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
76 | + if (substr($modifiers, 0, 3) !== 'id(') $value = $this->parseDocumentSource($value); |
|
77 | 77 | $this->srcValue = $value; |
78 | 78 | $modifiers = trim($modifiers); |
79 | - $modifiers = ':'.trim($modifiers,':'); |
|
80 | - $modifiers = str_replace(array("\r\n","\r"), "\n", $modifiers); |
|
79 | + $modifiers = ':'.trim($modifiers, ':'); |
|
80 | + $modifiers = str_replace(array("\r\n", "\r"), "\n", $modifiers); |
|
81 | 81 | $modifiers = $this->splitEachModifiers($modifiers); |
82 | 82 | |
83 | 83 | $this->placeholders = array(); |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | $this->placeholders['dummy'] = ''; |
86 | 86 | $this->condition = array(); |
87 | 87 | $this->vars = array(); |
88 | - $this->vars['name'] = & $key; |
|
89 | - $value = $this->parsePhx($key,$value,$modifiers); |
|
88 | + $this->vars['name'] = & $key; |
|
89 | + $value = $this->parsePhx($key, $value, $modifiers); |
|
90 | 90 | $this->vars = array(); |
91 | 91 | return $value; |
92 | 92 | } |
@@ -96,13 +96,13 @@ discard block |
||
96 | 96 | * @param string $modifiers |
97 | 97 | * @return bool|string |
98 | 98 | */ |
99 | - public function _getDelim($mode,$modifiers) { |
|
100 | - $c = substr($modifiers,0,1); |
|
101 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
99 | + public function _getDelim($mode, $modifiers){ |
|
100 | + $c = substr($modifiers, 0, 1); |
|
101 | + if (!in_array($c, array('"', "'", '`'))) return false; |
|
102 | 102 | |
103 | - $modifiers = substr($modifiers,1); |
|
104 | - $closure = $mode=='(' ? "{$c})" : $c; |
|
105 | - if(strpos($modifiers, $closure)===false) return false; |
|
103 | + $modifiers = substr($modifiers, 1); |
|
104 | + $closure = $mode == '(' ? "{$c})" : $c; |
|
105 | + if (strpos($modifiers, $closure) === false) return false; |
|
106 | 106 | |
107 | 107 | return $c; |
108 | 108 | } |
@@ -113,101 +113,101 @@ discard block |
||
113 | 113 | * @param string $modifiers |
114 | 114 | * @return bool|string |
115 | 115 | */ |
116 | - public function _getOpt($mode,$delim,$modifiers) { |
|
117 | - if($delim) { |
|
118 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
116 | + public function _getOpt($mode, $delim, $modifiers){ |
|
117 | + if ($delim) { |
|
118 | + if ($mode == '(') return substr($modifiers, 1, strpos($modifiers, $delim.')') - 1); |
|
119 | 119 | |
120 | - return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
|
120 | + return substr($modifiers, 1, strpos($modifiers, $delim, 1) - 1); |
|
121 | 121 | } |
122 | 122 | else { |
123 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
123 | + if ($mode == '(') return substr($modifiers, 0, strpos($modifiers, ')')); |
|
124 | 124 | |
125 | 125 | $chars = str_split($modifiers); |
126 | - $opt=''; |
|
127 | - foreach($chars as $c) { |
|
128 | - if($c==':' || $c==')') break; |
|
129 | - $opt .=$c; |
|
126 | + $opt = ''; |
|
127 | + foreach ($chars as $c) { |
|
128 | + if ($c == ':' || $c == ')') break; |
|
129 | + $opt .= $c; |
|
130 | 130 | } |
131 | 131 | return $opt; |
132 | 132 | } |
133 | 133 | } |
134 | - public function _getRemainModifiers($mode,$delim,$modifiers) { |
|
135 | - if($delim) { |
|
136 | - if($mode=='(') |
|
137 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
134 | + public function _getRemainModifiers($mode, $delim, $modifiers){ |
|
135 | + if ($delim) { |
|
136 | + if ($mode == '(') |
|
137 | + return $this->_fetchContent($modifiers, $delim.')'); |
|
138 | 138 | else { |
139 | 139 | $modifiers = trim($modifiers); |
140 | - $modifiers = substr($modifiers,1); |
|
140 | + $modifiers = substr($modifiers, 1); |
|
141 | 141 | return $this->_fetchContent($modifiers, $delim); |
142 | 142 | } |
143 | 143 | } |
144 | 144 | else { |
145 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
145 | + if ($mode == '(') return $this->_fetchContent($modifiers, ')'); |
|
146 | 146 | $chars = str_split($modifiers); |
147 | - foreach($chars as $c) { |
|
148 | - if($c==':') return $modifiers; |
|
149 | - else $modifiers = substr($modifiers,1); |
|
147 | + foreach ($chars as $c) { |
|
148 | + if ($c == ':') return $modifiers; |
|
149 | + else $modifiers = substr($modifiers, 1); |
|
150 | 150 | } |
151 | 151 | return $modifiers; |
152 | 152 | } |
153 | 153 | } |
154 | 154 | |
155 | - public function _fetchContent($string,$delim) { |
|
155 | + public function _fetchContent($string, $delim){ |
|
156 | 156 | $len = strlen($delim); |
157 | 157 | $string = $this->parseDocumentSource($string); |
158 | - return substr($string,strpos($string, $delim)+$len); |
|
158 | + return substr($string, strpos($string, $delim) + $len); |
|
159 | 159 | } |
160 | 160 | |
161 | - public function splitEachModifiers($modifiers) { |
|
161 | + public function splitEachModifiers($modifiers){ |
|
162 | 162 | $modx = evolutionCMS(); |
163 | 163 | |
164 | 164 | $cmd = ''; |
165 | 165 | $bt = ''; |
166 | 166 | $result = array(); |
167 | - while($bt!==$modifiers) { |
|
167 | + while ($bt !== $modifiers) { |
|
168 | 168 | $bt = $modifiers; |
169 | - $c = substr($modifiers,0,1); |
|
170 | - $modifiers = substr($modifiers,1); |
|
169 | + $c = substr($modifiers, 0, 1); |
|
170 | + $modifiers = substr($modifiers, 1); |
|
171 | 171 | |
172 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
173 | - $c = substr($modifiers,strlen($match[1]),1); |
|
172 | + if ($c === ':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
173 | + $c = substr($modifiers, strlen($match[1]), 1); |
|
174 | 174 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
175 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
176 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
175 | + if ($c === '(') $modifiers = substr($modifiers, strlen($match[1]) + 1); |
|
176 | + else $modifiers = substr($modifiers, strlen($match[1])); |
|
177 | 177 | |
178 | - $delim = $this->_getDelim($c,$modifiers); |
|
179 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
180 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
178 | + $delim = $this->_getDelim($c, $modifiers); |
|
179 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
180 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
181 | 181 | |
182 | - $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
182 | + $result[] = array('cmd'=>trim($match[1]), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
183 | 183 | $cmd = ''; |
184 | 184 | } |
185 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
186 | - $modifiers = substr($modifiers,strlen($match[0])); |
|
187 | - $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
|
185 | + elseif (in_array($c, array('+', '-', '*', '/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
186 | + $modifiers = substr($modifiers, strlen($match[0])); |
|
187 | + $result[] = array('cmd'=>'math', 'opt'=>'%s'.$c.$match[0]); |
|
188 | 188 | $cmd = ''; |
189 | 189 | } |
190 | - elseif($c==='(' || $c==='=') { |
|
190 | + elseif ($c === '(' || $c === '=') { |
|
191 | 191 | $modifiers = $m1 = trim($modifiers); |
192 | - $delim = $this->_getDelim($c,$modifiers); |
|
193 | - $opt = $this->_getOpt($c,$delim,$modifiers); |
|
194 | - $modifiers = trim($this->_getRemainModifiers($c,$delim,$modifiers)); |
|
192 | + $delim = $this->_getDelim($c, $modifiers); |
|
193 | + $opt = $this->_getOpt($c, $delim, $modifiers); |
|
194 | + $modifiers = trim($this->_getRemainModifiers($c, $delim, $modifiers)); |
|
195 | 195 | $debuginfo = "#i=1 #c=[{$c}] #delim=[{$delim}] #m1=[{$m1}] remainMdf=[{$modifiers}]"; |
196 | 196 | |
197 | - $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
|
197 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>$opt, 'debuginfo'=>$debuginfo); |
|
198 | 198 | |
199 | 199 | $cmd = ''; |
200 | 200 | } |
201 | - elseif($c==':') { |
|
201 | + elseif ($c == ':') { |
|
202 | 202 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
203 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
203 | + if ($cmd !== '') $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
204 | 204 | |
205 | 205 | $cmd = ''; |
206 | 206 | } |
207 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
207 | + elseif (trim($modifiers) == '' && trim($cmd) !== '') { |
|
208 | 208 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
209 | 209 | $cmd .= $c; |
210 | - $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
210 | + $result[] = array('cmd'=>trim($cmd), 'opt'=>'', 'debuginfo'=>$debuginfo); |
|
211 | 211 | |
212 | 212 | break; |
213 | 213 | } |
@@ -216,65 +216,65 @@ discard block |
||
216 | 216 | } |
217 | 217 | } |
218 | 218 | |
219 | - if(empty($result)) return array(); |
|
219 | + if (empty($result)) return array(); |
|
220 | 220 | |
221 | - foreach($result as $i=>$a) |
|
221 | + foreach ($result as $i=>$a) |
|
222 | 222 | { |
223 | 223 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
224 | - $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
|
224 | + $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'], $this->placeholders); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | return $result; |
228 | 228 | } |
229 | 229 | |
230 | - public function parsePhx($key,$value,$modifiers) |
|
230 | + public function parsePhx($key, $value, $modifiers) |
|
231 | 231 | { |
232 | 232 | $modx = evolutionCMS(); |
233 | 233 | $lastKey = ''; |
234 | - $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
|
235 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
236 | - if(empty($modifiers)) return ''; |
|
234 | + $cacheKey = md5(sprintf('parsePhx#%s#%s#%s', $key, $value, print_r($modifiers, true))); |
|
235 | + if (isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
236 | + if (empty($modifiers)) return ''; |
|
237 | 237 | |
238 | - foreach($modifiers as $m) |
|
238 | + foreach ($modifiers as $m) |
|
239 | 239 | { |
240 | 240 | $lastKey = strtolower($m['cmd']); |
241 | 241 | } |
242 | - $_ = explode(',',$this->condModifiers); |
|
243 | - if(in_array($lastKey,$_)) |
|
242 | + $_ = explode(',', $this->condModifiers); |
|
243 | + if (in_array($lastKey, $_)) |
|
244 | 244 | { |
245 | - $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
|
246 | - $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
|
245 | + $modifiers[] = array('cmd'=>'then', 'opt'=>'1'); |
|
246 | + $modifiers[] = array('cmd'=>'else', 'opt'=>'0'); |
|
247 | 247 | } |
248 | 248 | |
249 | - foreach($modifiers as $i=>$a) |
|
249 | + foreach ($modifiers as $i=>$a) |
|
250 | 250 | { |
251 | - $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
|
251 | + $value = $this->Filter($key, $value, $a['cmd'], $a['opt']); |
|
252 | 252 | } |
253 | 253 | $this->tmpCache[$cacheKey] = $value; |
254 | 254 | return $value; |
255 | 255 | } |
256 | 256 | |
257 | 257 | // Parser: modifier detection and eXtended processing if needed |
258 | - public function Filter($key, $value, $cmd, $opt='') |
|
258 | + public function Filter($key, $value, $cmd, $opt = '') |
|
259 | 259 | { |
260 | 260 | $modx = evolutionCMS(); |
261 | 261 | |
262 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
262 | + if ($key === 'documentObject') $value = $modx->documentIdentifier; |
|
263 | 263 | $cmd = $this->parseDocumentSource($cmd); |
264 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
264 | + if (preg_match('@^[1-9][/0-9]*$@', $cmd)) |
|
265 | 265 | { |
266 | - if(strpos($cmd,'/')!==false) |
|
267 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
266 | + if (strpos($cmd, '/') !== false) |
|
267 | + $cmd = $this->substr($cmd, strrpos($cmd, '/') + 1); |
|
268 | 268 | $opt = $cmd; |
269 | 269 | $cmd = 'id'; |
270 | 270 | } |
271 | 271 | |
272 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
273 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
272 | + if (isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
273 | + elseif (isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
274 | 274 | else $this->elmName = ''; |
275 | 275 | |
276 | 276 | $cmd = strtolower($cmd); |
277 | - if($this->elmName!=='') |
|
277 | + if ($this->elmName !== '') |
|
278 | 278 | $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
279 | 279 | else |
280 | 280 | $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
@@ -284,12 +284,12 @@ discard block |
||
284 | 284 | return $value; |
285 | 285 | } |
286 | 286 | |
287 | - public function isEmpty($cmd,$value) |
|
287 | + public function isEmpty($cmd, $value) |
|
288 | 288 | { |
289 | - if($value!=='') return false; |
|
289 | + if ($value !== '') return false; |
|
290 | 290 | |
291 | - $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
292 | - if(in_array($cmd,$_)) return false; |
|
291 | + $_ = explode(',', $this->condModifiers.',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
|
292 | + if (in_array($cmd, $_)) return false; |
|
293 | 293 | else return true; |
294 | 294 | } |
295 | 295 | |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | { |
298 | 298 | $modx = evolutionCMS(); |
299 | 299 | |
300 | - if($this->isEmpty($cmd,$value)) return ''; |
|
300 | + if ($this->isEmpty($cmd, $value)) return ''; |
|
301 | 301 | |
302 | 302 | $this->key = $key; |
303 | 303 | $this->value = $value; |
@@ -308,83 +308,83 @@ discard block |
||
308 | 308 | ##### Conditional Modifiers |
309 | 309 | case 'input': |
310 | 310 | case 'if': |
311 | - if(!$opt) return $value; |
|
311 | + if (!$opt) return $value; |
|
312 | 312 | return $opt; |
313 | 313 | case '=': |
314 | 314 | case 'eq': |
315 | 315 | case 'is': |
316 | 316 | case 'equals': |
317 | - $this->condition[] = (int)($value == $opt); break; |
|
317 | + $this->condition[] = (int) ($value == $opt); break; |
|
318 | 318 | case 'neq': |
319 | 319 | case 'ne': |
320 | 320 | case 'notequals': |
321 | 321 | case 'isnot': |
322 | 322 | case 'isnt': |
323 | 323 | case 'not': |
324 | - $this->condition[] = (int)($value != $opt);break; |
|
324 | + $this->condition[] = (int) ($value != $opt); break; |
|
325 | 325 | case '%': |
326 | - $this->condition[] = (int)($value%$opt==0);break; |
|
326 | + $this->condition[] = (int) ($value % $opt == 0); break; |
|
327 | 327 | case 'isempty': |
328 | - $this->condition[] = (int)(empty($value)); break; |
|
328 | + $this->condition[] = (int) (empty($value)); break; |
|
329 | 329 | case 'isntempty': |
330 | 330 | case 'isnotempty': |
331 | - $this->condition[] = (int)(!empty($value)); break; |
|
331 | + $this->condition[] = (int) (!empty($value)); break; |
|
332 | 332 | case '>=': |
333 | 333 | case 'gte': |
334 | 334 | case 'eg': |
335 | 335 | case 'isgte': |
336 | - $this->condition[] = (int)($value >= $opt);break; |
|
336 | + $this->condition[] = (int) ($value >= $opt); break; |
|
337 | 337 | case '<=': |
338 | 338 | case 'lte': |
339 | 339 | case 'el': |
340 | 340 | case 'islte': |
341 | - $this->condition[] = (int)($value <= $opt);break; |
|
341 | + $this->condition[] = (int) ($value <= $opt); break; |
|
342 | 342 | case '>': |
343 | 343 | case 'gt': |
344 | 344 | case 'greaterthan': |
345 | 345 | case 'isgreaterthan': |
346 | 346 | case 'isgt': |
347 | - $this->condition[] = (int)($value > $opt);break; |
|
347 | + $this->condition[] = (int) ($value > $opt); break; |
|
348 | 348 | case '<': |
349 | 349 | case 'lt': |
350 | 350 | case 'lowerthan': |
351 | 351 | case 'islowerthan': |
352 | 352 | case 'islt': |
353 | - $this->condition[] = (int)($value < $opt);break; |
|
353 | + $this->condition[] = (int) ($value < $opt); break; |
|
354 | 354 | case 'find': |
355 | - $this->condition[] = (int)(strpos($value, $opt)!==false);break; |
|
355 | + $this->condition[] = (int) (strpos($value, $opt) !== false); break; |
|
356 | 356 | case 'inarray': |
357 | 357 | case 'in_array': |
358 | 358 | case 'in': |
359 | 359 | $opt = explode(',', $opt); |
360 | - $this->condition[] = (int)(in_array($value, $opt)!==false);break; |
|
360 | + $this->condition[] = (int) (in_array($value, $opt) !== false); break; |
|
361 | 361 | case 'wildcard_match': |
362 | 362 | case 'wcard_match': |
363 | 363 | case 'wildcard': |
364 | 364 | case 'wcard': |
365 | 365 | case 'fnmatch': |
366 | - $this->condition[] = (int)(fnmatch($opt, $value)!==false);break; |
|
366 | + $this->condition[] = (int) (fnmatch($opt, $value) !== false); break; |
|
367 | 367 | case 'is_file': |
368 | 368 | case 'is_dir': |
369 | 369 | case 'file_exists': |
370 | 370 | case 'is_readable': |
371 | 371 | case 'is_writable': |
372 | - if(!$opt) $path = $value; |
|
372 | + if (!$opt) $path = $value; |
|
373 | 373 | else $path = $opt; |
374 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
375 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
376 | - $this->condition[] = (int)($cmd($path)!==false);break; |
|
374 | + if (strpos($path, MODX_MANAGER_PATH) !== false) exit('Can not read core path'); |
|
375 | + if (strpos($path, $modx->config['base_path']) === false) $path = ltrim($path, '/'); |
|
376 | + $this->condition[] = (int) ($cmd($path) !== false); break; |
|
377 | 377 | case 'is_image': |
378 | - if(!$opt) $path = $value; |
|
378 | + if (!$opt) $path = $value; |
|
379 | 379 | else $path = $opt; |
380 | - if(!is_file($path)) {$this->condition[]='0';break;} |
|
380 | + if (!is_file($path)) {$this->condition[] = '0'; break; } |
|
381 | 381 | $_ = getimagesize($path); |
382 | - $this->condition[] = (int)($_[0]);break; |
|
382 | + $this->condition[] = (int) ($_[0]); break; |
|
383 | 383 | case 'regex': |
384 | 384 | case 'preg': |
385 | 385 | case 'preg_match': |
386 | 386 | case 'isinrole': |
387 | - $this->condition[] = (int)(preg_match($opt,$value));break; |
|
387 | + $this->condition[] = (int) (preg_match($opt, $value)); break; |
|
388 | 388 | case 'ir': |
389 | 389 | case 'memberof': |
390 | 390 | case 'mo': |
@@ -392,50 +392,50 @@ discard block |
||
392 | 392 | $this->condition[] = $this->includeMdfFile('memberof'); |
393 | 393 | break; |
394 | 394 | case 'or': |
395 | - $this->condition[] = '||';break; |
|
395 | + $this->condition[] = '||'; break; |
|
396 | 396 | case 'and': |
397 | - $this->condition[] = '&&';break; |
|
397 | + $this->condition[] = '&&'; break; |
|
398 | 398 | case 'show': |
399 | 399 | case 'this': |
400 | - $conditional = implode(' ',$this->condition); |
|
401 | - $isvalid = (int)(eval("return ({$conditional});")); |
|
400 | + $conditional = implode(' ', $this->condition); |
|
401 | + $isvalid = (int) (eval("return ({$conditional});")); |
|
402 | 402 | if ($isvalid) return $this->srcValue; |
403 | 403 | return NULL; |
404 | 404 | case 'then': |
405 | - $conditional = implode(' ',$this->condition); |
|
406 | - $isvalid = (int)eval("return ({$conditional});"); |
|
405 | + $conditional = implode(' ', $this->condition); |
|
406 | + $isvalid = (int) eval("return ({$conditional});"); |
|
407 | 407 | if ($isvalid) return $opt; |
408 | 408 | return null; |
409 | 409 | case 'else': |
410 | - $conditional = implode(' ',$this->condition); |
|
411 | - $isvalid = (int)eval("return ({$conditional});"); |
|
410 | + $conditional = implode(' ', $this->condition); |
|
411 | + $isvalid = (int) eval("return ({$conditional});"); |
|
412 | 412 | if (!$isvalid) return $opt; |
413 | 413 | break; |
414 | 414 | case 'select': |
415 | 415 | case 'switch': |
416 | - $raw = explode('&',$opt); |
|
416 | + $raw = explode('&', $opt); |
|
417 | 417 | $map = array(); |
418 | 418 | $c = count($raw); |
419 | - for($m=0; $m<$c; $m++) { |
|
420 | - $mi = explode('=',$raw[$m],2); |
|
419 | + for ($m = 0; $m < $c; $m++) { |
|
420 | + $mi = explode('=', $raw[$m], 2); |
|
421 | 421 | $map[$mi[0]] = $mi[1]; |
422 | 422 | } |
423 | - if(isset($map[$value])) return $map[$value]; |
|
423 | + if (isset($map[$value])) return $map[$value]; |
|
424 | 424 | else return ''; |
425 | 425 | ##### End of Conditional Modifiers |
426 | 426 | |
427 | 427 | ##### Encode / Decode / Hash / Escape |
428 | 428 | case 'htmlent': |
429 | 429 | case 'htmlentities': |
430 | - return htmlentities($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
430 | + return htmlentities($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
431 | 431 | case 'html_entity_decode': |
432 | 432 | case 'decode_html': |
433 | 433 | case 'html_decode': |
434 | - return html_entity_decode($value,ENT_QUOTES,$modx->config['modx_charset']); |
|
434 | + return html_entity_decode($value, ENT_QUOTES, $modx->config['modx_charset']); |
|
435 | 435 | case 'esc': |
436 | 436 | case 'escape': |
437 | 437 | $value = preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
438 | - return str_replace(array('[', ']', '`'),array('[', ']', '`'),$value); |
|
438 | + return str_replace(array('[', ']', '`'), array('[', ']', '`'), $value); |
|
439 | 439 | case 'sql_escape': |
440 | 440 | case 'encode_js': |
441 | 441 | return $modx->db->escape($value); |
@@ -445,39 +445,39 @@ discard block |
||
445 | 445 | case 'html_encode': |
446 | 446 | return preg_replace('/&(#[0-9]+|[a-z]+);/i', '&$1;', htmlspecialchars($value, ENT_QUOTES, $modx->config['modx_charset'])); |
447 | 447 | case 'spam_protect': |
448 | - return str_replace(array('@','.'),array('@','.'),$value); |
|
448 | + return str_replace(array('@', '.'), array('@', '.'), $value); |
|
449 | 449 | case 'strip': |
450 | - if($opt==='') $opt = ' '; |
|
450 | + if ($opt === '') $opt = ' '; |
|
451 | 451 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
452 | 452 | case 'strip_linefeeds': |
453 | - return str_replace(array("\n","\r"), '', $value); |
|
453 | + return str_replace(array("\n", "\r"), '', $value); |
|
454 | 454 | case 'notags': |
455 | 455 | case 'strip_tags': |
456 | 456 | case 'remove_html': |
457 | - if($opt!=='') |
|
457 | + if ($opt !== '') |
|
458 | 458 | { |
459 | 459 | $param = array(); |
460 | - foreach(explode(',',$opt) as $v) |
|
460 | + foreach (explode(',', $opt) as $v) |
|
461 | 461 | { |
462 | - $v = trim($v,'</> '); |
|
462 | + $v = trim($v, '</> '); |
|
463 | 463 | $param[] = "<{$v}>"; |
464 | 464 | } |
465 | - $params = implode(',',$param); |
|
465 | + $params = implode(',', $param); |
|
466 | 466 | } |
467 | 467 | else $params = ''; |
468 | - if(!strpos($params,'<br>')===false) { |
|
469 | - $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
|
470 | - $value = preg_replace('@<br[ /]*>@',"\n",$value); |
|
468 | + if (!strpos($params, '<br>') === false) { |
|
469 | + $value = preg_replace('@(<br[ /]*>)\n@', '$1', $value); |
|
470 | + $value = preg_replace('@<br[ /]*>@', "\n", $value); |
|
471 | 471 | } |
472 | - return $this->strip_tags($value,$params); |
|
472 | + return $this->strip_tags($value, $params); |
|
473 | 473 | case 'urlencode': |
474 | 474 | case 'url_encode': |
475 | 475 | case 'encode_url': |
476 | 476 | return urlencode($value); |
477 | 477 | case 'base64_decode': |
478 | - if($opt!=='false') $opt = true; |
|
478 | + if ($opt !== 'false') $opt = true; |
|
479 | 479 | else $opt = false; |
480 | - return base64_decode($value,$opt); |
|
480 | + return base64_decode($value, $opt); |
|
481 | 481 | case 'encode_sha1': $cmd = 'sha1'; |
482 | 482 | case 'addslashes': |
483 | 483 | case 'urldecode': |
@@ -501,18 +501,18 @@ discard block |
||
501 | 501 | case 'upper_case': |
502 | 502 | return $this->strtoupper($value); |
503 | 503 | case 'capitalize': |
504 | - $_ = explode(' ',$value); |
|
505 | - foreach($_ as $i=>$v) |
|
504 | + $_ = explode(' ', $value); |
|
505 | + foreach ($_ as $i=>$v) |
|
506 | 506 | { |
507 | 507 | $_[$i] = ucfirst($v); |
508 | 508 | } |
509 | - return implode(' ',$_); |
|
509 | + return implode(' ', $_); |
|
510 | 510 | case 'zenhan': |
511 | - if(empty($opt)) $opt='VKas'; |
|
512 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
511 | + if (empty($opt)) $opt = 'VKas'; |
|
512 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
513 | 513 | case 'hanzen': |
514 | - if(empty($opt)) $opt='VKAS'; |
|
515 | - return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
|
514 | + if (empty($opt)) $opt = 'VKAS'; |
|
515 | + return mb_convert_kana($value, $opt, $modx->config['modx_charset']); |
|
516 | 516 | case 'str_shuffle': |
517 | 517 | case 'shuffle': |
518 | 518 | return $this->str_shuffle($value); |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | return $this->strlen($value); |
527 | 527 | case 'count_words': |
528 | 528 | $value = trim($value); |
529 | - return count(preg_split('/\s+/',$value)); |
|
529 | + return count(preg_split('/\s+/', $value)); |
|
530 | 530 | case 'str_word_count': |
531 | 531 | case 'word_count': |
532 | 532 | case 'wordcount': |
@@ -534,55 +534,55 @@ discard block |
||
534 | 534 | case 'count_paragraphs': |
535 | 535 | $value = trim($value); |
536 | 536 | $value = preg_replace('/\r/', '', $value); |
537 | - return count(preg_split('/\n+/',$value)); |
|
537 | + return count(preg_split('/\n+/', $value)); |
|
538 | 538 | case 'strpos': |
539 | - if($opt!=0&&empty($opt)) return $value; |
|
540 | - return $this->strpos($value,$opt); |
|
539 | + if ($opt != 0 && empty($opt)) return $value; |
|
540 | + return $this->strpos($value, $opt); |
|
541 | 541 | case 'wordwrap': |
542 | 542 | // default: 70 |
543 | - $wrapat = (int)$opt > 0 ? (int)$opt : 70; |
|
543 | + $wrapat = (int) $opt > 0 ? (int) $opt : 70; |
|
544 | 544 | if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
545 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
545 | + else return preg_replace("@(\b\w+\b)@e", "wordwrap('\\1',\$wrapat,' ',1)", $value); |
|
546 | 546 | case 'wrap_text': |
547 | - $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
|
548 | - if($modx->config['manager_language']==='japanese-utf8') { |
|
547 | + $width = preg_match('/^[1-9][0-9]*$/', $opt) ? $opt : 70; |
|
548 | + if ($modx->config['manager_language'] === 'japanese-utf8') { |
|
549 | 549 | $chunk = array(); |
550 | - $bt=''; |
|
551 | - while($bt!=$value) { |
|
550 | + $bt = ''; |
|
551 | + while ($bt != $value) { |
|
552 | 552 | $bt = $value; |
553 | - if($this->strlen($value)<$width) { |
|
553 | + if ($this->strlen($value) < $width) { |
|
554 | 554 | $chunk[] = $value; |
555 | 555 | break; |
556 | 556 | } |
557 | - $chunk[] = $this->substr($value,0,$width); |
|
558 | - $value = $this->substr($value,$width); |
|
557 | + $chunk[] = $this->substr($value, 0, $width); |
|
558 | + $value = $this->substr($value, $width); |
|
559 | 559 | } |
560 | - return implode("\n",$chunk); |
|
560 | + return implode("\n", $chunk); |
|
561 | 561 | } |
562 | 562 | else |
563 | - return wordwrap($value,$width,"\n",true); |
|
563 | + return wordwrap($value, $width, "\n", true); |
|
564 | 564 | case 'substr': |
565 | - if(empty($opt)) break; |
|
566 | - if(strpos($opt,',')!==false) { |
|
567 | - list($b,$e) = explode(',',$opt,2); |
|
568 | - return $this->substr($value,$b,(int)$e); |
|
565 | + if (empty($opt)) break; |
|
566 | + if (strpos($opt, ',') !== false) { |
|
567 | + list($b, $e) = explode(',', $opt, 2); |
|
568 | + return $this->substr($value, $b, (int) $e); |
|
569 | 569 | } |
570 | - else return $this->substr($value,$opt); |
|
570 | + else return $this->substr($value, $opt); |
|
571 | 571 | case 'limit': |
572 | 572 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
573 | - if(strpos($opt,'+')!==false) |
|
574 | - list($len,$str) = explode('+',$opt,2); |
|
573 | + if (strpos($opt, '+') !== false) |
|
574 | + list($len, $str) = explode('+', $opt, 2); |
|
575 | 575 | else { |
576 | 576 | $len = $opt; |
577 | 577 | $str = ''; |
578 | 578 | } |
579 | - if($len==='') $len = 100; |
|
580 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
581 | - if(preg_match('/^[1-9][0-9]*$/',$len)) { |
|
582 | - return $this->substr($value,0,$len) . $str; |
|
579 | + if ($len === '') $len = 100; |
|
580 | + if (abs($len) > $this->strlen($value)) $str = ''; |
|
581 | + if (preg_match('/^[1-9][0-9]*$/', $len)) { |
|
582 | + return $this->substr($value, 0, $len).$str; |
|
583 | 583 | } |
584 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
585 | - return $str . $this->substr($value,$len); |
|
584 | + elseif (preg_match('/^\-[1-9][0-9]*$/', $len)) { |
|
585 | + return $str.$this->substr($value, $len); |
|
586 | 586 | } |
587 | 587 | break; |
588 | 588 | case 'summary': |
@@ -591,81 +591,81 @@ discard block |
||
591 | 591 | return $this->includeMdfFile('summary'); |
592 | 592 | case 'replace': |
593 | 593 | case 'str_replace': |
594 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
595 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
596 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
597 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
598 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
594 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
595 | + if (substr_count($opt, ',') == 1) $delim = ','; |
|
596 | + elseif (substr_count($opt, '|') == 1) $delim = '|'; |
|
597 | + elseif (substr_count($opt, '=>') == 1) $delim = '=>'; |
|
598 | + elseif (substr_count($opt, '/') == 1) $delim = '/'; |
|
599 | 599 | else break; |
600 | - list($s,$r) = explode($delim,$opt); |
|
601 | - if($value!=='') return str_replace($s,$r,$value); |
|
600 | + list($s, $r) = explode($delim, $opt); |
|
601 | + if ($value !== '') return str_replace($s, $r, $value); |
|
602 | 602 | break; |
603 | 603 | case 'replace_to': |
604 | 604 | case 'tpl': |
605 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
605 | + if ($value !== '') return str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $value, $opt); |
|
606 | 606 | break; |
607 | 607 | case 'eachtpl': |
608 | - $value = explode('||',$value); |
|
608 | + $value = explode('||', $value); |
|
609 | 609 | $_ = array(); |
610 | - foreach($value as $v) { |
|
611 | - $_[] = str_replace(array('[+value+]','[+output+]','{value}','%s'),$v,$opt); |
|
610 | + foreach ($value as $v) { |
|
611 | + $_[] = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), $v, $opt); |
|
612 | 612 | } |
613 | 613 | return implode("\n", $_); |
614 | 614 | case 'array_pop': |
615 | 615 | case 'array_shift': |
616 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
616 | + if (strpos($value, '||') !== false) $delim = '||'; |
|
617 | 617 | else $delim = ','; |
618 | - return $cmd(explode($delim,$value)); |
|
618 | + return $cmd(explode($delim, $value)); |
|
619 | 619 | case 'preg_replace': |
620 | 620 | case 'regex_replace': |
621 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
622 | - list($s,$r) = explode(',',$opt,2); |
|
623 | - if($value!=='') return preg_replace($s,$r,$value); |
|
621 | + if (empty($opt) || strpos($opt, ',') === false) break; |
|
622 | + list($s, $r) = explode(',', $opt, 2); |
|
623 | + if ($value !== '') return preg_replace($s, $r, $value); |
|
624 | 624 | break; |
625 | 625 | case 'cat': |
626 | 626 | case 'concatenate': |
627 | 627 | case '.': |
628 | - if($value!=='') return $value . $opt; |
|
628 | + if ($value !== '') return $value.$opt; |
|
629 | 629 | break; |
630 | 630 | case 'sprintf': |
631 | 631 | case 'string_format': |
632 | - if($value!=='') return sprintf($opt,$value); |
|
632 | + if ($value !== '') return sprintf($opt, $value); |
|
633 | 633 | break; |
634 | 634 | case 'number_format': |
635 | - if($opt=='') $opt = 0; |
|
636 | - return number_format($value,$opt); |
|
635 | + if ($opt == '') $opt = 0; |
|
636 | + return number_format($value, $opt); |
|
637 | 637 | case 'money_format': |
638 | - setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
|
639 | - if($value!=='') return money_format($opt,(double)$value); |
|
638 | + setlocale(LC_MONETARY, setlocale(LC_TIME, 0)); |
|
639 | + if ($value !== '') return money_format($opt, (double) $value); |
|
640 | 640 | break; |
641 | 641 | case 'tobool': |
642 | 642 | return boolval($value); |
643 | 643 | case 'nl2lf': |
644 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
644 | + if ($value !== '') return str_replace(array("\r\n", "\n", "\r"), '\n', $value); |
|
645 | 645 | break; |
646 | 646 | case 'br2nl': |
647 | 647 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
648 | 648 | case 'nl2br': |
649 | 649 | if (version_compare(PHP_VERSION, '5.3.0', '<')) |
650 | 650 | return nl2br($value); |
651 | - if($opt!=='') |
|
651 | + if ($opt !== '') |
|
652 | 652 | { |
653 | 653 | $opt = trim($opt); |
654 | 654 | $opt = strtolower($opt); |
655 | - if($opt==='false') $opt = false; |
|
656 | - elseif($opt==='0') $opt = false; |
|
655 | + if ($opt === 'false') $opt = false; |
|
656 | + elseif ($opt === '0') $opt = false; |
|
657 | 657 | else $opt = true; |
658 | 658 | } |
659 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
659 | + elseif (isset($modx->config['mce_element_format']) && $modx->config['mce_element_format'] === 'html') |
|
660 | 660 | $opt = false; |
661 | 661 | else $opt = true; |
662 | - return nl2br($value,$opt); |
|
662 | + return nl2br($value, $opt); |
|
663 | 663 | case 'ltrim': |
664 | 664 | case 'rtrim': |
665 | 665 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
666 | - if($opt==='') |
|
666 | + if ($opt === '') |
|
667 | 667 | return $cmd($value); |
668 | - else return $cmd($value,$opt); |
|
668 | + else return $cmd($value, $opt); |
|
669 | 669 | // These are all straight wrappers for PHP functions |
670 | 670 | case 'ucfirst': |
671 | 671 | case 'lcfirst': |
@@ -676,58 +676,58 @@ discard block |
||
676 | 676 | case 'strftime': |
677 | 677 | case 'date': |
678 | 678 | case 'dateformat': |
679 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
680 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
681 | - if(strpos($opt,'%')!==false) |
|
682 | - return strftime($opt,0+$value); |
|
679 | + if (empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
680 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
681 | + if (strpos($opt, '%') !== false) |
|
682 | + return strftime($opt, 0 + $value); |
|
683 | 683 | else |
684 | - return date($opt,0+$value); |
|
684 | + return date($opt, 0 + $value); |
|
685 | 685 | case 'time': |
686 | - if(empty($opt)) $opt = '%H:%M'; |
|
687 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
688 | - return strftime($opt,0+$value); |
|
686 | + if (empty($opt)) $opt = '%H:%M'; |
|
687 | + if (!preg_match('@^[0-9]+$@', $value)) $value = strtotime($value); |
|
688 | + return strftime($opt, 0 + $value); |
|
689 | 689 | case 'strtotime': |
690 | 690 | return strtotime($value); |
691 | 691 | ##### mathematical function |
692 | 692 | case 'toint': |
693 | - return (int)$value; |
|
693 | + return (int) $value; |
|
694 | 694 | case 'tofloat': |
695 | 695 | return floatval($value); |
696 | 696 | case 'round': |
697 | - if(!$opt) $opt = 0; |
|
698 | - return $cmd($value,$opt); |
|
697 | + if (!$opt) $opt = 0; |
|
698 | + return $cmd($value, $opt); |
|
699 | 699 | case 'max': |
700 | 700 | case 'min': |
701 | - return $cmd(explode(',',$value)); |
|
701 | + return $cmd(explode(',', $value)); |
|
702 | 702 | case 'floor': |
703 | 703 | case 'ceil': |
704 | 704 | case 'abs': |
705 | 705 | return $cmd($value); |
706 | 706 | case 'math': |
707 | 707 | case 'calc': |
708 | - $value = (int)$value; |
|
709 | - if(empty($value)) $value = '0'; |
|
710 | - $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
|
711 | - $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
|
712 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
713 | - $filter = str_replace('?',$value,$filter); |
|
708 | + $value = (int) $value; |
|
709 | + if (empty($value)) $value = '0'; |
|
710 | + $filter = str_replace(array('[+value+]', '[+output+]', '{value}', '%s'), '?', $opt); |
|
711 | + $filter = preg_replace('@([a-zA-Z\n\r\t\s])@', '', $filter); |
|
712 | + if (strpos($filter, '?') === false) $filter = "?{$filter}"; |
|
713 | + $filter = str_replace('?', $value, $filter); |
|
714 | 714 | return eval("return {$filter};"); |
715 | 715 | case 'count': |
716 | - if($value=='') return 0; |
|
717 | - $value = explode(',',$value); |
|
716 | + if ($value == '') return 0; |
|
717 | + $value = explode(',', $value); |
|
718 | 718 | return count($value); |
719 | 719 | case 'sort': |
720 | 720 | case 'rsort': |
721 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
721 | + if (strpos($value, "\n") !== false) $delim = "\n"; |
|
722 | 722 | else $delim = ','; |
723 | - $swap = explode($delim,$value); |
|
724 | - if(!$opt) $opt = SORT_REGULAR; |
|
723 | + $swap = explode($delim, $value); |
|
724 | + if (!$opt) $opt = SORT_REGULAR; |
|
725 | 725 | else $opt = constant($opt); |
726 | - $cmd($swap,$opt); |
|
727 | - return implode($delim,$swap); |
|
726 | + $cmd($swap, $opt); |
|
727 | + return implode($delim, $swap); |
|
728 | 728 | ##### Resource fields |
729 | 729 | case 'id': |
730 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
730 | + if ($opt) return $this->getDocumentObject($opt, $key); |
|
731 | 731 | break; |
732 | 732 | case 'type': |
733 | 733 | case 'contenttype': |
@@ -764,36 +764,36 @@ discard block |
||
764 | 764 | case 'privatemgr': |
765 | 765 | case 'content_dispo': |
766 | 766 | case 'hidemenu': |
767 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
768 | - return $this->getDocumentObject($value,$cmd); |
|
767 | + if ($cmd === 'contenttype') $cmd = 'contentType'; |
|
768 | + return $this->getDocumentObject($value, $cmd); |
|
769 | 769 | case 'title': |
770 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
771 | - $longtitle = $this->getDocumentObject($value,'longtitle'); |
|
770 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
771 | + $longtitle = $this->getDocumentObject($value, 'longtitle'); |
|
772 | 772 | return $longtitle ? $longtitle : $pagetitle; |
773 | 773 | case 'shorttitle': |
774 | - $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
|
775 | - $menutitle = $this->getDocumentObject($value,'menutitle'); |
|
774 | + $pagetitle = $this->getDocumentObject($value, 'pagetitle'); |
|
775 | + $menutitle = $this->getDocumentObject($value, 'menutitle'); |
|
776 | 776 | return $menutitle ? $menutitle : $pagetitle; |
777 | 777 | case 'templatename': |
778 | - $rs = $modx->db->select('templatename','[+prefix+]site_templates',"id='{$value}'"); |
|
778 | + $rs = $modx->db->select('templatename', '[+prefix+]site_templates', "id='{$value}'"); |
|
779 | 779 | $templateName = $modx->db->getValue($rs); |
780 | 780 | return !$templateName ? '(blank)' : $templateName; |
781 | 781 | case 'getfield': |
782 | - if(!$opt) $opt = 'content'; |
|
783 | - return $modx->getField($opt,$value); |
|
782 | + if (!$opt) $opt = 'content'; |
|
783 | + return $modx->getField($opt, $value); |
|
784 | 784 | case 'children': |
785 | 785 | case 'childids': |
786 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
786 | + if ($value == '') $value = 0; // 値がない場合はルートと見なす |
|
787 | 787 | $published = 1; |
788 | - if($opt=='') $opt = 'page'; |
|
789 | - $_ = explode(',',$opt); |
|
788 | + if ($opt == '') $opt = 'page'; |
|
789 | + $_ = explode(',', $opt); |
|
790 | 790 | $where = array(); |
791 | - foreach($_ as $opt) { |
|
792 | - switch(trim($opt)) { |
|
791 | + foreach ($_ as $opt) { |
|
792 | + switch (trim($opt)) { |
|
793 | 793 | case 'page'; case '!folder'; case '!isfolder': $where[] = 'sc.isfolder=0'; break; |
794 | 794 | case 'folder'; case 'isfolder': $where[] = 'sc.isfolder=1'; break; |
795 | - case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
796 | - case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
795 | + case 'menu'; case 'show_menu': $where[] = 'sc.hidemenu=0'; break; |
|
796 | + case '!menu'; case '!show_menu': $where[] = 'sc.hidemenu=1'; break; |
|
797 | 797 | case 'published': $published = 1; break; |
798 | 798 | case '!published': $published = 0; break; |
799 | 799 | } |
@@ -801,69 +801,69 @@ discard block |
||
801 | 801 | $where = implode(' AND ', $where); |
802 | 802 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
803 | 803 | $result = array(); |
804 | - foreach((array)$children as $child){ |
|
804 | + foreach ((array) $children as $child) { |
|
805 | 805 | $result[] = $child['id']; |
806 | 806 | } |
807 | 807 | return implode(',', $result); |
808 | 808 | case 'fullurl': |
809 | - if(!is_numeric($value)) return $value; |
|
809 | + if (!is_numeric($value)) return $value; |
|
810 | 810 | return $modx->makeUrl($value); |
811 | 811 | case 'makeurl': |
812 | - if(!is_numeric($value)) return $value; |
|
813 | - if(!$opt) $opt = 'full'; |
|
814 | - return $modx->makeUrl($value,'','',$opt); |
|
812 | + if (!is_numeric($value)) return $value; |
|
813 | + if (!$opt) $opt = 'full'; |
|
814 | + return $modx->makeUrl($value, '', '', $opt); |
|
815 | 815 | |
816 | 816 | ##### File system |
817 | 817 | case 'getimageinfo': |
818 | 818 | case 'imageinfo': |
819 | - if(!is_file($value)) return ''; |
|
819 | + if (!is_file($value)) return ''; |
|
820 | 820 | $_ = getimagesize($value); |
821 | - if(!$_[0]) return ''; |
|
821 | + if (!$_[0]) return ''; |
|
822 | 822 | $info['width'] = $_[0]; |
823 | 823 | $info['height'] = $_[1]; |
824 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
825 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
824 | + if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
825 | + elseif ($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
826 | 826 | else $info['aspect'] = 'square'; |
827 | - switch($_[2]) { |
|
827 | + switch ($_[2]) { |
|
828 | 828 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
829 | 829 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
830 | 830 | case IMAGETYPE_PNG : $info['type'] = 'png'; break; |
831 | 831 | default : $info['type'] = 'unknown'; |
832 | 832 | } |
833 | 833 | $info['attrib'] = $_[3]; |
834 | - switch($opt) { |
|
834 | + switch ($opt) { |
|
835 | 835 | case 'width' : return $info['width']; |
836 | 836 | case 'height': return $info['height']; |
837 | 837 | case 'aspect': return $info['aspect']; |
838 | 838 | case 'type' : return $info['type']; |
839 | 839 | case 'attrib': return $info['attrib']; |
840 | - default : return print_r($info,true); |
|
840 | + default : return print_r($info, true); |
|
841 | 841 | } |
842 | 842 | |
843 | 843 | case 'file_get_contents': |
844 | 844 | case 'readfile': |
845 | - if(!is_file($value)) return $value; |
|
845 | + if (!is_file($value)) return $value; |
|
846 | 846 | $value = realpath($value); |
847 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
848 | - $ext = strtolower(substr($value,-4)); |
|
849 | - if($ext==='.php') exit('Can not read php file'); |
|
850 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
847 | + if (strpos($value, MODX_MANAGER_PATH) !== false) exit('Can not read core file'); |
|
848 | + $ext = strtolower(substr($value, -4)); |
|
849 | + if ($ext === '.php') exit('Can not read php file'); |
|
850 | + if ($ext === '.cgi') exit('Can not read cgi file'); |
|
851 | 851 | return file_get_contents($value); |
852 | 852 | case 'filesize': |
853 | - if($value == '') return ''; |
|
853 | + if ($value == '') return ''; |
|
854 | 854 | $filename = $value; |
855 | 855 | |
856 | 856 | $site_url = $modx->config['site_url']; |
857 | - if(strpos($filename,$site_url) === 0) |
|
858 | - $filename = substr($filename,0,strlen($site_url)); |
|
859 | - $filename = trim($filename,'/'); |
|
857 | + if (strpos($filename, $site_url) === 0) |
|
858 | + $filename = substr($filename, 0, strlen($site_url)); |
|
859 | + $filename = trim($filename, '/'); |
|
860 | 860 | |
861 | - $opt = trim($opt,'/'); |
|
862 | - if($opt!=='') $opt .= '/'; |
|
861 | + $opt = trim($opt, '/'); |
|
862 | + if ($opt !== '') $opt .= '/'; |
|
863 | 863 | |
864 | 864 | $filename = MODX_BASE_PATH.$opt.$filename; |
865 | 865 | |
866 | - if(is_file($filename)){ |
|
866 | + if (is_file($filename)) { |
|
867 | 867 | clearstatcache(); |
868 | 868 | $size = filesize($filename); |
869 | 869 | return $size; |
@@ -896,10 +896,10 @@ discard block |
||
896 | 896 | $this->opt = $cmd; |
897 | 897 | return $this->includeMdfFile('moduser'); |
898 | 898 | case 'userinfo': |
899 | - if(empty($opt)) $this->opt = 'username'; |
|
899 | + if (empty($opt)) $this->opt = 'username'; |
|
900 | 900 | return $this->includeMdfFile('moduser'); |
901 | 901 | case 'webuserinfo': |
902 | - if(empty($opt)) $this->opt = 'username'; |
|
902 | + if (empty($opt)) $this->opt = 'username'; |
|
903 | 903 | $this->value = -$value; |
904 | 904 | return $this->includeMdfFile('moduser'); |
905 | 905 | ##### Special functions |
@@ -910,27 +910,27 @@ discard block |
||
910 | 910 | case 'ifnotempty': |
911 | 911 | if (!empty($value)) return $opt; break; |
912 | 912 | case 'datagrid': |
913 | - include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
|
913 | + include_once(MODX_CORE_PATH.'controls/datagrid.class.php'); |
|
914 | 914 | $grd = new DataGrid(null, trim($value)); |
915 | 915 | $grd->itemStyle = ''; |
916 | 916 | $grd->altItemStyle = ''; |
917 | - $pos = strpos($value,"\n"); |
|
918 | - if($pos) $_ = substr($value,0,$pos); |
|
917 | + $pos = strpos($value, "\n"); |
|
918 | + if ($pos) $_ = substr($value, 0, $pos); |
|
919 | 919 | else $_ = $pos; |
920 | - $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
|
920 | + $grd->cdelim = strpos($_, "\t") !== false ? 'tab' : ','; |
|
921 | 921 | return $grd->render(); |
922 | 922 | case 'rotate': |
923 | 923 | case 'evenodd': |
924 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
924 | + if (strpos($opt, ',') === false) $opt = 'odd,even'; |
|
925 | 925 | $_ = explode(',', $opt); |
926 | 926 | $c = count($_); |
927 | 927 | $i = $value + $c; |
928 | 928 | $i = $i % $c; |
929 | 929 | return $_[$i]; |
930 | 930 | case 'takeval': |
931 | - $arr = explode(",",$opt); |
|
931 | + $arr = explode(",", $opt); |
|
932 | 932 | $idx = $value; |
933 | - if(!is_numeric($idx)) return $value; |
|
933 | + if (!is_numeric($idx)) return $value; |
|
934 | 934 | return $arr[$idx]; |
935 | 935 | case 'getimage': |
936 | 936 | return $this->includeMdfFile('getimage'); |
@@ -938,17 +938,17 @@ discard block |
||
938 | 938 | return $modx->nicesize($value); |
939 | 939 | case 'googlemap': |
940 | 940 | case 'googlemaps': |
941 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
941 | + if (empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
942 | 942 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
943 | 943 | $ph['style'] = $opt; |
944 | 944 | $ph['value'] = $value; |
945 | - return $modx->parseText($tpl,$ph); |
|
945 | + return $modx->parseText($tpl, $ph); |
|
946 | 946 | case 'youtube': |
947 | 947 | case 'youtube16x9': |
948 | - if(empty($opt)) $opt = 560; |
|
949 | - $h = round($opt*0.5625); |
|
948 | + if (empty($opt)) $opt = 560; |
|
949 | + $h = round($opt * 0.5625); |
|
950 | 950 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
951 | - return sprintf($tpl,$opt,$h,$value); |
|
951 | + return sprintf($tpl, $opt, $h, $value); |
|
952 | 952 | //case 'youtube4x3':%s*0.75+25 |
953 | 953 | case 'setvar': |
954 | 954 | $modx->placeholders[$opt] = $value; |
@@ -978,7 +978,7 @@ discard block |
||
978 | 978 | return $value; |
979 | 979 | } |
980 | 980 | |
981 | - public function includeMdfFile($cmd) { |
|
981 | + public function includeMdfFile($cmd){ |
|
982 | 982 | $modx = evolutionCMS(); |
983 | 983 | $key = $this->key; |
984 | 984 | $value = $this->value; |
@@ -989,54 +989,54 @@ discard block |
||
989 | 989 | public function getValueFromElement($key, $value, $cmd, $opt) |
990 | 990 | { |
991 | 991 | $modx = evolutionCMS(); |
992 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
992 | + if (isset($modx->snippetCache[$this->elmName])) |
|
993 | 993 | { |
994 | 994 | $php = $modx->snippetCache[$this->elmName]; |
995 | 995 | } |
996 | 996 | else |
997 | 997 | { |
998 | 998 | $esc_elmName = $modx->db->escape($this->elmName); |
999 | - $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
|
999 | + $result = $modx->db->select('snippet', '[+prefix+]site_snippets', "name='{$esc_elmName}'"); |
|
1000 | 1000 | $total = $modx->db->getRecordCount($result); |
1001 | - if($total == 1) |
|
1001 | + if ($total == 1) |
|
1002 | 1002 | { |
1003 | 1003 | $row = $modx->db->getRow($result); |
1004 | 1004 | $php = $row['snippet']; |
1005 | 1005 | } |
1006 | - elseif($total == 0) |
|
1006 | + elseif ($total == 0) |
|
1007 | 1007 | { |
1008 | 1008 | $assets_path = MODX_BASE_PATH.'assets/'; |
1009 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
1009 | + if (is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
1010 | 1010 | $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
1011 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
1011 | + elseif (is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
1012 | 1012 | $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
1013 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
1013 | + elseif (is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
1014 | 1014 | $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
1015 | 1015 | else $modifiers_path = false; |
1016 | 1016 | |
1017 | - if($modifiers_path !== false) { |
|
1017 | + if ($modifiers_path !== false) { |
|
1018 | 1018 | $php = @file_get_contents($modifiers_path); |
1019 | 1019 | $php = trim($php); |
1020 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
1021 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
1022 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
1023 | - if($this->elmName!=='') |
|
1020 | + if (substr($php, 0, 5) === '<?php') $php = substr($php, 6); |
|
1021 | + if (substr($php, 0, 2) === '<?') $php = substr($php, 3); |
|
1022 | + if (substr($php, -2) === '?>') $php = substr($php, 0, -2); |
|
1023 | + if ($this->elmName !== '') |
|
1024 | 1024 | $modx->snippetCache[$this->elmName.'Props'] = ''; |
1025 | 1025 | } |
1026 | 1026 | else |
1027 | 1027 | $php = false; |
1028 | 1028 | } |
1029 | 1029 | else $php = false; |
1030 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
1030 | + if ($this->elmName !== '') $modx->snippetCache[$this->elmName] = $php; |
|
1031 | 1031 | } |
1032 | - if($php==='') $php=false; |
|
1032 | + if ($php === '') $php = false; |
|
1033 | 1033 | |
1034 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
1034 | + if ($php === false) $html = $modx->getChunk($this->elmName); |
|
1035 | 1035 | else $html = false; |
1036 | 1036 | |
1037 | 1037 | $self = '[+output+]'; |
1038 | 1038 | |
1039 | - if($php !== false) |
|
1039 | + if ($php !== false) |
|
1040 | 1040 | { |
1041 | 1041 | ob_start(); |
1042 | 1042 | $options = $opt; |
@@ -1049,71 +1049,71 @@ discard block |
||
1049 | 1049 | $this->vars['options'] = & $opt; |
1050 | 1050 | $custom = eval($php); |
1051 | 1051 | $msg = ob_get_contents(); |
1052 | - if($value===$this->bt) $value = $msg . $custom; |
|
1052 | + if ($value === $this->bt) $value = $msg.$custom; |
|
1053 | 1053 | ob_end_clean(); |
1054 | 1054 | } |
1055 | - elseif($html!==false && isset($value) && $value!=='') |
|
1055 | + elseif ($html !== false && isset($value) && $value !== '') |
|
1056 | 1056 | { |
1057 | - $html = str_replace(array($self,'[+value+]'), $value, $html); |
|
1058 | - $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
|
1057 | + $html = str_replace(array($self, '[+value+]'), $value, $html); |
|
1058 | + $value = str_replace(array('[+options+]', '[+param+]'), $opt, $html); |
|
1059 | 1059 | } |
1060 | 1060 | else return false; |
1061 | 1061 | |
1062 | - if($php===false && $html===false && $value!=='' |
|
1063 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
1062 | + if ($php === false && $html === false && $value !== '' |
|
1063 | + && (strpos($cmd, '[+value+]') !== false || strpos($cmd, $self) !== false)) |
|
1064 | 1064 | { |
1065 | - $value = str_replace(array('[+value+]',$self),$value,$cmd); |
|
1065 | + $value = str_replace(array('[+value+]', $self), $value, $cmd); |
|
1066 | 1066 | } |
1067 | 1067 | return $value; |
1068 | 1068 | } |
1069 | 1069 | |
1070 | - public function parseDocumentSource($content='') |
|
1070 | + public function parseDocumentSource($content = '') |
|
1071 | 1071 | { |
1072 | 1072 | $modx = evolutionCMS(); |
1073 | 1073 | |
1074 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
1074 | + if (strpos($content, '[') === false && strpos($content, '{') === false) return $content; |
|
1075 | 1075 | |
1076 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1077 | - $bt=''; |
|
1078 | - $i=0; |
|
1079 | - while($bt!==$content) |
|
1076 | + if (!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1077 | + $bt = ''; |
|
1078 | + $i = 0; |
|
1079 | + while ($bt !== $content) |
|
1080 | 1080 | { |
1081 | 1081 | $bt = $content; |
1082 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
1082 | + if (strpos($content, '[*') !== false && $modx->documentIdentifier) |
|
1083 | 1083 | $content = $modx->mergeDocumentContent($content); |
1084 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
1085 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
1086 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1087 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
1084 | + if (strpos($content, '[(') !== false) $content = $modx->mergeSettingsContent($content); |
|
1085 | + if (strpos($content, '{{') !== false) $content = $modx->mergeChunkContent($content); |
|
1086 | + if (strpos($content, '[!') !== false) $content = str_replace(array('[!', '!]'), array('[[', ']]'), $content); |
|
1087 | + if (strpos($content, '[[') !== false) $content = $modx->evalSnippets($content); |
|
1088 | 1088 | |
1089 | - if($content===$bt) break; |
|
1090 | - if($modx->maxParserPasses < $i) break; |
|
1089 | + if ($content === $bt) break; |
|
1090 | + if ($modx->maxParserPasses < $i) break; |
|
1091 | 1091 | $i++; |
1092 | 1092 | } |
1093 | 1093 | return $content; |
1094 | 1094 | } |
1095 | 1095 | |
1096 | - public function getDocumentObject($target='',$field='pagetitle') |
|
1096 | + public function getDocumentObject($target = '', $field = 'pagetitle') |
|
1097 | 1097 | { |
1098 | 1098 | $modx = evolutionCMS(); |
1099 | 1099 | |
1100 | 1100 | $target = trim($target); |
1101 | - if(empty($target)) $target = $modx->config['site_start']; |
|
1102 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
1101 | + if (empty($target)) $target = $modx->config['site_start']; |
|
1102 | + if (preg_match('@^[1-9][0-9]*$@', $target)) $method = 'id'; |
|
1103 | 1103 | else $method = 'alias'; |
1104 | 1104 | |
1105 | - if(!isset($this->documentObject[$target])) |
|
1105 | + if (!isset($this->documentObject[$target])) |
|
1106 | 1106 | { |
1107 | - $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
|
1107 | + $this->documentObject[$target] = $modx->getDocumentObject($method, $target, 'direct'); |
|
1108 | 1108 | } |
1109 | 1109 | |
1110 | - if($this->documentObject[$target]['publishedon']==='0') |
|
1110 | + if ($this->documentObject[$target]['publishedon'] === '0') |
|
1111 | 1111 | return ''; |
1112 | - elseif(isset($this->documentObject[$target][$field])) |
|
1112 | + elseif (isset($this->documentObject[$target][$field])) |
|
1113 | 1113 | { |
1114 | - if(is_array($this->documentObject[$target][$field])) |
|
1114 | + if (is_array($this->documentObject[$target][$field])) |
|
1115 | 1115 | { |
1116 | - $a = $modx->getTemplateVarOutput($field,$target); |
|
1116 | + $a = $modx->getTemplateVarOutput($field, $target); |
|
1117 | 1117 | $this->documentObject[$target][$field] = $a[$field]; |
1118 | 1118 | } |
1119 | 1119 | } |
@@ -1122,8 +1122,8 @@ discard block |
||
1122 | 1122 | return $this->documentObject[$target][$field]; |
1123 | 1123 | } |
1124 | 1124 | |
1125 | - public function setPlaceholders($value = '', $key = '', $path = '') { |
|
1126 | - if($path!=='') $key = "{$path}.{$key}"; |
|
1125 | + public function setPlaceholders($value = '', $key = '', $path = ''){ |
|
1126 | + if ($path !== '') $key = "{$path}.{$key}"; |
|
1127 | 1127 | if (is_array($value)) { |
1128 | 1128 | foreach ($value as $subkey => $subval) { |
1129 | 1129 | $this->setPlaceholders($subval, $subkey, $key); |
@@ -1133,77 +1133,77 @@ discard block |
||
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | // Sets a placeholder variable which can only be access by Modifiers |
1136 | - public function setModifiersVariable($key, $value) { |
|
1136 | + public function setModifiersVariable($key, $value){ |
|
1137 | 1137 | if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
1138 | 1138 | } |
1139 | 1139 | |
1140 | 1140 | //mbstring |
1141 | - public function substr($str, $s, $l = null) { |
|
1141 | + public function substr($str, $s, $l = null){ |
|
1142 | 1142 | $modx = evolutionCMS(); |
1143 | - if(is_null($l)) $l = $this->strlen($str); |
|
1143 | + if (is_null($l)) $l = $this->strlen($str); |
|
1144 | 1144 | if (function_exists('mb_substr')) |
1145 | 1145 | { |
1146 | - if(strpos($str,"\r")!==false) |
|
1147 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1146 | + if (strpos($str, "\r") !== false) |
|
1147 | + $str = str_replace(array("\r\n", "\r"), "\n", $str); |
|
1148 | 1148 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
1149 | 1149 | } |
1150 | 1150 | return substr($str, $s, $l); |
1151 | 1151 | } |
1152 | - public function strpos($haystack,$needle,$offset=0) { |
|
1152 | + public function strpos($haystack, $needle, $offset = 0){ |
|
1153 | 1153 | $modx = evolutionCMS(); |
1154 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1155 | - return strpos($haystack,$needle,$offset); |
|
1154 | + if (function_exists('mb_strpos')) return mb_strpos($haystack, $needle, $offset, $modx->config['modx_charset']); |
|
1155 | + return strpos($haystack, $needle, $offset); |
|
1156 | 1156 | } |
1157 | - public function strlen($str) { |
|
1157 | + public function strlen($str){ |
|
1158 | 1158 | $modx = evolutionCMS(); |
1159 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1159 | + if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str), $modx->config['modx_charset']); |
|
1160 | 1160 | return strlen($str); |
1161 | 1161 | } |
1162 | - public function strtolower($str) { |
|
1162 | + public function strtolower($str){ |
|
1163 | 1163 | if (function_exists('mb_strtolower')) return mb_strtolower($str); |
1164 | 1164 | return strtolower($str); |
1165 | 1165 | } |
1166 | - public function strtoupper($str) { |
|
1166 | + public function strtoupper($str){ |
|
1167 | 1167 | if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
1168 | 1168 | return strtoupper($str); |
1169 | 1169 | } |
1170 | - public function ucfirst($str) { |
|
1170 | + public function ucfirst($str){ |
|
1171 | 1171 | if (function_exists('mb_strtoupper')) |
1172 | 1172 | return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
1173 | 1173 | return ucfirst($str); |
1174 | 1174 | } |
1175 | - public function lcfirst($str) { |
|
1175 | + public function lcfirst($str){ |
|
1176 | 1176 | if (function_exists('mb_strtolower')) |
1177 | 1177 | return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
1178 | 1178 | return lcfirst($str); |
1179 | 1179 | } |
1180 | - public function ucwords($str) { |
|
1180 | + public function ucwords($str){ |
|
1181 | 1181 | if (function_exists('mb_convert_case')) |
1182 | 1182 | return mb_convert_case($str, MB_CASE_TITLE); |
1183 | 1183 | return ucwords($str); |
1184 | 1184 | } |
1185 | - public function strrev($str) { |
|
1185 | + public function strrev($str){ |
|
1186 | 1186 | preg_match_all('/./us', $str, $ar); |
1187 | 1187 | return implode(array_reverse($ar[0])); |
1188 | 1188 | } |
1189 | - public function str_shuffle($str) { |
|
1189 | + public function str_shuffle($str){ |
|
1190 | 1190 | preg_match_all('/./us', $str, $ar); |
1191 | 1191 | shuffle($ar[0]); |
1192 | 1192 | return implode($ar[0]); |
1193 | 1193 | } |
1194 | - public function str_word_count($str) { |
|
1195 | - return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
|
1194 | + public function str_word_count($str){ |
|
1195 | + return count(preg_split('~[^\p{L}\p{N}\']+~u', $str)); |
|
1196 | 1196 | } |
1197 | - public function strip_tags($value,$params='') { |
|
1197 | + public function strip_tags($value, $params = ''){ |
|
1198 | 1198 | $modx = evolutionCMS(); |
1199 | 1199 | |
1200 | - if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
|
1200 | + if (stripos($params, 'style') === false && stripos($value, '</style>') !== false) { |
|
1201 | 1201 | $value = preg_replace('@<style.*?>.*?</style>@is', '', $value); |
1202 | 1202 | } |
1203 | - if(stripos($params,'script')===false && stripos($value,'</script>')!==false) { |
|
1203 | + if (stripos($params, 'script') === false && stripos($value, '</script>') !== false) { |
|
1204 | 1204 | $value = preg_replace('@<script.*?>.*?</script>@is', '', $value); |
1205 | 1205 | } |
1206 | 1206 | |
1207 | - return trim(strip_tags($value,$params)); |
|
1207 | + return trim(strip_tags($value, $params)); |
|
1208 | 1208 | } |
1209 | 1209 | } |
@@ -1,8 +1,11 @@ discard block |
||
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 array |
8 | 11 | */ |
@@ -60,7 +63,9 @@ discard block |
||
60 | 63 | public function __construct() |
61 | 64 | { |
62 | 65 | $modx = evolutionCMS(); |
63 | - if (function_exists('mb_internal_encoding')) mb_internal_encoding($modx->config['modx_charset']); |
|
66 | + if (function_exists('mb_internal_encoding')) { |
|
67 | + mb_internal_encoding($modx->config['modx_charset']); |
|
68 | + } |
|
64 | 69 | $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'; |
65 | 70 | } |
66 | 71 | |
@@ -73,7 +78,9 @@ discard block |
||
73 | 78 | public function phxFilter($key,$value,$modifiers) |
74 | 79 | { |
75 | 80 | $modx = evolutionCMS(); |
76 | - if(substr($modifiers,0,3)!=='id(') $value = $this->parseDocumentSource($value); |
|
81 | + if(substr($modifiers,0,3)!=='id(') { |
|
82 | + $value = $this->parseDocumentSource($value); |
|
83 | + } |
|
77 | 84 | $this->srcValue = $value; |
78 | 85 | $modifiers = trim($modifiers); |
79 | 86 | $modifiers = ':'.trim($modifiers,':'); |
@@ -96,13 +103,18 @@ discard block |
||
96 | 103 | * @param string $modifiers |
97 | 104 | * @return bool|string |
98 | 105 | */ |
99 | - public function _getDelim($mode,$modifiers) { |
|
106 | + public function _getDelim($mode,$modifiers) |
|
107 | + { |
|
100 | 108 | $c = substr($modifiers,0,1); |
101 | - if(!in_array($c, array('"', "'", '`')) ) return false; |
|
109 | + if(!in_array($c, array('"', "'", '`')) ) { |
|
110 | + return false; |
|
111 | + } |
|
102 | 112 | |
103 | 113 | $modifiers = substr($modifiers,1); |
104 | 114 | $closure = $mode=='(' ? "{$c})" : $c; |
105 | - if(strpos($modifiers, $closure)===false) return false; |
|
115 | + if(strpos($modifiers, $closure)===false) { |
|
116 | + return false; |
|
117 | + } |
|
106 | 118 | |
107 | 119 | return $c; |
108 | 120 | } |
@@ -113,52 +125,65 @@ discard block |
||
113 | 125 | * @param string $modifiers |
114 | 126 | * @return bool|string |
115 | 127 | */ |
116 | - public function _getOpt($mode,$delim,$modifiers) { |
|
128 | + public function _getOpt($mode,$delim,$modifiers) |
|
129 | + { |
|
117 | 130 | if($delim) { |
118 | - if($mode=='(') return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
131 | + if($mode=='(') { |
|
132 | + return substr($modifiers,1,strpos($modifiers, $delim . ')' )-1); |
|
133 | + } |
|
119 | 134 | |
120 | 135 | return substr($modifiers,1,strpos($modifiers,$delim,1)-1); |
121 | - } |
|
122 | - else { |
|
123 | - if($mode=='(') return substr($modifiers,0,strpos($modifiers, ')') ); |
|
136 | + } else { |
|
137 | + if($mode=='(') { |
|
138 | + return substr($modifiers,0,strpos($modifiers, ')') ); |
|
139 | + } |
|
124 | 140 | |
125 | 141 | $chars = str_split($modifiers); |
126 | 142 | $opt=''; |
127 | 143 | foreach($chars as $c) { |
128 | - if($c==':' || $c==')') break; |
|
144 | + if($c==':' || $c==')') { |
|
145 | + break; |
|
146 | + } |
|
129 | 147 | $opt .=$c; |
130 | 148 | } |
131 | 149 | return $opt; |
132 | 150 | } |
133 | 151 | } |
134 | - public function _getRemainModifiers($mode,$delim,$modifiers) { |
|
152 | + public function _getRemainModifiers($mode,$delim,$modifiers) |
|
153 | + { |
|
135 | 154 | if($delim) { |
136 | - if($mode=='(') |
|
137 | - return $this->_fetchContent($modifiers, $delim . ')'); |
|
138 | - else { |
|
155 | + if($mode=='(') { |
|
156 | + return $this->_fetchContent($modifiers, $delim . ')'); |
|
157 | + } else { |
|
139 | 158 | $modifiers = trim($modifiers); |
140 | 159 | $modifiers = substr($modifiers,1); |
141 | 160 | return $this->_fetchContent($modifiers, $delim); |
142 | 161 | } |
143 | - } |
|
144 | - else { |
|
145 | - if($mode=='(') return $this->_fetchContent($modifiers, ')'); |
|
162 | + } else { |
|
163 | + if($mode=='(') { |
|
164 | + return $this->_fetchContent($modifiers, ')'); |
|
165 | + } |
|
146 | 166 | $chars = str_split($modifiers); |
147 | 167 | foreach($chars as $c) { |
148 | - if($c==':') return $modifiers; |
|
149 | - else $modifiers = substr($modifiers,1); |
|
168 | + if($c==':') { |
|
169 | + return $modifiers; |
|
170 | + } else { |
|
171 | + $modifiers = substr($modifiers,1); |
|
172 | + } |
|
150 | 173 | } |
151 | 174 | return $modifiers; |
152 | 175 | } |
153 | 176 | } |
154 | 177 | |
155 | - public function _fetchContent($string,$delim) { |
|
178 | + public function _fetchContent($string,$delim) |
|
179 | + { |
|
156 | 180 | $len = strlen($delim); |
157 | 181 | $string = $this->parseDocumentSource($string); |
158 | 182 | return substr($string,strpos($string, $delim)+$len); |
159 | 183 | } |
160 | 184 | |
161 | - public function splitEachModifiers($modifiers) { |
|
185 | + public function splitEachModifiers($modifiers) |
|
186 | + { |
|
162 | 187 | $modx = evolutionCMS(); |
163 | 188 | |
164 | 189 | $cmd = ''; |
@@ -169,11 +194,15 @@ discard block |
||
169 | 194 | $c = substr($modifiers,0,1); |
170 | 195 | $modifiers = substr($modifiers,1); |
171 | 196 | |
172 | - if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { // :=, :!=, :<=, :>=, :!<=, :!>= |
|
197 | + if($c===':' && preg_match('@^(!?[<>=]{1,2})@', $modifiers, $match)) { |
|
198 | +// :=, :!=, :<=, :>=, :!<=, :!>= |
|
173 | 199 | $c = substr($modifiers,strlen($match[1]),1); |
174 | 200 | $debuginfo = "#i=0 #c=[{$c}] #m=[{$modifiers}]"; |
175 | - if($c==='(') $modifiers = substr($modifiers,strlen($match[1])+1); |
|
176 | - else $modifiers = substr($modifiers,strlen($match[1])); |
|
201 | + if($c==='(') { |
|
202 | + $modifiers = substr($modifiers,strlen($match[1])+1); |
|
203 | + } else { |
|
204 | + $modifiers = substr($modifiers,strlen($match[1])); |
|
205 | + } |
|
177 | 206 | |
178 | 207 | $delim = $this->_getDelim($c,$modifiers); |
179 | 208 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -181,13 +210,12 @@ discard block |
||
181 | 210 | |
182 | 211 | $result[]=array('cmd'=>trim($match[1]),'opt'=>$opt,'debuginfo'=>$debuginfo); |
183 | 212 | $cmd = ''; |
184 | - } |
|
185 | - elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { // :+3, :-3, :*3 ... |
|
213 | + } elseif(in_array($c,array('+','-','*','/')) && preg_match('@^[0-9]+@', $modifiers, $match)) { |
|
214 | +// :+3, :-3, :*3 ... |
|
186 | 215 | $modifiers = substr($modifiers,strlen($match[0])); |
187 | 216 | $result[]=array('cmd'=>'math','opt'=>'%s'.$c.$match[0]); |
188 | 217 | $cmd = ''; |
189 | - } |
|
190 | - elseif($c==='(' || $c==='=') { |
|
218 | + } elseif($c==='(' || $c==='=') { |
|
191 | 219 | $modifiers = $m1 = trim($modifiers); |
192 | 220 | $delim = $this->_getDelim($c,$modifiers); |
193 | 221 | $opt = $this->_getOpt($c,$delim,$modifiers); |
@@ -197,29 +225,29 @@ discard block |
||
197 | 225 | $result[]=array('cmd'=>trim($cmd),'opt'=>$opt,'debuginfo'=>$debuginfo); |
198 | 226 | |
199 | 227 | $cmd = ''; |
200 | - } |
|
201 | - elseif($c==':') { |
|
228 | + } elseif($c==':') { |
|
202 | 229 | $debuginfo = "#i=2 #c=[{$c}] #m=[{$modifiers}]"; |
203 | - if($cmd!=='') $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
230 | + if($cmd!=='') { |
|
231 | + $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
|
232 | + } |
|
204 | 233 | |
205 | 234 | $cmd = ''; |
206 | - } |
|
207 | - elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
235 | + } elseif(trim($modifiers)=='' && trim($cmd)!=='') { |
|
208 | 236 | $debuginfo = "#i=3 #c=[{$c}] #m=[{$modifiers}]"; |
209 | 237 | $cmd .= $c; |
210 | 238 | $result[]=array('cmd'=>trim($cmd),'opt'=>'','debuginfo'=>$debuginfo); |
211 | 239 | |
212 | 240 | break; |
213 | - } |
|
214 | - else { |
|
241 | + } else { |
|
215 | 242 | $cmd .= $c; |
216 | 243 | } |
217 | 244 | } |
218 | 245 | |
219 | - if(empty($result)) return array(); |
|
246 | + if(empty($result)) { |
|
247 | + return array(); |
|
248 | + } |
|
220 | 249 | |
221 | - foreach($result as $i=>$a) |
|
222 | - { |
|
250 | + foreach($result as $i=>$a) { |
|
223 | 251 | $a['opt'] = $this->parseDocumentSource($a['opt']); |
224 | 252 | $result[$i]['opt'] = $modx->mergePlaceholderContent($a['opt'],$this->placeholders); |
225 | 253 | } |
@@ -232,22 +260,23 @@ discard block |
||
232 | 260 | $modx = evolutionCMS(); |
233 | 261 | $lastKey = ''; |
234 | 262 | $cacheKey = md5(sprintf('parsePhx#%s#%s#%s',$key,$value,print_r($modifiers,true))); |
235 | - if(isset($this->tmpCache[$cacheKey])) return $this->tmpCache[$cacheKey]; |
|
236 | - if(empty($modifiers)) return ''; |
|
263 | + if(isset($this->tmpCache[$cacheKey])) { |
|
264 | + return $this->tmpCache[$cacheKey]; |
|
265 | + } |
|
266 | + if(empty($modifiers)) { |
|
267 | + return ''; |
|
268 | + } |
|
237 | 269 | |
238 | - foreach($modifiers as $m) |
|
239 | - { |
|
270 | + foreach($modifiers as $m) { |
|
240 | 271 | $lastKey = strtolower($m['cmd']); |
241 | 272 | } |
242 | 273 | $_ = explode(',',$this->condModifiers); |
243 | - if(in_array($lastKey,$_)) |
|
244 | - { |
|
274 | + if(in_array($lastKey,$_)) { |
|
245 | 275 | $modifiers[] = array('cmd'=>'then','opt'=>'1'); |
246 | 276 | $modifiers[] = array('cmd'=>'else','opt'=>'0'); |
247 | 277 | } |
248 | 278 | |
249 | - foreach($modifiers as $i=>$a) |
|
250 | - { |
|
279 | + foreach($modifiers as $i=>$a) { |
|
251 | 280 | $value = $this->Filter($key,$value, $a['cmd'], $a['opt']); |
252 | 281 | } |
253 | 282 | $this->tmpCache[$cacheKey] = $value; |
@@ -259,25 +288,32 @@ discard block |
||
259 | 288 | { |
260 | 289 | $modx = evolutionCMS(); |
261 | 290 | |
262 | - if($key==='documentObject') $value = $modx->documentIdentifier; |
|
291 | + if($key==='documentObject') { |
|
292 | + $value = $modx->documentIdentifier; |
|
293 | + } |
|
263 | 294 | $cmd = $this->parseDocumentSource($cmd); |
264 | - if(preg_match('@^[1-9][/0-9]*$@',$cmd)) |
|
265 | - { |
|
266 | - if(strpos($cmd,'/')!==false) |
|
267 | - $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
295 | + if(preg_match('@^[1-9][/0-9]*$@',$cmd)) { |
|
296 | + if(strpos($cmd,'/')!==false) { |
|
297 | + $cmd = $this->substr($cmd,strrpos($cmd,'/')+1); |
|
298 | + } |
|
268 | 299 | $opt = $cmd; |
269 | 300 | $cmd = 'id'; |
270 | 301 | } |
271 | 302 | |
272 | - if(isset($modx->snippetCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
273 | - elseif(isset($modx->chunkCache["phx:{$cmd}"])) $this->elmName = "phx:{$cmd}"; |
|
274 | - else $this->elmName = ''; |
|
303 | + if(isset($modx->snippetCache["phx:{$cmd}"])) { |
|
304 | + $this->elmName = "phx:{$cmd}"; |
|
305 | + } elseif(isset($modx->chunkCache["phx:{$cmd}"])) { |
|
306 | + $this->elmName = "phx:{$cmd}"; |
|
307 | + } else { |
|
308 | + $this->elmName = ''; |
|
309 | + } |
|
275 | 310 | |
276 | 311 | $cmd = strtolower($cmd); |
277 | - if($this->elmName!=='') |
|
278 | - $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
279 | - else |
|
280 | - $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
312 | + if($this->elmName!=='') { |
|
313 | + $value = $this->getValueFromElement($key, $value, $cmd, $opt); |
|
314 | + } else { |
|
315 | + $value = $this->getValueFromPreset($key, $value, $cmd, $opt); |
|
316 | + } |
|
281 | 317 | |
282 | 318 | $value = str_replace('[+key+]', $key, $value); |
283 | 319 | |
@@ -286,29 +322,37 @@ discard block |
||
286 | 322 | |
287 | 323 | public function isEmpty($cmd,$value) |
288 | 324 | { |
289 | - if($value!=='') return false; |
|
325 | + if($value!=='') { |
|
326 | + return false; |
|
327 | + } |
|
290 | 328 | |
291 | 329 | $_ = explode(',', $this->condModifiers . ',_default,default,if,input,or,and,show,this,select,switch,then,else,id,ifempty,smart_desc,smart_description,summary'); |
292 | - if(in_array($cmd,$_)) return false; |
|
293 | - else return true; |
|
330 | + if(in_array($cmd,$_)) { |
|
331 | + return false; |
|
332 | + } else { |
|
333 | + return true; |
|
334 | + } |
|
294 | 335 | } |
295 | 336 | |
296 | 337 | public function getValueFromPreset($key, $value, $cmd, $opt) |
297 | 338 | { |
298 | 339 | $modx = evolutionCMS(); |
299 | 340 | |
300 | - if($this->isEmpty($cmd,$value)) return ''; |
|
341 | + if($this->isEmpty($cmd,$value)) { |
|
342 | + return ''; |
|
343 | + } |
|
301 | 344 | |
302 | 345 | $this->key = $key; |
303 | 346 | $this->value = $value; |
304 | 347 | $this->opt = $opt; |
305 | 348 | |
306 | - switch ($cmd) |
|
307 | - { |
|
349 | + switch ($cmd) { |
|
308 | 350 | ##### Conditional Modifiers |
309 | 351 | case 'input': |
310 | 352 | case 'if': |
311 | - if(!$opt) return $value; |
|
353 | + if(!$opt) { |
|
354 | + return $value; |
|
355 | + } |
|
312 | 356 | return $opt; |
313 | 357 | case '=': |
314 | 358 | case 'eq': |
@@ -369,14 +413,24 @@ discard block |
||
369 | 413 | case 'file_exists': |
370 | 414 | case 'is_readable': |
371 | 415 | case 'is_writable': |
372 | - if(!$opt) $path = $value; |
|
373 | - else $path = $opt; |
|
374 | - if(strpos($path,MODX_MANAGER_PATH)!==false) exit('Can not read core path'); |
|
375 | - if(strpos($path,$modx->config['base_path'])===false) $path = ltrim($path,'/'); |
|
416 | + if(!$opt) { |
|
417 | + $path = $value; |
|
418 | + } else { |
|
419 | + $path = $opt; |
|
420 | + } |
|
421 | + if(strpos($path,MODX_MANAGER_PATH)!==false) { |
|
422 | + exit('Can not read core path'); |
|
423 | + } |
|
424 | + if(strpos($path,$modx->config['base_path'])===false) { |
|
425 | + $path = ltrim($path,'/'); |
|
426 | + } |
|
376 | 427 | $this->condition[] = (int)($cmd($path)!==false);break; |
377 | 428 | case 'is_image': |
378 | - if(!$opt) $path = $value; |
|
379 | - else $path = $opt; |
|
429 | + if(!$opt) { |
|
430 | + $path = $value; |
|
431 | + } else { |
|
432 | + $path = $opt; |
|
433 | + } |
|
380 | 434 | if(!is_file($path)) {$this->condition[]='0';break;} |
381 | 435 | $_ = getimagesize($path); |
382 | 436 | $this->condition[] = (int)($_[0]);break; |
@@ -399,17 +453,23 @@ discard block |
||
399 | 453 | case 'this': |
400 | 454 | $conditional = implode(' ',$this->condition); |
401 | 455 | $isvalid = (int)(eval("return ({$conditional});")); |
402 | - if ($isvalid) return $this->srcValue; |
|
456 | + if ($isvalid) { |
|
457 | + return $this->srcValue; |
|
458 | + } |
|
403 | 459 | return NULL; |
404 | 460 | case 'then': |
405 | 461 | $conditional = implode(' ',$this->condition); |
406 | 462 | $isvalid = (int)eval("return ({$conditional});"); |
407 | - if ($isvalid) return $opt; |
|
463 | + if ($isvalid) { |
|
464 | + return $opt; |
|
465 | + } |
|
408 | 466 | return null; |
409 | 467 | case 'else': |
410 | 468 | $conditional = implode(' ',$this->condition); |
411 | 469 | $isvalid = (int)eval("return ({$conditional});"); |
412 | - if (!$isvalid) return $opt; |
|
470 | + if (!$isvalid) { |
|
471 | + return $opt; |
|
472 | + } |
|
413 | 473 | break; |
414 | 474 | case 'select': |
415 | 475 | case 'switch': |
@@ -420,8 +480,11 @@ discard block |
||
420 | 480 | $mi = explode('=',$raw[$m],2); |
421 | 481 | $map[$mi[0]] = $mi[1]; |
422 | 482 | } |
423 | - if(isset($map[$value])) return $map[$value]; |
|
424 | - else return ''; |
|
483 | + if(isset($map[$value])) { |
|
484 | + return $map[$value]; |
|
485 | + } else { |
|
486 | + return ''; |
|
487 | + } |
|
425 | 488 | ##### End of Conditional Modifiers |
426 | 489 | |
427 | 490 | ##### Encode / Decode / Hash / Escape |
@@ -447,24 +510,25 @@ discard block |
||
447 | 510 | case 'spam_protect': |
448 | 511 | return str_replace(array('@','.'),array('@','.'),$value); |
449 | 512 | case 'strip': |
450 | - if($opt==='') $opt = ' '; |
|
513 | + if($opt==='') { |
|
514 | + $opt = ' '; |
|
515 | + } |
|
451 | 516 | return preg_replace('/[\n\r\t\s]+/', $opt, $value); |
452 | 517 | case 'strip_linefeeds': |
453 | 518 | return str_replace(array("\n","\r"), '', $value); |
454 | 519 | case 'notags': |
455 | 520 | case 'strip_tags': |
456 | 521 | case 'remove_html': |
457 | - if($opt!=='') |
|
458 | - { |
|
522 | + if($opt!=='') { |
|
459 | 523 | $param = array(); |
460 | - foreach(explode(',',$opt) as $v) |
|
461 | - { |
|
524 | + foreach(explode(',',$opt) as $v) { |
|
462 | 525 | $v = trim($v,'</> '); |
463 | 526 | $param[] = "<{$v}>"; |
464 | 527 | } |
465 | 528 | $params = implode(',',$param); |
529 | + } else { |
|
530 | + $params = ''; |
|
466 | 531 | } |
467 | - else $params = ''; |
|
468 | 532 | if(!strpos($params,'<br>')===false) { |
469 | 533 | $value = preg_replace('@(<br[ /]*>)\n@','$1',$value); |
470 | 534 | $value = preg_replace('@<br[ /]*>@',"\n",$value); |
@@ -475,8 +539,11 @@ discard block |
||
475 | 539 | case 'encode_url': |
476 | 540 | return urlencode($value); |
477 | 541 | case 'base64_decode': |
478 | - if($opt!=='false') $opt = true; |
|
479 | - else $opt = false; |
|
542 | + if($opt!=='false') { |
|
543 | + $opt = true; |
|
544 | + } else { |
|
545 | + $opt = false; |
|
546 | + } |
|
480 | 547 | return base64_decode($value,$opt); |
481 | 548 | case 'encode_sha1': $cmd = 'sha1'; |
482 | 549 | case 'addslashes': |
@@ -502,16 +569,19 @@ discard block |
||
502 | 569 | return $this->strtoupper($value); |
503 | 570 | case 'capitalize': |
504 | 571 | $_ = explode(' ',$value); |
505 | - foreach($_ as $i=>$v) |
|
506 | - { |
|
572 | + foreach($_ as $i=>$v) { |
|
507 | 573 | $_[$i] = ucfirst($v); |
508 | 574 | } |
509 | 575 | return implode(' ',$_); |
510 | 576 | case 'zenhan': |
511 | - if(empty($opt)) $opt='VKas'; |
|
577 | + if(empty($opt)) { |
|
578 | + $opt='VKas'; |
|
579 | + } |
|
512 | 580 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
513 | 581 | case 'hanzen': |
514 | - if(empty($opt)) $opt='VKAS'; |
|
582 | + if(empty($opt)) { |
|
583 | + $opt='VKAS'; |
|
584 | + } |
|
515 | 585 | return mb_convert_kana($value,$opt,$modx->config['modx_charset']); |
516 | 586 | case 'str_shuffle': |
517 | 587 | case 'shuffle': |
@@ -536,13 +606,18 @@ discard block |
||
536 | 606 | $value = preg_replace('/\r/', '', $value); |
537 | 607 | return count(preg_split('/\n+/',$value)); |
538 | 608 | case 'strpos': |
539 | - if($opt!=0&&empty($opt)) return $value; |
|
609 | + if($opt!=0&&empty($opt)) { |
|
610 | + return $value; |
|
611 | + } |
|
540 | 612 | return $this->strpos($value,$opt); |
541 | 613 | case 'wordwrap': |
542 | 614 | // default: 70 |
543 | 615 | $wrapat = (int)$opt > 0 ? (int)$opt : 70; |
544 | - if (version_compare(PHP_VERSION, '5.3.0') >= 0) return $this->includeMdfFile('wordwrap'); |
|
545 | - else return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
616 | + if (version_compare(PHP_VERSION, '5.3.0') >= 0) { |
|
617 | + return $this->includeMdfFile('wordwrap'); |
|
618 | + } else { |
|
619 | + return preg_replace("@(\b\w+\b)@e","wordwrap('\\1',\$wrapat,' ',1)",$value); |
|
620 | + } |
|
546 | 621 | case 'wrap_text': |
547 | 622 | $width = preg_match('/^[1-9][0-9]*$/',$opt) ? $opt : 70; |
548 | 623 | if($modx->config['manager_language']==='japanese-utf8') { |
@@ -558,30 +633,36 @@ discard block |
||
558 | 633 | $value = $this->substr($value,$width); |
559 | 634 | } |
560 | 635 | return implode("\n",$chunk); |
636 | + } else { |
|
637 | + return wordwrap($value,$width,"\n",true); |
|
561 | 638 | } |
562 | - else |
|
563 | - return wordwrap($value,$width,"\n",true); |
|
564 | 639 | case 'substr': |
565 | - if(empty($opt)) break; |
|
640 | + if(empty($opt)) { |
|
641 | + break; |
|
642 | + } |
|
566 | 643 | if(strpos($opt,',')!==false) { |
567 | 644 | list($b,$e) = explode(',',$opt,2); |
568 | 645 | return $this->substr($value,$b,(int)$e); |
646 | + } else { |
|
647 | + return $this->substr($value,$opt); |
|
569 | 648 | } |
570 | - else return $this->substr($value,$opt); |
|
571 | 649 | case 'limit': |
572 | 650 | case 'trim_to': // http://www.movabletype.jp/documentation/appendices/modifiers/trim_to.html |
573 | - if(strpos($opt,'+')!==false) |
|
574 | - list($len,$str) = explode('+',$opt,2); |
|
575 | - else { |
|
651 | + if(strpos($opt,'+')!==false) { |
|
652 | + list($len,$str) = explode('+',$opt,2); |
|
653 | + } else { |
|
576 | 654 | $len = $opt; |
577 | 655 | $str = ''; |
578 | 656 | } |
579 | - if($len==='') $len = 100; |
|
580 | - if(abs($len) > $this->strlen($value)) $str =''; |
|
657 | + if($len==='') { |
|
658 | + $len = 100; |
|
659 | + } |
|
660 | + if(abs($len) > $this->strlen($value)) { |
|
661 | + $str =''; |
|
662 | + } |
|
581 | 663 | if(preg_match('/^[1-9][0-9]*$/',$len)) { |
582 | 664 | return $this->substr($value,0,$len) . $str; |
583 | - } |
|
584 | - elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
665 | + } elseif(preg_match('/^\-[1-9][0-9]*$/',$len)) { |
|
585 | 666 | return $str . $this->substr($value,$len); |
586 | 667 | } |
587 | 668 | break; |
@@ -591,18 +672,30 @@ discard block |
||
591 | 672 | return $this->includeMdfFile('summary'); |
592 | 673 | case 'replace': |
593 | 674 | case 'str_replace': |
594 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
595 | - if (substr_count($opt, ',') ==1) $delim = ','; |
|
596 | - elseif(substr_count($opt, '|') ==1) $delim = '|'; |
|
597 | - elseif(substr_count($opt, '=>')==1) $delim = '=>'; |
|
598 | - elseif(substr_count($opt, '/') ==1) $delim = '/'; |
|
599 | - else break; |
|
675 | + if(empty($opt) || strpos($opt,',')===false) { |
|
676 | + break; |
|
677 | + } |
|
678 | + if (substr_count($opt, ',') ==1) { |
|
679 | + $delim = ','; |
|
680 | + } elseif(substr_count($opt, '|') ==1) { |
|
681 | + $delim = '|'; |
|
682 | + } elseif(substr_count($opt, '=>')==1) { |
|
683 | + $delim = '=>'; |
|
684 | + } elseif(substr_count($opt, '/') ==1) { |
|
685 | + $delim = '/'; |
|
686 | + } else { |
|
687 | + break; |
|
688 | + } |
|
600 | 689 | list($s,$r) = explode($delim,$opt); |
601 | - if($value!=='') return str_replace($s,$r,$value); |
|
690 | + if($value!=='') { |
|
691 | + return str_replace($s,$r,$value); |
|
692 | + } |
|
602 | 693 | break; |
603 | 694 | case 'replace_to': |
604 | 695 | case 'tpl': |
605 | - if($value!=='') return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
696 | + if($value!=='') { |
|
697 | + return str_replace(array('[+value+]','[+output+]','{value}','%s'),$value,$opt); |
|
698 | + } |
|
606 | 699 | break; |
607 | 700 | case 'eachtpl': |
608 | 701 | $value = explode('||',$value); |
@@ -613,59 +706,83 @@ discard block |
||
613 | 706 | return implode("\n", $_); |
614 | 707 | case 'array_pop': |
615 | 708 | case 'array_shift': |
616 | - if(strpos($value,'||')!==false) $delim = '||'; |
|
617 | - else $delim = ','; |
|
709 | + if(strpos($value,'||')!==false) { |
|
710 | + $delim = '||'; |
|
711 | + } else { |
|
712 | + $delim = ','; |
|
713 | + } |
|
618 | 714 | return $cmd(explode($delim,$value)); |
619 | 715 | case 'preg_replace': |
620 | 716 | case 'regex_replace': |
621 | - if(empty($opt) || strpos($opt,',')===false) break; |
|
717 | + if(empty($opt) || strpos($opt,',')===false) { |
|
718 | + break; |
|
719 | + } |
|
622 | 720 | list($s,$r) = explode(',',$opt,2); |
623 | - if($value!=='') return preg_replace($s,$r,$value); |
|
721 | + if($value!=='') { |
|
722 | + return preg_replace($s,$r,$value); |
|
723 | + } |
|
624 | 724 | break; |
625 | 725 | case 'cat': |
626 | 726 | case 'concatenate': |
627 | 727 | case '.': |
628 | - if($value!=='') return $value . $opt; |
|
728 | + if($value!=='') { |
|
729 | + return $value . $opt; |
|
730 | + } |
|
629 | 731 | break; |
630 | 732 | case 'sprintf': |
631 | 733 | case 'string_format': |
632 | - if($value!=='') return sprintf($opt,$value); |
|
734 | + if($value!=='') { |
|
735 | + return sprintf($opt,$value); |
|
736 | + } |
|
633 | 737 | break; |
634 | 738 | case 'number_format': |
635 | - if($opt=='') $opt = 0; |
|
739 | + if($opt=='') { |
|
740 | + $opt = 0; |
|
741 | + } |
|
636 | 742 | return number_format($value,$opt); |
637 | 743 | case 'money_format': |
638 | 744 | setlocale(LC_MONETARY,setlocale(LC_TIME,0)); |
639 | - if($value!=='') return money_format($opt,(double)$value); |
|
745 | + if($value!=='') { |
|
746 | + return money_format($opt,(double)$value); |
|
747 | + } |
|
640 | 748 | break; |
641 | 749 | case 'tobool': |
642 | 750 | return boolval($value); |
643 | 751 | case 'nl2lf': |
644 | - if($value!=='') return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
752 | + if($value!=='') { |
|
753 | + return str_replace(array("\r\n","\n", "\r"), '\n', $value); |
|
754 | + } |
|
645 | 755 | break; |
646 | 756 | case 'br2nl': |
647 | 757 | return preg_replace('@<br[\s/]*>@i', "\n", $value); |
648 | 758 | case 'nl2br': |
649 | - if (version_compare(PHP_VERSION, '5.3.0', '<')) |
|
650 | - return nl2br($value); |
|
651 | - if($opt!=='') |
|
652 | - { |
|
759 | + if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
760 | + return nl2br($value); |
|
761 | + } |
|
762 | + if($opt!=='') { |
|
653 | 763 | $opt = trim($opt); |
654 | 764 | $opt = strtolower($opt); |
655 | - if($opt==='false') $opt = false; |
|
656 | - elseif($opt==='0') $opt = false; |
|
657 | - else $opt = true; |
|
765 | + if($opt==='false') { |
|
766 | + $opt = false; |
|
767 | + } elseif($opt==='0') { |
|
768 | + $opt = false; |
|
769 | + } else { |
|
770 | + $opt = true; |
|
771 | + } |
|
772 | + } elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') { |
|
773 | + $opt = false; |
|
774 | + } else { |
|
775 | + $opt = true; |
|
658 | 776 | } |
659 | - elseif(isset($modx->config['mce_element_format'])&&$modx->config['mce_element_format']==='html') |
|
660 | - $opt = false; |
|
661 | - else $opt = true; |
|
662 | 777 | return nl2br($value,$opt); |
663 | 778 | case 'ltrim': |
664 | 779 | case 'rtrim': |
665 | 780 | case 'trim': // ref http://mblo.info/modifiers/custom-modifiers/rtrim_opt.html |
666 | - if($opt==='') |
|
667 | - return $cmd($value); |
|
668 | - else return $cmd($value,$opt); |
|
781 | + if($opt==='') { |
|
782 | + return $cmd($value); |
|
783 | + } else { |
|
784 | + return $cmd($value,$opt); |
|
785 | + } |
|
669 | 786 | // These are all straight wrappers for PHP functions |
670 | 787 | case 'ucfirst': |
671 | 788 | case 'lcfirst': |
@@ -676,15 +793,24 @@ discard block |
||
676 | 793 | case 'strftime': |
677 | 794 | case 'date': |
678 | 795 | case 'dateformat': |
679 | - if(empty($opt)) $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
680 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
681 | - if(strpos($opt,'%')!==false) |
|
682 | - return strftime($opt,0+$value); |
|
683 | - else |
|
684 | - return date($opt,0+$value); |
|
796 | + if(empty($opt)) { |
|
797 | + $opt = $modx->toDateFormat(null, 'formatOnly'); |
|
798 | + } |
|
799 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
800 | + $value = strtotime($value); |
|
801 | + } |
|
802 | + if(strpos($opt,'%')!==false) { |
|
803 | + return strftime($opt,0+$value); |
|
804 | + } else { |
|
805 | + return date($opt,0+$value); |
|
806 | + } |
|
685 | 807 | case 'time': |
686 | - if(empty($opt)) $opt = '%H:%M'; |
|
687 | - if(!preg_match('@^[0-9]+$@',$value)) $value = strtotime($value); |
|
808 | + if(empty($opt)) { |
|
809 | + $opt = '%H:%M'; |
|
810 | + } |
|
811 | + if(!preg_match('@^[0-9]+$@',$value)) { |
|
812 | + $value = strtotime($value); |
|
813 | + } |
|
688 | 814 | return strftime($opt,0+$value); |
689 | 815 | case 'strtotime': |
690 | 816 | return strtotime($value); |
@@ -694,7 +820,9 @@ discard block |
||
694 | 820 | case 'tofloat': |
695 | 821 | return floatval($value); |
696 | 822 | case 'round': |
697 | - if(!$opt) $opt = 0; |
|
823 | + if(!$opt) { |
|
824 | + $opt = 0; |
|
825 | + } |
|
698 | 826 | return $cmd($value,$opt); |
699 | 827 | case 'max': |
700 | 828 | case 'min': |
@@ -706,28 +834,42 @@ discard block |
||
706 | 834 | case 'math': |
707 | 835 | case 'calc': |
708 | 836 | $value = (int)$value; |
709 | - if(empty($value)) $value = '0'; |
|
837 | + if(empty($value)) { |
|
838 | + $value = '0'; |
|
839 | + } |
|
710 | 840 | $filter = str_replace(array('[+value+]','[+output+]','{value}','%s'),'?',$opt); |
711 | 841 | $filter = preg_replace('@([a-zA-Z\n\r\t\s])@','',$filter); |
712 | - if(strpos($filter,'?')===false) $filter = "?{$filter}"; |
|
842 | + if(strpos($filter,'?')===false) { |
|
843 | + $filter = "?{$filter}"; |
|
844 | + } |
|
713 | 845 | $filter = str_replace('?',$value,$filter); |
714 | 846 | return eval("return {$filter};"); |
715 | 847 | case 'count': |
716 | - if($value=='') return 0; |
|
848 | + if($value=='') { |
|
849 | + return 0; |
|
850 | + } |
|
717 | 851 | $value = explode(',',$value); |
718 | 852 | return count($value); |
719 | 853 | case 'sort': |
720 | 854 | case 'rsort': |
721 | - if(strpos($value,"\n")!==false) $delim="\n"; |
|
722 | - else $delim = ','; |
|
855 | + if(strpos($value,"\n")!==false) { |
|
856 | + $delim="\n"; |
|
857 | + } else { |
|
858 | + $delim = ','; |
|
859 | + } |
|
723 | 860 | $swap = explode($delim,$value); |
724 | - if(!$opt) $opt = SORT_REGULAR; |
|
725 | - else $opt = constant($opt); |
|
861 | + if(!$opt) { |
|
862 | + $opt = SORT_REGULAR; |
|
863 | + } else { |
|
864 | + $opt = constant($opt); |
|
865 | + } |
|
726 | 866 | $cmd($swap,$opt); |
727 | 867 | return implode($delim,$swap); |
728 | 868 | ##### Resource fields |
729 | 869 | case 'id': |
730 | - if($opt) return $this->getDocumentObject($opt,$key); |
|
870 | + if($opt) { |
|
871 | + return $this->getDocumentObject($opt,$key); |
|
872 | + } |
|
731 | 873 | break; |
732 | 874 | case 'type': |
733 | 875 | case 'contenttype': |
@@ -764,7 +906,9 @@ discard block |
||
764 | 906 | case 'privatemgr': |
765 | 907 | case 'content_dispo': |
766 | 908 | case 'hidemenu': |
767 | - if($cmd==='contenttype') $cmd = 'contentType'; |
|
909 | + if($cmd==='contenttype') { |
|
910 | + $cmd = 'contentType'; |
|
911 | + } |
|
768 | 912 | return $this->getDocumentObject($value,$cmd); |
769 | 913 | case 'title': |
770 | 914 | $pagetitle = $this->getDocumentObject($value,'pagetitle'); |
@@ -779,13 +923,20 @@ discard block |
||
779 | 923 | $templateName = $modx->db->getValue($rs); |
780 | 924 | return !$templateName ? '(blank)' : $templateName; |
781 | 925 | case 'getfield': |
782 | - if(!$opt) $opt = 'content'; |
|
926 | + if(!$opt) { |
|
927 | + $opt = 'content'; |
|
928 | + } |
|
783 | 929 | return $modx->getField($opt,$value); |
784 | 930 | case 'children': |
785 | 931 | case 'childids': |
786 | - if($value=='') $value = 0; // 値がない場合はルートと見なす |
|
932 | + if($value=='') { |
|
933 | + $value = 0; |
|
934 | + } |
|
935 | + // 値がない場合はルートと見なす |
|
787 | 936 | $published = 1; |
788 | - if($opt=='') $opt = 'page'; |
|
937 | + if($opt=='') { |
|
938 | + $opt = 'page'; |
|
939 | + } |
|
789 | 940 | $_ = explode(',',$opt); |
790 | 941 | $where = array(); |
791 | 942 | foreach($_ as $opt) { |
@@ -801,29 +952,43 @@ discard block |
||
801 | 952 | $where = implode(' AND ', $where); |
802 | 953 | $children = $modx->getDocumentChildren($value, $published, '0', 'id', $where); |
803 | 954 | $result = array(); |
804 | - foreach((array)$children as $child){ |
|
955 | + foreach((array)$children as $child) { |
|
805 | 956 | $result[] = $child['id']; |
806 | 957 | } |
807 | 958 | return implode(',', $result); |
808 | 959 | case 'fullurl': |
809 | - if(!is_numeric($value)) return $value; |
|
960 | + if(!is_numeric($value)) { |
|
961 | + return $value; |
|
962 | + } |
|
810 | 963 | return $modx->makeUrl($value); |
811 | 964 | case 'makeurl': |
812 | - if(!is_numeric($value)) return $value; |
|
813 | - if(!$opt) $opt = 'full'; |
|
965 | + if(!is_numeric($value)) { |
|
966 | + return $value; |
|
967 | + } |
|
968 | + if(!$opt) { |
|
969 | + $opt = 'full'; |
|
970 | + } |
|
814 | 971 | return $modx->makeUrl($value,'','',$opt); |
815 | 972 | |
816 | 973 | ##### File system |
817 | 974 | case 'getimageinfo': |
818 | 975 | case 'imageinfo': |
819 | - if(!is_file($value)) return ''; |
|
976 | + if(!is_file($value)) { |
|
977 | + return ''; |
|
978 | + } |
|
820 | 979 | $_ = getimagesize($value); |
821 | - if(!$_[0]) return ''; |
|
980 | + if(!$_[0]) { |
|
981 | + return ''; |
|
982 | + } |
|
822 | 983 | $info['width'] = $_[0]; |
823 | 984 | $info['height'] = $_[1]; |
824 | - if ($_[0] > $_[1]) $info['aspect'] = 'landscape'; |
|
825 | - elseif($_[0] < $_[1]) $info['aspect'] = 'portrait'; |
|
826 | - else $info['aspect'] = 'square'; |
|
985 | + if ($_[0] > $_[1]) { |
|
986 | + $info['aspect'] = 'landscape'; |
|
987 | + } elseif($_[0] < $_[1]) { |
|
988 | + $info['aspect'] = 'portrait'; |
|
989 | + } else { |
|
990 | + $info['aspect'] = 'square'; |
|
991 | + } |
|
827 | 992 | switch($_[2]) { |
828 | 993 | case IMAGETYPE_GIF : $info['type'] = 'gif'; break; |
829 | 994 | case IMAGETYPE_JPEG : $info['type'] = 'jpg'; break; |
@@ -842,33 +1007,47 @@ discard block |
||
842 | 1007 | |
843 | 1008 | case 'file_get_contents': |
844 | 1009 | case 'readfile': |
845 | - if(!is_file($value)) return $value; |
|
1010 | + if(!is_file($value)) { |
|
1011 | + return $value; |
|
1012 | + } |
|
846 | 1013 | $value = realpath($value); |
847 | - if(strpos($value,MODX_MANAGER_PATH)!==false) exit('Can not read core file'); |
|
1014 | + if(strpos($value,MODX_MANAGER_PATH)!==false) { |
|
1015 | + exit('Can not read core file'); |
|
1016 | + } |
|
848 | 1017 | $ext = strtolower(substr($value,-4)); |
849 | - if($ext==='.php') exit('Can not read php file'); |
|
850 | - if($ext==='.cgi') exit('Can not read cgi file'); |
|
1018 | + if($ext==='.php') { |
|
1019 | + exit('Can not read php file'); |
|
1020 | + } |
|
1021 | + if($ext==='.cgi') { |
|
1022 | + exit('Can not read cgi file'); |
|
1023 | + } |
|
851 | 1024 | return file_get_contents($value); |
852 | 1025 | case 'filesize': |
853 | - if($value == '') return ''; |
|
1026 | + if($value == '') { |
|
1027 | + return ''; |
|
1028 | + } |
|
854 | 1029 | $filename = $value; |
855 | 1030 | |
856 | 1031 | $site_url = $modx->config['site_url']; |
857 | - if(strpos($filename,$site_url) === 0) |
|
858 | - $filename = substr($filename,0,strlen($site_url)); |
|
1032 | + if(strpos($filename,$site_url) === 0) { |
|
1033 | + $filename = substr($filename,0,strlen($site_url)); |
|
1034 | + } |
|
859 | 1035 | $filename = trim($filename,'/'); |
860 | 1036 | |
861 | 1037 | $opt = trim($opt,'/'); |
862 | - if($opt!=='') $opt .= '/'; |
|
1038 | + if($opt!=='') { |
|
1039 | + $opt .= '/'; |
|
1040 | + } |
|
863 | 1041 | |
864 | 1042 | $filename = MODX_BASE_PATH.$opt.$filename; |
865 | 1043 | |
866 | - if(is_file($filename)){ |
|
1044 | + if(is_file($filename)) { |
|
867 | 1045 | clearstatcache(); |
868 | 1046 | $size = filesize($filename); |
869 | 1047 | return $size; |
1048 | + } else { |
|
1049 | + return ''; |
|
870 | 1050 | } |
871 | - else return ''; |
|
872 | 1051 | ##### User info |
873 | 1052 | case 'username': |
874 | 1053 | case 'fullname': |
@@ -896,32 +1075,47 @@ discard block |
||
896 | 1075 | $this->opt = $cmd; |
897 | 1076 | return $this->includeMdfFile('moduser'); |
898 | 1077 | case 'userinfo': |
899 | - if(empty($opt)) $this->opt = 'username'; |
|
1078 | + if(empty($opt)) { |
|
1079 | + $this->opt = 'username'; |
|
1080 | + } |
|
900 | 1081 | return $this->includeMdfFile('moduser'); |
901 | 1082 | case 'webuserinfo': |
902 | - if(empty($opt)) $this->opt = 'username'; |
|
1083 | + if(empty($opt)) { |
|
1084 | + $this->opt = 'username'; |
|
1085 | + } |
|
903 | 1086 | $this->value = -$value; |
904 | 1087 | return $this->includeMdfFile('moduser'); |
905 | 1088 | ##### Special functions |
906 | 1089 | case 'ifempty': |
907 | 1090 | case '_default': |
908 | 1091 | case 'default': |
909 | - if (empty($value)) return $opt; break; |
|
1092 | + if (empty($value)) { |
|
1093 | + return $opt; |
|
1094 | + } |
|
1095 | + break; |
|
910 | 1096 | case 'ifnotempty': |
911 | - if (!empty($value)) return $opt; break; |
|
1097 | + if (!empty($value)) { |
|
1098 | + return $opt; |
|
1099 | + } |
|
1100 | + break; |
|
912 | 1101 | case 'datagrid': |
913 | 1102 | include_once(MODX_CORE_PATH . 'controls/datagrid.class.php'); |
914 | 1103 | $grd = new DataGrid(null, trim($value)); |
915 | 1104 | $grd->itemStyle = ''; |
916 | 1105 | $grd->altItemStyle = ''; |
917 | 1106 | $pos = strpos($value,"\n"); |
918 | - if($pos) $_ = substr($value,0,$pos); |
|
919 | - else $_ = $pos; |
|
1107 | + if($pos) { |
|
1108 | + $_ = substr($value,0,$pos); |
|
1109 | + } else { |
|
1110 | + $_ = $pos; |
|
1111 | + } |
|
920 | 1112 | $grd->cdelim = strpos($_,"\t")!==false ? 'tab' : ','; |
921 | 1113 | return $grd->render(); |
922 | 1114 | case 'rotate': |
923 | 1115 | case 'evenodd': |
924 | - if(strpos($opt,',')===false) $opt = 'odd,even'; |
|
1116 | + if(strpos($opt,',')===false) { |
|
1117 | + $opt = 'odd,even'; |
|
1118 | + } |
|
925 | 1119 | $_ = explode(',', $opt); |
926 | 1120 | $c = count($_); |
927 | 1121 | $i = $value + $c; |
@@ -930,7 +1124,9 @@ discard block |
||
930 | 1124 | case 'takeval': |
931 | 1125 | $arr = explode(",",$opt); |
932 | 1126 | $idx = $value; |
933 | - if(!is_numeric($idx)) return $value; |
|
1127 | + if(!is_numeric($idx)) { |
|
1128 | + return $value; |
|
1129 | + } |
|
934 | 1130 | return $arr[$idx]; |
935 | 1131 | case 'getimage': |
936 | 1132 | return $this->includeMdfFile('getimage'); |
@@ -938,14 +1134,18 @@ discard block |
||
938 | 1134 | return $modx->nicesize($value); |
939 | 1135 | case 'googlemap': |
940 | 1136 | case 'googlemaps': |
941 | - if(empty($opt)) $opt = 'border:none;width:500px;height:350px;'; |
|
1137 | + if(empty($opt)) { |
|
1138 | + $opt = 'border:none;width:500px;height:350px;'; |
|
1139 | + } |
|
942 | 1140 | $tpl = '<iframe style="[+style+]" src="https://maps.google.co.jp/maps?ll=[+value+]&output=embed&z=15"></iframe>'; |
943 | 1141 | $ph['style'] = $opt; |
944 | 1142 | $ph['value'] = $value; |
945 | 1143 | return $modx->parseText($tpl,$ph); |
946 | 1144 | case 'youtube': |
947 | 1145 | case 'youtube16x9': |
948 | - if(empty($opt)) $opt = 560; |
|
1146 | + if(empty($opt)) { |
|
1147 | + $opt = 560; |
|
1148 | + } |
|
949 | 1149 | $h = round($opt*0.5625); |
950 | 1150 | $tpl = '<iframe width="%s" height="%s" src="https://www.youtube.com/embed/%s" frameborder="0" allowfullscreen></iframe>'; |
951 | 1151 | return sprintf($tpl,$opt,$h,$value); |
@@ -978,7 +1178,8 @@ discard block |
||
978 | 1178 | return $value; |
979 | 1179 | } |
980 | 1180 | |
981 | - public function includeMdfFile($cmd) { |
|
1181 | + public function includeMdfFile($cmd) |
|
1182 | + { |
|
982 | 1183 | $modx = evolutionCMS(); |
983 | 1184 | $key = $this->key; |
984 | 1185 | $value = $this->value; |
@@ -989,55 +1190,65 @@ discard block |
||
989 | 1190 | public function getValueFromElement($key, $value, $cmd, $opt) |
990 | 1191 | { |
991 | 1192 | $modx = evolutionCMS(); |
992 | - if( isset($modx->snippetCache[$this->elmName]) ) |
|
993 | - { |
|
1193 | + if( isset($modx->snippetCache[$this->elmName]) ) { |
|
994 | 1194 | $php = $modx->snippetCache[$this->elmName]; |
995 | - } |
|
996 | - else |
|
997 | - { |
|
1195 | + } else { |
|
998 | 1196 | $esc_elmName = $modx->db->escape($this->elmName); |
999 | 1197 | $result = $modx->db->select('snippet','[+prefix+]site_snippets',"name='{$esc_elmName}'"); |
1000 | 1198 | $total = $modx->db->getRecordCount($result); |
1001 | - if($total == 1) |
|
1002 | - { |
|
1199 | + if($total == 1) { |
|
1003 | 1200 | $row = $modx->db->getRow($result); |
1004 | 1201 | $php = $row['snippet']; |
1005 | - } |
|
1006 | - elseif($total == 0) |
|
1007 | - { |
|
1202 | + } elseif($total == 0) { |
|
1008 | 1203 | $assets_path = MODX_BASE_PATH.'assets/'; |
1009 | - if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) |
|
1010 | - $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
1011 | - elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) |
|
1012 | - $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
1013 | - elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) |
|
1014 | - $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
1015 | - else $modifiers_path = false; |
|
1204 | + if(is_file($assets_path."modifiers/mdf_{$cmd}.inc.php")) { |
|
1205 | + $modifiers_path = $assets_path."modifiers/mdf_{$cmd}.inc.php"; |
|
1206 | + } elseif(is_file($assets_path."plugins/phx/modifiers/{$cmd}.phx.php")) { |
|
1207 | + $modifiers_path = $assets_path."plugins/phx/modifiers/{$cmd}.phx.php"; |
|
1208 | + } elseif(is_file(MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php")) { |
|
1209 | + $modifiers_path = MODX_CORE_PATH."extenders/modifiers/mdf_{$cmd}.inc.php"; |
|
1210 | + } else { |
|
1211 | + $modifiers_path = false; |
|
1212 | + } |
|
1016 | 1213 | |
1017 | 1214 | if($modifiers_path !== false) { |
1018 | 1215 | $php = @file_get_contents($modifiers_path); |
1019 | 1216 | $php = trim($php); |
1020 | - if(substr($php,0,5)==='<?php') $php = substr($php,6); |
|
1021 | - if(substr($php,0,2)==='<?') $php = substr($php,3); |
|
1022 | - if(substr($php,-2)==='?>') $php = substr($php,0,-2); |
|
1023 | - if($this->elmName!=='') |
|
1024 | - $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
1025 | - } |
|
1026 | - else |
|
1027 | - $php = false; |
|
1217 | + if(substr($php,0,5)==='<?php') { |
|
1218 | + $php = substr($php,6); |
|
1219 | + } |
|
1220 | + if(substr($php,0,2)==='<?') { |
|
1221 | + $php = substr($php,3); |
|
1222 | + } |
|
1223 | + if(substr($php,-2)==='?>') { |
|
1224 | + $php = substr($php,0,-2); |
|
1225 | + } |
|
1226 | + if($this->elmName!=='') { |
|
1227 | + $modx->snippetCache[$this->elmName.'Props'] = ''; |
|
1228 | + } |
|
1229 | + } else { |
|
1230 | + $php = false; |
|
1231 | + } |
|
1232 | + } else { |
|
1233 | + $php = false; |
|
1234 | + } |
|
1235 | + if($this->elmName!=='') { |
|
1236 | + $modx->snippetCache[$this->elmName]= $php; |
|
1028 | 1237 | } |
1029 | - else $php = false; |
|
1030 | - if($this->elmName!=='') $modx->snippetCache[$this->elmName]= $php; |
|
1031 | 1238 | } |
1032 | - if($php==='') $php=false; |
|
1239 | + if($php==='') { |
|
1240 | + $php=false; |
|
1241 | + } |
|
1033 | 1242 | |
1034 | - if($php===false) $html = $modx->getChunk($this->elmName); |
|
1035 | - else $html = false; |
|
1243 | + if($php===false) { |
|
1244 | + $html = $modx->getChunk($this->elmName); |
|
1245 | + } else { |
|
1246 | + $html = false; |
|
1247 | + } |
|
1036 | 1248 | |
1037 | 1249 | $self = '[+output+]'; |
1038 | 1250 | |
1039 | - if($php !== false) |
|
1040 | - { |
|
1251 | + if($php !== false) { |
|
1041 | 1252 | ob_start(); |
1042 | 1253 | $options = $opt; |
1043 | 1254 | $output = $value; |
@@ -1049,19 +1260,19 @@ discard block |
||
1049 | 1260 | $this->vars['options'] = & $opt; |
1050 | 1261 | $custom = eval($php); |
1051 | 1262 | $msg = ob_get_contents(); |
1052 | - if($value===$this->bt) $value = $msg . $custom; |
|
1263 | + if($value===$this->bt) { |
|
1264 | + $value = $msg . $custom; |
|
1265 | + } |
|
1053 | 1266 | ob_end_clean(); |
1054 | - } |
|
1055 | - elseif($html!==false && isset($value) && $value!=='') |
|
1056 | - { |
|
1267 | + } elseif($html!==false && isset($value) && $value!=='') { |
|
1057 | 1268 | $html = str_replace(array($self,'[+value+]'), $value, $html); |
1058 | 1269 | $value = str_replace(array('[+options+]','[+param+]'), $opt, $html); |
1270 | + } else { |
|
1271 | + return false; |
|
1059 | 1272 | } |
1060 | - else return false; |
|
1061 | 1273 | |
1062 | 1274 | if($php===false && $html===false && $value!=='' |
1063 | - && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) |
|
1064 | - { |
|
1275 | + && (strpos($cmd,'[+value+]')!==false || strpos($cmd,$self)!==false)) { |
|
1065 | 1276 | $value = str_replace(array('[+value+]',$self),$value,$cmd); |
1066 | 1277 | } |
1067 | 1278 | return $value; |
@@ -1071,23 +1282,39 @@ discard block |
||
1071 | 1282 | { |
1072 | 1283 | $modx = evolutionCMS(); |
1073 | 1284 | |
1074 | - if(strpos($content,'[')===false && strpos($content,'{')===false) return $content; |
|
1285 | + if(strpos($content,'[')===false && strpos($content,'{')===false) { |
|
1286 | + return $content; |
|
1287 | + } |
|
1075 | 1288 | |
1076 | - if(!$modx->maxParserPasses) $modx->maxParserPasses = 10; |
|
1289 | + if(!$modx->maxParserPasses) { |
|
1290 | + $modx->maxParserPasses = 10; |
|
1291 | + } |
|
1077 | 1292 | $bt=''; |
1078 | 1293 | $i=0; |
1079 | - while($bt!==$content) |
|
1080 | - { |
|
1294 | + while($bt!==$content) { |
|
1081 | 1295 | $bt = $content; |
1082 | - if(strpos($content,'[*')!==false && $modx->documentIdentifier) |
|
1083 | - $content = $modx->mergeDocumentContent($content); |
|
1084 | - if(strpos($content,'[(')!==false) $content = $modx->mergeSettingsContent($content); |
|
1085 | - if(strpos($content,'{{')!==false) $content = $modx->mergeChunkContent($content); |
|
1086 | - if(strpos($content,'[!')!==false) $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1087 | - if(strpos($content,'[[')!==false) $content = $modx->evalSnippets($content); |
|
1088 | - |
|
1089 | - if($content===$bt) break; |
|
1090 | - if($modx->maxParserPasses < $i) break; |
|
1296 | + if(strpos($content,'[*')!==false && $modx->documentIdentifier) { |
|
1297 | + $content = $modx->mergeDocumentContent($content); |
|
1298 | + } |
|
1299 | + if(strpos($content,'[(')!==false) { |
|
1300 | + $content = $modx->mergeSettingsContent($content); |
|
1301 | + } |
|
1302 | + if(strpos($content,'{{')!==false) { |
|
1303 | + $content = $modx->mergeChunkContent($content); |
|
1304 | + } |
|
1305 | + if(strpos($content,'[!')!==false) { |
|
1306 | + $content = str_replace(array('[!','!]'),array('[[',']]'),$content); |
|
1307 | + } |
|
1308 | + if(strpos($content,'[[')!==false) { |
|
1309 | + $content = $modx->evalSnippets($content); |
|
1310 | + } |
|
1311 | + |
|
1312 | + if($content===$bt) { |
|
1313 | + break; |
|
1314 | + } |
|
1315 | + if($modx->maxParserPasses < $i) { |
|
1316 | + break; |
|
1317 | + } |
|
1091 | 1318 | $i++; |
1092 | 1319 | } |
1093 | 1320 | return $content; |
@@ -1098,103 +1325,138 @@ discard block |
||
1098 | 1325 | $modx = evolutionCMS(); |
1099 | 1326 | |
1100 | 1327 | $target = trim($target); |
1101 | - if(empty($target)) $target = $modx->config['site_start']; |
|
1102 | - if(preg_match('@^[1-9][0-9]*$@',$target)) $method='id'; |
|
1103 | - else $method = 'alias'; |
|
1328 | + if(empty($target)) { |
|
1329 | + $target = $modx->config['site_start']; |
|
1330 | + } |
|
1331 | + if(preg_match('@^[1-9][0-9]*$@',$target)) { |
|
1332 | + $method='id'; |
|
1333 | + } else { |
|
1334 | + $method = 'alias'; |
|
1335 | + } |
|
1104 | 1336 | |
1105 | - if(!isset($this->documentObject[$target])) |
|
1106 | - { |
|
1337 | + if(!isset($this->documentObject[$target])) { |
|
1107 | 1338 | $this->documentObject[$target] = $modx->getDocumentObject($method,$target,'direct'); |
1108 | 1339 | } |
1109 | 1340 | |
1110 | - if($this->documentObject[$target]['publishedon']==='0') |
|
1111 | - return ''; |
|
1112 | - elseif(isset($this->documentObject[$target][$field])) |
|
1113 | - { |
|
1114 | - if(is_array($this->documentObject[$target][$field])) |
|
1115 | - { |
|
1341 | + if($this->documentObject[$target]['publishedon']==='0') { |
|
1342 | + return ''; |
|
1343 | + } elseif(isset($this->documentObject[$target][$field])) { |
|
1344 | + if(is_array($this->documentObject[$target][$field])) { |
|
1116 | 1345 | $a = $modx->getTemplateVarOutput($field,$target); |
1117 | 1346 | $this->documentObject[$target][$field] = $a[$field]; |
1118 | 1347 | } |
1348 | + } else { |
|
1349 | + $this->documentObject[$target][$field] = false; |
|
1119 | 1350 | } |
1120 | - else $this->documentObject[$target][$field] = false; |
|
1121 | 1351 | |
1122 | 1352 | return $this->documentObject[$target][$field]; |
1123 | 1353 | } |
1124 | 1354 | |
1125 | - public function setPlaceholders($value = '', $key = '', $path = '') { |
|
1126 | - if($path!=='') $key = "{$path}.{$key}"; |
|
1355 | + public function setPlaceholders($value = '', $key = '', $path = '') |
|
1356 | + { |
|
1357 | + if($path!=='') { |
|
1358 | + $key = "{$path}.{$key}"; |
|
1359 | + } |
|
1127 | 1360 | if (is_array($value)) { |
1128 | 1361 | foreach ($value as $subkey => $subval) { |
1129 | 1362 | $this->setPlaceholders($subval, $subkey, $key); |
1130 | 1363 | } |
1364 | + } else { |
|
1365 | + $this->setModifiersVariable($key, $value); |
|
1131 | 1366 | } |
1132 | - else $this->setModifiersVariable($key, $value); |
|
1133 | 1367 | } |
1134 | 1368 | |
1135 | 1369 | // Sets a placeholder variable which can only be access by Modifiers |
1136 | - public function setModifiersVariable($key, $value) { |
|
1137 | - if ($key != 'phx' && $key != 'dummy') $this->placeholders[$key] = $value; |
|
1370 | + public function setModifiersVariable($key, $value) |
|
1371 | + { |
|
1372 | + if ($key != 'phx' && $key != 'dummy') { |
|
1373 | + $this->placeholders[$key] = $value; |
|
1374 | + } |
|
1138 | 1375 | } |
1139 | 1376 | |
1140 | 1377 | //mbstring |
1141 | - public function substr($str, $s, $l = null) { |
|
1378 | + public function substr($str, $s, $l = null) |
|
1379 | + { |
|
1142 | 1380 | $modx = evolutionCMS(); |
1143 | - if(is_null($l)) $l = $this->strlen($str); |
|
1144 | - if (function_exists('mb_substr')) |
|
1145 | - { |
|
1146 | - if(strpos($str,"\r")!==false) |
|
1147 | - $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1381 | + if(is_null($l)) { |
|
1382 | + $l = $this->strlen($str); |
|
1383 | + } |
|
1384 | + if (function_exists('mb_substr')) { |
|
1385 | + if(strpos($str,"\r")!==false) { |
|
1386 | + $str = str_replace(array("\r\n","\r"), "\n", $str); |
|
1387 | + } |
|
1148 | 1388 | return mb_substr($str, $s, $l, $modx->config['modx_charset']); |
1149 | 1389 | } |
1150 | 1390 | return substr($str, $s, $l); |
1151 | 1391 | } |
1152 | - public function strpos($haystack,$needle,$offset=0) { |
|
1392 | + public function strpos($haystack,$needle,$offset=0) |
|
1393 | + { |
|
1153 | 1394 | $modx = evolutionCMS(); |
1154 | - if (function_exists('mb_strpos')) return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1395 | + if (function_exists('mb_strpos')) { |
|
1396 | + return mb_strpos($haystack,$needle,$offset,$modx->config['modx_charset']); |
|
1397 | + } |
|
1155 | 1398 | return strpos($haystack,$needle,$offset); |
1156 | 1399 | } |
1157 | - public function strlen($str) { |
|
1400 | + public function strlen($str) |
|
1401 | + { |
|
1158 | 1402 | $modx = evolutionCMS(); |
1159 | - if (function_exists('mb_strlen')) return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1403 | + if (function_exists('mb_strlen')) { |
|
1404 | + return mb_strlen(str_replace("\r\n", "\n", $str),$modx->config['modx_charset']); |
|
1405 | + } |
|
1160 | 1406 | return strlen($str); |
1161 | 1407 | } |
1162 | - public function strtolower($str) { |
|
1163 | - if (function_exists('mb_strtolower')) return mb_strtolower($str); |
|
1408 | + public function strtolower($str) |
|
1409 | + { |
|
1410 | + if (function_exists('mb_strtolower')) { |
|
1411 | + return mb_strtolower($str); |
|
1412 | + } |
|
1164 | 1413 | return strtolower($str); |
1165 | 1414 | } |
1166 | - public function strtoupper($str) { |
|
1167 | - if (function_exists('mb_strtoupper')) return mb_strtoupper($str); |
|
1415 | + public function strtoupper($str) |
|
1416 | + { |
|
1417 | + if (function_exists('mb_strtoupper')) { |
|
1418 | + return mb_strtoupper($str); |
|
1419 | + } |
|
1168 | 1420 | return strtoupper($str); |
1169 | 1421 | } |
1170 | - public function ucfirst($str) { |
|
1171 | - if (function_exists('mb_strtoupper')) |
|
1172 | - return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1422 | + public function ucfirst($str) |
|
1423 | + { |
|
1424 | + if (function_exists('mb_strtoupper')) { |
|
1425 | + return mb_strtoupper($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1426 | + } |
|
1173 | 1427 | return ucfirst($str); |
1174 | 1428 | } |
1175 | - public function lcfirst($str) { |
|
1176 | - if (function_exists('mb_strtolower')) |
|
1177 | - return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1429 | + public function lcfirst($str) |
|
1430 | + { |
|
1431 | + if (function_exists('mb_strtolower')) { |
|
1432 | + return mb_strtolower($this->substr($str, 0, 1)).$this->substr($str, 1, $this->strlen($str)); |
|
1433 | + } |
|
1178 | 1434 | return lcfirst($str); |
1179 | 1435 | } |
1180 | - public function ucwords($str) { |
|
1181 | - if (function_exists('mb_convert_case')) |
|
1182 | - return mb_convert_case($str, MB_CASE_TITLE); |
|
1436 | + public function ucwords($str) |
|
1437 | + { |
|
1438 | + if (function_exists('mb_convert_case')) { |
|
1439 | + return mb_convert_case($str, MB_CASE_TITLE); |
|
1440 | + } |
|
1183 | 1441 | return ucwords($str); |
1184 | 1442 | } |
1185 | - public function strrev($str) { |
|
1443 | + public function strrev($str) |
|
1444 | + { |
|
1186 | 1445 | preg_match_all('/./us', $str, $ar); |
1187 | 1446 | return implode(array_reverse($ar[0])); |
1188 | 1447 | } |
1189 | - public function str_shuffle($str) { |
|
1448 | + public function str_shuffle($str) |
|
1449 | + { |
|
1190 | 1450 | preg_match_all('/./us', $str, $ar); |
1191 | 1451 | shuffle($ar[0]); |
1192 | 1452 | return implode($ar[0]); |
1193 | 1453 | } |
1194 | - public function str_word_count($str) { |
|
1454 | + public function str_word_count($str) |
|
1455 | + { |
|
1195 | 1456 | return count(preg_split('~[^\p{L}\p{N}\']+~u',$str)); |
1196 | 1457 | } |
1197 | - public function strip_tags($value,$params='') { |
|
1458 | + public function strip_tags($value,$params='') |
|
1459 | + { |
|
1198 | 1460 | $modx = evolutionCMS(); |
1199 | 1461 | |
1200 | 1462 | if(stripos($params,'style')===false && stripos($value,'</style>')!==false) { |
@@ -38,13 +38,13 @@ discard block |
||
38 | 38 | case 'publishedon': |
39 | 39 | case 'pub_date': |
40 | 40 | case 'unpub_date': |
41 | - $sortby = sprintf('CASE WHEN %s IS NULL THEN 1 ELSE 0 END, %s', 'sc.' . $_SESSION['tree_sortby'], 'sc.' . $_SESSION['tree_sortby']); |
|
41 | + $sortby = sprintf('CASE WHEN %s IS NULL THEN 1 ELSE 0 END, %s', 'sc.'.$_SESSION['tree_sortby'], 'sc.'.$_SESSION['tree_sortby']); |
|
42 | 42 | break; |
43 | 43 | default: |
44 | - $sortby = 'sc.' . $_SESSION['tree_sortby']; |
|
44 | + $sortby = 'sc.'.$_SESSION['tree_sortby']; |
|
45 | 45 | }; |
46 | 46 | |
47 | - $orderby = $modx->db->escape($sortby . ' ' . $_SESSION['tree_sortdir']); |
|
47 | + $orderby = $modx->db->escape($sortby.' '.$_SESSION['tree_sortdir']); |
|
48 | 48 | |
49 | 49 | // Folder sorting gets special setup ;) Add menuindex and pagetitle |
50 | 50 | if ($_SESSION['tree_sortby'] == 'isfolder') { |
@@ -58,11 +58,11 @@ discard block |
||
58 | 58 | $docgrp = (isset($_SESSION['mgrDocgroups']) && is_array($_SESSION['mgrDocgroups'])) ? implode(',', $_SESSION['mgrDocgroups']) : ''; |
59 | 59 | $showProtected = false; |
60 | 60 | if (isset ($modx->config['tree_show_protected'])) { |
61 | - $showProtected = (boolean)$modx->config['tree_show_protected']; |
|
61 | + $showProtected = (boolean) $modx->config['tree_show_protected']; |
|
62 | 62 | } |
63 | - $mgrRole = (isset ($_SESSION['mgrRole']) && (string)$_SESSION['mgrRole'] === '1') ? '1' : '0'; |
|
63 | + $mgrRole = (isset ($_SESSION['mgrRole']) && (string) $_SESSION['mgrRole'] === '1') ? '1' : '0'; |
|
64 | 64 | if ($showProtected == false) { |
65 | - $access = "AND (1={$mgrRole} OR sc.privatemgr=0" . (!$docgrp ? ')' : " OR dg.document_group IN ({$docgrp}))"); |
|
65 | + $access = "AND (1={$mgrRole} OR sc.privatemgr=0".(!$docgrp ? ')' : " OR dg.document_group IN ({$docgrp}))"); |
|
66 | 66 | } else { |
67 | 67 | $access = ''; |
68 | 68 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | $weblinkDisplay = $row['type'] == 'reference' ? sprintf(' %s', $_style['tree_linkgo']) : ''; |
101 | - $pageIdDisplay = '<small>(' . ($modx_textdir ? '‏' : '') . $row['id'] . ')</small>'; |
|
101 | + $pageIdDisplay = '<small>('.($modx_textdir ? '‏' : '').$row['id'].')</small>'; |
|
102 | 102 | |
103 | 103 | // Prepare displaying user-locks |
104 | 104 | $lockedByUser = ''; |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | 'element_type' => $_lang["lock_element_type_7"], |
110 | 110 | 'lasthit_df' => $rowLock['lasthit_df'] |
111 | 111 | )); |
112 | - $lockedByUser = '<span title="' . $title . '" class="editResource">' . $_style['tree_preview_resource'] . '</span>'; |
|
112 | + $lockedByUser = '<span title="'.$title.'" class="editResource">'.$_style['tree_preview_resource'].'</span>'; |
|
113 | 113 | } else { |
114 | 114 | $title = $modx->parseText($_lang["lock_element_locked_by"], array( |
115 | 115 | 'element_type' => $_lang["lock_element_type_7"], |
@@ -117,9 +117,9 @@ discard block |
||
117 | 117 | 'lasthit_df' => $rowLock['lasthit_df'] |
118 | 118 | )); |
119 | 119 | if ($modx->hasPermission('remove_locks')) { |
120 | - $lockedByUser = '<span onclick="modx.tree.unlockElement(7, ' . $row['id'] . ', this);return false;" title="' . $title . '" class="lockedResource">' . $_style['icons_secured'] . '</span>'; |
|
120 | + $lockedByUser = '<span onclick="modx.tree.unlockElement(7, '.$row['id'].', this);return false;" title="'.$title.'" class="lockedResource">'.$_style['icons_secured'].'</span>'; |
|
121 | 121 | } else { |
122 | - $lockedByUser = '<span title="' . $title . '" class="lockedResource">' . $_style['icons_secured'] . '</span>'; |
|
122 | + $lockedByUser = '<span title="'.$title.'" class="lockedResource">'.$_style['icons_secured'].'</span>'; |
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | } |
@@ -128,22 +128,22 @@ discard block |
||
128 | 128 | |
129 | 129 | $title = ''; |
130 | 130 | if (isDateNode($nodeNameSource)) { |
131 | - $title = $_lang['pagetitle'] . ': ' . $row['pagetitle'] . '[+lf+]'; |
|
131 | + $title = $_lang['pagetitle'].': '.$row['pagetitle'].'[+lf+]'; |
|
132 | 132 | } |
133 | - $title .= $_lang['id'] . ': ' . $row['id']; |
|
134 | - $title .= '[+lf+]' . $_lang['resource_opt_menu_title'] . ': ' . $row['menutitle']; |
|
135 | - $title .= '[+lf+]' . $_lang['resource_opt_menu_index'] . ': ' . $row['menuindex']; |
|
136 | - $title .= '[+lf+]' . $_lang['alias'] . ': ' . (!empty($row['alias']) ? $row['alias'] : '-'); |
|
137 | - $title .= '[+lf+]' . $_lang['template'] . ': ' . $row['templatename']; |
|
138 | - $title .= '[+lf+]' . $_lang['publish_date'] . ': ' . $modx->toDateFormat($row['pub_date']); |
|
139 | - $title .= '[+lf+]' . $_lang['unpublish_date'] . ': ' . $modx->toDateFormat($row['unpub_date']); |
|
140 | - $title .= '[+lf+]' . $_lang['page_data_web_access'] . ': ' . ($row['privateweb'] ? $_lang['private'] : $_lang['public']); |
|
141 | - $title .= '[+lf+]' . $_lang['page_data_mgr_access'] . ': ' . ($row['privatemgr'] ? $_lang['private'] : $_lang['public']); |
|
142 | - $title .= '[+lf+]' . $_lang['resource_opt_richtext'] . ': ' . ($row['richtext'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
143 | - $title .= '[+lf+]' . $_lang['page_data_searchable'] . ': ' . ($row['searchable'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
144 | - $title .= '[+lf+]' . $_lang['page_data_cacheable'] . ': ' . ($row['cacheable'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
133 | + $title .= $_lang['id'].': '.$row['id']; |
|
134 | + $title .= '[+lf+]'.$_lang['resource_opt_menu_title'].': '.$row['menutitle']; |
|
135 | + $title .= '[+lf+]'.$_lang['resource_opt_menu_index'].': '.$row['menuindex']; |
|
136 | + $title .= '[+lf+]'.$_lang['alias'].': '.(!empty($row['alias']) ? $row['alias'] : '-'); |
|
137 | + $title .= '[+lf+]'.$_lang['template'].': '.$row['templatename']; |
|
138 | + $title .= '[+lf+]'.$_lang['publish_date'].': '.$modx->toDateFormat($row['pub_date']); |
|
139 | + $title .= '[+lf+]'.$_lang['unpublish_date'].': '.$modx->toDateFormat($row['unpub_date']); |
|
140 | + $title .= '[+lf+]'.$_lang['page_data_web_access'].': '.($row['privateweb'] ? $_lang['private'] : $_lang['public']); |
|
141 | + $title .= '[+lf+]'.$_lang['page_data_mgr_access'].': '.($row['privatemgr'] ? $_lang['private'] : $_lang['public']); |
|
142 | + $title .= '[+lf+]'.$_lang['resource_opt_richtext'].': '.($row['richtext'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
143 | + $title .= '[+lf+]'.$_lang['page_data_searchable'].': '.($row['searchable'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
144 | + $title .= '[+lf+]'.$_lang['page_data_cacheable'].': '.($row['cacheable'] == 0 ? $_lang['no'] : $_lang['yes']); |
|
145 | 145 | $title = $modx->htmlspecialchars($title); |
146 | - $title = str_replace('[+lf+]', ' ', $title); // replace line-breaks with empty space as fall-back |
|
146 | + $title = str_replace('[+lf+]', ' ', $title); // replace line-breaks with empty space as fall-back |
|
147 | 147 | |
148 | 148 | $data = array( |
149 | 149 | 'id' => $row['id'], |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | } |
228 | 228 | |
229 | 229 | if ($ph['contextmenu']) { |
230 | - $ph['contextmenu'] = ' data-contextmenu="' . _htmlentities($ph['contextmenu']) . '"'; |
|
230 | + $ph['contextmenu'] = ' data-contextmenu="'._htmlentities($ph['contextmenu']).'"'; |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | if ($_SESSION['tree_show_only_folders']) { |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | } |
286 | 286 | |
287 | 287 | if ($ph['contextmenu']) { |
288 | - $ph['contextmenu'] = ' data-contextmenu="' . _htmlentities($ph['contextmenu']) . '"'; |
|
288 | + $ph['contextmenu'] = ' data-contextmenu="'._htmlentities($ph['contextmenu']).'"'; |
|
289 | 289 | } |
290 | 290 | |
291 | 291 | $node .= $modx->parseText($tpl, $ph); |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | } |
324 | 324 | |
325 | 325 | if ($ph['contextmenu']) { |
326 | - $ph['contextmenu'] = ' data-contextmenu="' . _htmlentities($ph['contextmenu']) . '"'; |
|
326 | + $ph['contextmenu'] = ' data-contextmenu="'._htmlentities($ph['contextmenu']).'"'; |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | $node .= $modx->parseText($tpl, $ph); |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | } |
375 | 375 | |
376 | 376 | if ($ph['contextmenu']) { |
377 | - $ph['contextmenu'] = ' data-contextmenu="' . _htmlentities($ph['contextmenu']) . '"'; |
|
377 | + $ph['contextmenu'] = ' data-contextmenu="'._htmlentities($ph['contextmenu']).'"'; |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | $node .= $modx->parseText($tpl, $ph); |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | } |
417 | 417 | |
418 | 418 | if ($ph['contextmenu']) { |
419 | - $ph['contextmenu'] = ' data-contextmenu="' . _htmlentities($ph['contextmenu']) . '"'; |
|
419 | + $ph['contextmenu'] = ' data-contextmenu="'._htmlentities($ph['contextmenu']).'"'; |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | $node .= $modx->parseText($tpl, $ph); |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | $nodetitle .= $modx->config['friendly_url_suffix']; |
494 | 494 | } |
495 | 495 | } |
496 | - $nodetitle = $modx->config['friendly_url_prefix'] . $nodetitle; |
|
496 | + $nodetitle = $modx->config['friendly_url_prefix'].$nodetitle; |
|
497 | 497 | break; |
498 | 498 | case 'pagetitle': |
499 | 499 | $nodetitle = $row['pagetitle']; |
@@ -553,7 +553,7 @@ discard block |
||
553 | 553 | { |
554 | 554 | $modx = evolutionCMS(); |
555 | 555 | |
556 | - return (int)$modx->db->getValue($modx->db->query('SELECT count(*) FROM ' . $modx->getFullTableName('site_content') . ' WHERE parent=' . $parent . ' AND isfolder=' . $isfolder . ' ')); |
|
556 | + return (int) $modx->db->getValue($modx->db->query('SELECT count(*) FROM '.$modx->getFullTableName('site_content').' WHERE parent='.$parent.' AND isfolder='.$isfolder.' ')); |
|
557 | 557 | } |
558 | 558 | |
559 | 559 | /** |
@@ -1,13 +1,13 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
3 | - die('<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.'); |
|
3 | + die('<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
7 | 7 | |
8 | 8 | if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
9 | - // seems to be a new install - send the user to the configuration page |
|
10 | - exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>'); |
|
9 | + // seems to be a new install - send the user to the configuration page |
|
10 | + exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>'); |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | // set placeholders |
@@ -17,70 +17,70 @@ discard block |
||
17 | 17 | |
18 | 18 | // setup message info |
19 | 19 | if($modx->hasPermission('messages')) { |
20 | - include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
21 | - $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
|
22 | - $_SESSION['nrnewmessages'] = $nrnewmessages; |
|
23 | - |
|
24 | - $msg = array(); |
|
25 | - $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']); |
|
26 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
27 | - $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages); |
|
28 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
29 | - $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
|
30 | - $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages); |
|
31 | - $ph['MessageInfo'] = implode("\n", $msg); |
|
20 | + include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
21 | + $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
|
22 | + $_SESSION['nrnewmessages'] = $nrnewmessages; |
|
23 | + |
|
24 | + $msg = array(); |
|
25 | + $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']); |
|
26 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
27 | + $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages); |
|
28 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
29 | + $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
|
30 | + $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages); |
|
31 | + $ph['MessageInfo'] = implode("\n", $msg); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | // setup icons |
35 | 35 | if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
36 | - $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
|
37 | - $ph['SecurityIcon'] = wrapIcon($icon, 75); |
|
36 | + $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
|
37 | + $ph['SecurityIcon'] = wrapIcon($icon, 75); |
|
38 | 38 | } |
39 | 39 | if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
40 | - $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
|
41 | - $ph['WebUserIcon'] = wrapIcon($icon, 99); |
|
40 | + $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
|
41 | + $ph['WebUserIcon'] = wrapIcon($icon, 99); |
|
42 | 42 | } |
43 | 43 | if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
44 | - $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
|
45 | - $ph['ModulesIcon'] = wrapIcon($icon, 106); |
|
44 | + $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
|
45 | + $ph['ModulesIcon'] = wrapIcon($icon, 106); |
|
46 | 46 | } |
47 | 47 | if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
48 | - $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
|
49 | - $ph['ResourcesIcon'] = wrapIcon($icon, 76); |
|
48 | + $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
|
49 | + $ph['ResourcesIcon'] = wrapIcon($icon, 76); |
|
50 | 50 | } |
51 | 51 | if($modx->hasPermission('bk_manager')) { |
52 | - $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
|
53 | - $ph['BackupIcon'] = wrapIcon($icon, 93); |
|
52 | + $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
|
53 | + $ph['BackupIcon'] = wrapIcon($icon, 93); |
|
54 | 54 | } |
55 | 55 | if($modx->hasPermission('help')) { |
56 | - $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
|
57 | - $ph['HelpIcon'] = wrapIcon($icon, 9); |
|
56 | + $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
|
57 | + $ph['HelpIcon'] = wrapIcon($icon, 9); |
|
58 | 58 | } |
59 | 59 | // do some config checks |
60 | 60 | if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
61 | - include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
62 | - if($config_check_results != $_lang['configcheck_ok']) { |
|
63 | - $ph['config_check_results'] = $config_check_results; |
|
64 | - $ph['config_display'] = 'block'; |
|
65 | - } else { |
|
66 | - $ph['config_display'] = 'none'; |
|
67 | - } |
|
61 | + include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
62 | + if($config_check_results != $_lang['configcheck_ok']) { |
|
63 | + $ph['config_check_results'] = $config_check_results; |
|
64 | + $ph['config_display'] = 'block'; |
|
65 | + } else { |
|
66 | + $ph['config_display'] = 'none'; |
|
67 | + } |
|
68 | 68 | } else { |
69 | - $ph['config_display'] = 'none'; |
|
69 | + $ph['config_display'] = 'none'; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | // Check logout-reminder |
73 | 73 | if(isset($_SESSION['show_logout_reminder'])) { |
74 | - switch($_SESSION['show_logout_reminder']['type']) { |
|
75 | - case 'logout_reminder': |
|
76 | - $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
|
77 | - $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']); |
|
78 | - break; |
|
79 | - } |
|
80 | - $ph['show_logout_reminder'] = 'block'; |
|
81 | - unset($_SESSION['show_logout_reminder']); |
|
74 | + switch($_SESSION['show_logout_reminder']['type']) { |
|
75 | + case 'logout_reminder': |
|
76 | + $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
|
77 | + $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']); |
|
78 | + break; |
|
79 | + } |
|
80 | + $ph['show_logout_reminder'] = 'block'; |
|
81 | + unset($_SESSION['show_logout_reminder']); |
|
82 | 82 | } else { |
83 | - $ph['show_logout_reminder'] = 'none'; |
|
83 | + $ph['show_logout_reminder'] = 'none'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // Check multiple sessions |
@@ -128,11 +128,11 @@ discard block |
||
128 | 128 | $nrnewmessages = '<span class="text-danger">' . $_SESSION['nrnewmessages'] . '</span>'; |
129 | 129 | |
130 | 130 | $ph['UserInfo'] = $modx->parseText($tpl, array( |
131 | - 'username' => $modx->getLoginUserName(), |
|
132 | - 'role' => $_SESSION['mgrPermissions']['name'], |
|
133 | - 'lastlogin' => $modx->toDateFormat($_SESSION['mgrLastlogin'] + $server_offset_time), |
|
134 | - 'logincount' => $_SESSION['mgrLogincount'] + 1, |
|
135 | - 'msginfo' => sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages) |
|
131 | + 'username' => $modx->getLoginUserName(), |
|
132 | + 'role' => $_SESSION['mgrPermissions']['name'], |
|
133 | + 'lastlogin' => $modx->toDateFormat($_SESSION['mgrLastlogin'] + $server_offset_time), |
|
134 | + 'logincount' => $_SESSION['mgrLogincount'] + 1, |
|
135 | + 'msginfo' => sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages) |
|
136 | 136 | )); |
137 | 137 | |
138 | 138 | $from = array(); |
@@ -141,13 +141,13 @@ discard block |
||
141 | 141 | $rs = $modx->db->select('*', $from, '', 'username ASC, au.sid ASC'); |
142 | 142 | |
143 | 143 | if($modx->db->getRecordCount($rs) < 1) { |
144 | - $html = '<p>[%no_active_users_found%]</p>'; |
|
144 | + $html = '<p>[%no_active_users_found%]</p>'; |
|
145 | 145 | } else { |
146 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
147 | - $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
|
148 | - $ph['now'] = strftime('%H:%M:%S', $now); |
|
149 | - $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
|
150 | - $html = ' |
|
146 | + include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
147 | + $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
|
148 | + $ph['now'] = strftime('%H:%M:%S', $now); |
|
149 | + $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
|
150 | + $html = ' |
|
151 | 151 | <div class="card-body"> |
152 | 152 | [%onlineusers_message%] |
153 | 153 | <b>[+now+]</b>): |
@@ -165,33 +165,33 @@ discard block |
||
165 | 165 | </thead> |
166 | 166 | <tbody>'; |
167 | 167 | |
168 | - $userList = array(); |
|
169 | - $userCount = array(); |
|
170 | - // Create userlist with session-count first before output |
|
171 | - while($activeusers = $modx->db->getRow($rs)) { |
|
172 | - $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
|
173 | - |
|
174 | - $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
|
175 | - $webicon = $activeusers['internalKey'] < 0 ? '<img src="[&tree_globe&]" alt="Web user" /> ' : ''; |
|
176 | - $ip = $activeusers['ip'] === '::1' ? '127.0.0.1' : $activeusers['ip']; |
|
177 | - $currentaction = getAction($activeusers['action'], $activeusers['id']); |
|
178 | - $userList[] = array( |
|
179 | - $idle, |
|
180 | - '', |
|
181 | - $activeusers['username'], |
|
182 | - $webicon, |
|
183 | - abs($activeusers['internalKey']), |
|
184 | - $ip, |
|
185 | - strftime('%H:%M:%S', $activeusers['lasthit'] + $server_offset_time), |
|
186 | - $currentaction |
|
187 | - ); |
|
188 | - } |
|
189 | - foreach($userList as $params) { |
|
190 | - $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
|
191 | - $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params); |
|
192 | - } |
|
193 | - |
|
194 | - $html .= ' |
|
168 | + $userList = array(); |
|
169 | + $userCount = array(); |
|
170 | + // Create userlist with session-count first before output |
|
171 | + while($activeusers = $modx->db->getRow($rs)) { |
|
172 | + $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
|
173 | + |
|
174 | + $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
|
175 | + $webicon = $activeusers['internalKey'] < 0 ? '<img src="[&tree_globe&]" alt="Web user" /> ' : ''; |
|
176 | + $ip = $activeusers['ip'] === '::1' ? '127.0.0.1' : $activeusers['ip']; |
|
177 | + $currentaction = getAction($activeusers['action'], $activeusers['id']); |
|
178 | + $userList[] = array( |
|
179 | + $idle, |
|
180 | + '', |
|
181 | + $activeusers['username'], |
|
182 | + $webicon, |
|
183 | + abs($activeusers['internalKey']), |
|
184 | + $ip, |
|
185 | + strftime('%H:%M:%S', $activeusers['lasthit'] + $server_offset_time), |
|
186 | + $currentaction |
|
187 | + ); |
|
188 | + } |
|
189 | + foreach($userList as $params) { |
|
190 | + $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
|
191 | + $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params); |
|
192 | + } |
|
193 | + |
|
194 | + $html .= ' |
|
195 | 195 | </tbody> |
196 | 196 | </table> |
197 | 197 | </div> |
@@ -232,17 +232,17 @@ discard block |
||
232 | 232 | // invoke event OnManagerWelcomePrerender |
233 | 233 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender'); |
234 | 234 | if(is_array($evtOut)) { |
235 | - $output = implode('', $evtOut); |
|
236 | - $ph['OnManagerWelcomePrerender'] = $output; |
|
235 | + $output = implode('', $evtOut); |
|
236 | + $ph['OnManagerWelcomePrerender'] = $output; |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | $widgets['welcome'] = array( |
240 | - 'menuindex' => '10', |
|
241 | - 'id' => 'welcome', |
|
242 | - 'cols' => 'col-sm-6', |
|
243 | - 'icon' => 'fa-home', |
|
244 | - 'title' => '[%welcome_title%]', |
|
245 | - 'body' => ' |
|
240 | + 'menuindex' => '10', |
|
241 | + 'id' => 'welcome', |
|
242 | + 'cols' => 'col-sm-6', |
|
243 | + 'icon' => 'fa-home', |
|
244 | + 'title' => '[%welcome_title%]', |
|
245 | + 'body' => ' |
|
246 | 246 | <div class="wm_buttons card-body"> |
247 | 247 | <!--@IF:[[#hasPermission?key=new_user]] OR [[#hasPermission?key=edit_user]]--> |
248 | 248 | <span class="wm_button"> |
@@ -320,25 +320,25 @@ discard block |
||
320 | 320 | </table> |
321 | 321 | </div> |
322 | 322 | ', |
323 | - 'hide'=>'0' |
|
323 | + 'hide'=>'0' |
|
324 | 324 | ); |
325 | 325 | $widgets['onlineinfo'] = array( |
326 | - 'menuindex' => '20', |
|
327 | - 'id' => 'onlineinfo', |
|
328 | - 'cols' => 'col-sm-6', |
|
329 | - 'icon' => 'fa-user', |
|
330 | - 'title' => '[%onlineusers_title%]', |
|
331 | - 'body' => '<div class="userstable">[+OnlineInfo+]</div>', |
|
332 | - 'hide'=>'0' |
|
326 | + 'menuindex' => '20', |
|
327 | + 'id' => 'onlineinfo', |
|
328 | + 'cols' => 'col-sm-6', |
|
329 | + 'icon' => 'fa-user', |
|
330 | + 'title' => '[%onlineusers_title%]', |
|
331 | + 'body' => '<div class="userstable">[+OnlineInfo+]</div>', |
|
332 | + 'hide'=>'0' |
|
333 | 333 | ); |
334 | 334 | $widgets['recentinfo'] = array( |
335 | - 'menuindex' => '30', |
|
336 | - 'id' => 'modxrecent_widget', |
|
337 | - 'cols' => 'col-sm-12', |
|
338 | - 'icon' => 'fa-pencil-square-o', |
|
339 | - 'title' => '[%activity_title%]', |
|
340 | - 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
|
341 | - 'hide'=>'0' |
|
335 | + 'menuindex' => '30', |
|
336 | + 'id' => 'modxrecent_widget', |
|
337 | + 'cols' => 'col-sm-12', |
|
338 | + 'icon' => 'fa-pencil-square-o', |
|
339 | + 'title' => '[%activity_title%]', |
|
340 | + 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
|
341 | + 'hide'=>'0' |
|
342 | 342 | ); |
343 | 343 | if ($modx->config['rss_url_news']) { |
344 | 344 | $widgets['news'] = array( |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | // invoke OnManagerWelcomeHome event |
367 | 367 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets)); |
368 | 368 | if(is_array($sitewidgets)) { |
369 | - $newwidgets = array(); |
|
369 | + $newwidgets = array(); |
|
370 | 370 | foreach($sitewidgets as $widget){ |
371 | 371 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
372 | 372 | } |
@@ -374,21 +374,21 @@ discard block |
||
374 | 374 | } |
375 | 375 | |
376 | 376 | usort($widgets, function ($a, $b) { |
377 | - return $a['menuindex'] - $b['menuindex']; |
|
377 | + return $a['menuindex'] - $b['menuindex']; |
|
378 | 378 | }); |
379 | 379 | |
380 | 380 | $tpl = getTplWidget(); |
381 | 381 | $output = ''; |
382 | 382 | foreach($widgets as $widget) { |
383 | - if ($widget['hide'] != '1'){ |
|
384 | - $output .= $modx->parseText($tpl, $widget); |
|
385 | - } |
|
383 | + if ($widget['hide'] != '1'){ |
|
384 | + $output .= $modx->parseText($tpl, $widget); |
|
385 | + } |
|
386 | 386 | } |
387 | 387 | $ph['widgets'] = $output; |
388 | 388 | |
389 | 389 | // load template |
390 | 390 | if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
391 | - $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
391 | + $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
392 | 392 | } |
393 | 393 | |
394 | 394 | $target = $modx->config['manager_welcome_tpl']; |
@@ -396,27 +396,27 @@ discard block |
||
396 | 396 | $target = $modx->mergeSettingsContent($target); |
397 | 397 | |
398 | 398 | if(substr($target, 0, 1) === '@') { |
399 | - if(substr($target, 0, 6) === '@CHUNK') { |
|
400 | - $content = $modx->getChunk(trim(substr($target, 7))); |
|
401 | - } elseif(substr($target, 0, 5) === '@FILE') { |
|
402 | - $content = file_get_contents(trim(substr($target, 6))); |
|
403 | - } else { |
|
404 | - $content = ''; |
|
405 | - } |
|
399 | + if(substr($target, 0, 6) === '@CHUNK') { |
|
400 | + $content = $modx->getChunk(trim(substr($target, 7))); |
|
401 | + } elseif(substr($target, 0, 5) === '@FILE') { |
|
402 | + $content = file_get_contents(trim(substr($target, 6))); |
|
403 | + } else { |
|
404 | + $content = ''; |
|
405 | + } |
|
406 | 406 | } else { |
407 | - $chunk = $modx->getChunk($target); |
|
408 | - if($chunk !== false && !empty($chunk)) { |
|
409 | - $content = $chunk; |
|
410 | - } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
411 | - $content = file_get_contents(MODX_BASE_PATH . $target); |
|
412 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
413 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
414 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
415 | - { |
|
416 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
417 | - } else { |
|
418 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
419 | - } |
|
407 | + $chunk = $modx->getChunk($target); |
|
408 | + if($chunk !== false && !empty($chunk)) { |
|
409 | + $content = $chunk; |
|
410 | + } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
411 | + $content = file_get_contents(MODX_BASE_PATH . $target); |
|
412 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
413 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
414 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
415 | + { |
|
416 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
417 | + } else { |
|
418 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
419 | + } |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | // merge placeholders |
@@ -424,8 +424,8 @@ discard block |
||
424 | 424 | $content = $modx->mergeSettingsContent($content); |
425 | 425 | $content = $modx->parseText($content, $ph); |
426 | 426 | if(strpos($content, '[+') !== false) { |
427 | - $modx->toPlaceholders($ph); |
|
428 | - $content = $modx->mergePlaceholderContent($content); |
|
427 | + $modx->toPlaceholders($ph); |
|
428 | + $content = $modx->mergePlaceholderContent($content); |
|
429 | 429 | } |
430 | 430 | $content = $modx->parseDocumentSource($content); |
431 | 431 | $content = $modx->parseText($content, $_lang, '[%', '%]'); |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | $content = $modx->cleanUpMODXTags($content); //cleanup |
434 | 434 | |
435 | 435 | if($js = $modx->getRegisteredClientScripts()) { |
436 | - $content .= $js; |
|
436 | + $content .= $js; |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | echo $content; |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | // <a href="javascript:;" class="closed"><i class="fa fa-close"></i></a> |
444 | 444 | //</span> |
445 | 445 | function getTplWidget() { // recent document info |
446 | - return ' |
|
446 | + return ' |
|
447 | 447 | <div class="[+cols+]" id="[+id+]"> |
448 | 448 | <div class="card"[+cardAttr+]> |
449 | 449 | <div class="card-header"[+headAttr+]> <i class="fa [+icon+]"></i> [+title+] </div> |
@@ -454,11 +454,11 @@ discard block |
||
454 | 454 | } |
455 | 455 | |
456 | 456 | function getRecentInfo() { // recent document info |
457 | - $modx = evolutionCMS(); |
|
457 | + $modx = evolutionCMS(); |
|
458 | 458 | |
459 | - $modx->addSnippet('recentInfoList', 'getRecentInfoList'); |
|
459 | + $modx->addSnippet('recentInfoList', 'getRecentInfoList'); |
|
460 | 460 | |
461 | - $html = ' |
|
461 | + $html = ' |
|
462 | 462 | <div class="table-responsive"> |
463 | 463 | <table class="table data"> |
464 | 464 | <thead> |
@@ -476,96 +476,96 @@ discard block |
||
476 | 476 | </table> |
477 | 477 | </div> |
478 | 478 | '; |
479 | - return $html; |
|
479 | + return $html; |
|
480 | 480 | } |
481 | 481 | |
482 | 482 | function getRecentInfoList() { |
483 | - $modx = evolutionCMS(); |
|
484 | - |
|
485 | - $rs = $modx->db->select('*', '[+prefix+]site_content', '', 'editedon DESC', 10); |
|
486 | - |
|
487 | - if($modx->db->getRecordCount($rs) < 1) { |
|
488 | - return '<tr><td>[%no_activity_message%]</td></tr>'; |
|
489 | - } |
|
490 | - |
|
491 | - $tpl = getRecentInfoRowTpl(); |
|
492 | - |
|
493 | - $btntpl['edit'] = '<a title="[%edit_resource%]" href="index.php?a=27&id=[+id+]" target="main"><i class="fa fa-edit fa-fw"></i></a> '; |
|
494 | - $btntpl['preview_btn'] = '<a [+preview_disabled+]" title="[%preview_resource%]" target="_blank" href="../index.php?&id=[+id+]"><i class="fa fa-eye fa-fw"></i></a> '; |
|
495 | - |
|
496 | - $output = array(); |
|
497 | - while($ph = $modx->db->getRow($rs)) { |
|
498 | - $docid = $ph['id']; |
|
499 | - $_ = $modx->getUserInfo($ph['editedby']); |
|
500 | - $ph['username'] = $_['username']; |
|
501 | - |
|
502 | - if($ph['deleted'] == 1) { |
|
503 | - $ph['status'] = 'deleted text-danger'; |
|
504 | - } elseif($ph['published'] == 0) { |
|
505 | - $ph['status'] = 'unpublished font-italic text-muted'; |
|
506 | - } else { |
|
507 | - $ph['status'] = 'published'; |
|
508 | - } |
|
509 | - |
|
510 | - if($modx->hasPermission('edit_document')) { |
|
511 | - $ph['edit_btn'] = str_replace('[+id+]', $docid, $btntpl['edit']); |
|
512 | - } else { |
|
513 | - $ph['edit_btn'] = ''; |
|
514 | - } |
|
515 | - |
|
516 | - $preview_disabled = ($ph['deleted'] == 1) ? 'disabled' : ''; |
|
517 | - $ph['preview_btn'] = str_replace(array( |
|
518 | - '[+id+]', |
|
519 | - '[+preview_disabled+]' |
|
520 | - ), array( |
|
521 | - $docid, |
|
522 | - $preview_disabled |
|
523 | - ), $btntpl['preview_btn']); |
|
524 | - |
|
525 | - if($modx->hasPermission('delete_document')) { |
|
526 | - if($ph['deleted'] == 0) { |
|
527 | - $delete_btn = '<a onclick="return confirm(\'[%confirm_delete_record%]\')" title="[%delete_resource%]" href="index.php?a=6&id=[+id+]" target="main"><i class="fa fa-trash fa-fw"></i></a> '; |
|
528 | - } else { |
|
529 | - $delete_btn = '<a onclick="return confirm(\'[%confirm_undelete%]\')" title="[%undelete_resource%]" href="index.php?a=63&id=[+id+]" target="main"><i class="fa fa-arrow-circle-o-up fa-fw"></i></a> '; |
|
530 | - } |
|
531 | - $ph['delete_btn'] = str_replace('[+id+]', $docid, $delete_btn); |
|
532 | - } else { |
|
533 | - $ph['delete_btn'] = ''; |
|
534 | - } |
|
535 | - |
|
536 | - if($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
537 | - $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
|
538 | - } elseif($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
539 | - $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
|
540 | - } elseif($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
541 | - $publish_btn = '<a title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
|
542 | - } else { |
|
543 | - $publish_btn = '<a title="[%unpublish_resource%]" href="index.php?a=62&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
|
544 | - } |
|
545 | - $ph['publish_btn'] = str_replace('[+id+]', $docid, $publish_btn); |
|
546 | - |
|
547 | - $ph['info_btn'] = str_replace('[+id+]', $docid, '<a title="[%resource_overview%]" data-toggle="collapse" data-target=".collapse[+id+]"><i class="fa fa-info fa-fw"></i></a>'); |
|
548 | - |
|
549 | - if($ph['longtitle'] == '') { |
|
550 | - $ph['longtitle'] = '(<i>[%not_set%]</i>)'; |
|
551 | - } |
|
552 | - if($ph['description'] == '') { |
|
553 | - $ph['description'] = '(<i>[%not_set%]</i>)'; |
|
554 | - } |
|
555 | - if($ph['introtext'] == '') { |
|
556 | - $ph['introtext'] = '(<i>[%not_set%]</i>)'; |
|
557 | - } |
|
558 | - if($ph['alias'] == '') { |
|
559 | - $ph['alias'] = '(<i>[%not_set%]</i>)'; |
|
560 | - } |
|
561 | - |
|
562 | - $output[] = $modx->parseText($tpl, $ph); |
|
563 | - } |
|
564 | - return implode("\n", $output); |
|
483 | + $modx = evolutionCMS(); |
|
484 | + |
|
485 | + $rs = $modx->db->select('*', '[+prefix+]site_content', '', 'editedon DESC', 10); |
|
486 | + |
|
487 | + if($modx->db->getRecordCount($rs) < 1) { |
|
488 | + return '<tr><td>[%no_activity_message%]</td></tr>'; |
|
489 | + } |
|
490 | + |
|
491 | + $tpl = getRecentInfoRowTpl(); |
|
492 | + |
|
493 | + $btntpl['edit'] = '<a title="[%edit_resource%]" href="index.php?a=27&id=[+id+]" target="main"><i class="fa fa-edit fa-fw"></i></a> '; |
|
494 | + $btntpl['preview_btn'] = '<a [+preview_disabled+]" title="[%preview_resource%]" target="_blank" href="../index.php?&id=[+id+]"><i class="fa fa-eye fa-fw"></i></a> '; |
|
495 | + |
|
496 | + $output = array(); |
|
497 | + while($ph = $modx->db->getRow($rs)) { |
|
498 | + $docid = $ph['id']; |
|
499 | + $_ = $modx->getUserInfo($ph['editedby']); |
|
500 | + $ph['username'] = $_['username']; |
|
501 | + |
|
502 | + if($ph['deleted'] == 1) { |
|
503 | + $ph['status'] = 'deleted text-danger'; |
|
504 | + } elseif($ph['published'] == 0) { |
|
505 | + $ph['status'] = 'unpublished font-italic text-muted'; |
|
506 | + } else { |
|
507 | + $ph['status'] = 'published'; |
|
508 | + } |
|
509 | + |
|
510 | + if($modx->hasPermission('edit_document')) { |
|
511 | + $ph['edit_btn'] = str_replace('[+id+]', $docid, $btntpl['edit']); |
|
512 | + } else { |
|
513 | + $ph['edit_btn'] = ''; |
|
514 | + } |
|
515 | + |
|
516 | + $preview_disabled = ($ph['deleted'] == 1) ? 'disabled' : ''; |
|
517 | + $ph['preview_btn'] = str_replace(array( |
|
518 | + '[+id+]', |
|
519 | + '[+preview_disabled+]' |
|
520 | + ), array( |
|
521 | + $docid, |
|
522 | + $preview_disabled |
|
523 | + ), $btntpl['preview_btn']); |
|
524 | + |
|
525 | + if($modx->hasPermission('delete_document')) { |
|
526 | + if($ph['deleted'] == 0) { |
|
527 | + $delete_btn = '<a onclick="return confirm(\'[%confirm_delete_record%]\')" title="[%delete_resource%]" href="index.php?a=6&id=[+id+]" target="main"><i class="fa fa-trash fa-fw"></i></a> '; |
|
528 | + } else { |
|
529 | + $delete_btn = '<a onclick="return confirm(\'[%confirm_undelete%]\')" title="[%undelete_resource%]" href="index.php?a=63&id=[+id+]" target="main"><i class="fa fa-arrow-circle-o-up fa-fw"></i></a> '; |
|
530 | + } |
|
531 | + $ph['delete_btn'] = str_replace('[+id+]', $docid, $delete_btn); |
|
532 | + } else { |
|
533 | + $ph['delete_btn'] = ''; |
|
534 | + } |
|
535 | + |
|
536 | + if($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
537 | + $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
|
538 | + } elseif($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
539 | + $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
|
540 | + } elseif($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
541 | + $publish_btn = '<a title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
|
542 | + } else { |
|
543 | + $publish_btn = '<a title="[%unpublish_resource%]" href="index.php?a=62&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
|
544 | + } |
|
545 | + $ph['publish_btn'] = str_replace('[+id+]', $docid, $publish_btn); |
|
546 | + |
|
547 | + $ph['info_btn'] = str_replace('[+id+]', $docid, '<a title="[%resource_overview%]" data-toggle="collapse" data-target=".collapse[+id+]"><i class="fa fa-info fa-fw"></i></a>'); |
|
548 | + |
|
549 | + if($ph['longtitle'] == '') { |
|
550 | + $ph['longtitle'] = '(<i>[%not_set%]</i>)'; |
|
551 | + } |
|
552 | + if($ph['description'] == '') { |
|
553 | + $ph['description'] = '(<i>[%not_set%]</i>)'; |
|
554 | + } |
|
555 | + if($ph['introtext'] == '') { |
|
556 | + $ph['introtext'] = '(<i>[%not_set%]</i>)'; |
|
557 | + } |
|
558 | + if($ph['alias'] == '') { |
|
559 | + $ph['alias'] = '(<i>[%not_set%]</i>)'; |
|
560 | + } |
|
561 | + |
|
562 | + $output[] = $modx->parseText($tpl, $ph); |
|
563 | + } |
|
564 | + return implode("\n", $output); |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | function getRecentInfoRowTpl() { |
568 | - $tpl = ' |
|
568 | + $tpl = ' |
|
569 | 569 | <tr> |
570 | 570 | <td data-toggle="collapse" data-target=".collapse[+id+]" class="text-right"><span class="label label-info">[+id+]</span></td> |
571 | 571 | <td data-toggle="collapse" data-target=".collapse[+id+]"><a class="[+status+]" title="[%edit_resource%]" href="index.php?a=3&id=[+id+]" target="main">[+pagetitle+]</a></td> |
@@ -589,16 +589,16 @@ discard block |
||
589 | 589 | </div> |
590 | 590 | </td> |
591 | 591 | </tr>'; |
592 | - return $tpl; |
|
592 | + return $tpl; |
|
593 | 593 | } |
594 | 594 | |
595 | 595 | // setup icons |
596 | 596 | function wrapIcon($i, $action) { |
597 | - return sprintf('<a href="index.php?a=%s" target="main"><span class="wm_button" style="border:0">%s</span></a>', $action, $i); |
|
597 | + return sprintf('<a href="index.php?a=%s" target="main"><span class="wm_button" style="border:0">%s</span></a>', $action, $i); |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | function getStartUpScript() { |
601 | - $script = ' |
|
601 | + $script = ' |
|
602 | 602 | <script type="text/javascript"> |
603 | 603 | function hideConfigCheckWarning(key) { |
604 | 604 | var xhr = new XMLHttpRequest(); |
@@ -622,5 +622,5 @@ discard block |
||
622 | 622 | })(jQuery); |
623 | 623 | </script> |
624 | 624 | '; |
625 | - return $script; |
|
625 | + return $script; |
|
626 | 626 | } |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die('<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.'); |
4 | 4 | } |
5 | 5 | |
6 | 6 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
7 | 7 | |
8 | -if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
|
8 | +if ($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
|
9 | 9 | // seems to be a new install - send the user to the configuration page |
10 | 10 | exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>'); |
11 | 11 | } |
@@ -16,50 +16,50 @@ discard block |
||
16 | 16 | $_SESSION['nrnewmessages'] = 0; |
17 | 17 | |
18 | 18 | // setup message info |
19 | -if($modx->hasPermission('messages')) { |
|
20 | - include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
|
19 | +if ($modx->hasPermission('messages')) { |
|
20 | + include_once(MODX_MANAGER_PATH.'includes/messageCount.inc.php'); |
|
21 | 21 | $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
22 | 22 | $_SESSION['nrnewmessages'] = $nrnewmessages; |
23 | 23 | |
24 | 24 | $msg = array(); |
25 | 25 | $msg[] = sprintf('<a href="index.php?a=10" target="main"><img src="%s" /></a>', $_style['icons_mail_large']); |
26 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">' . $_SESSION['nrnewmessages'] . '</span>)' : ''; |
|
26 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? ' (<span style="color:red">'.$_SESSION['nrnewmessages'].'</span>)' : ''; |
|
27 | 27 | $msg[] = sprintf('<span style="color:#909090;font-size:15px;font-weight:bold"> <a class="wm_messages_inbox_link" href="index.php?a=10" target="main">[%%inbox%%]</a>%s</span><br />', $nrnewmessages); |
28 | - $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">' . $_SESSION['nrnewmessages'] . '</span>' : '0'; |
|
28 | + $nrnewmessages = $_SESSION['nrnewmessages'] > 0 ? '<span style="color:red;">'.$_SESSION['nrnewmessages'].'</span>' : '0'; |
|
29 | 29 | $welcome_messages = sprintf($_lang['welcome_messages'], $_SESSION['nrtotalmessages'], $nrnewmessages); |
30 | 30 | $msg[] = sprintf('<span class="comment">%s</span>', $welcome_messages); |
31 | 31 | $ph['MessageInfo'] = implode("\n", $msg); |
32 | 32 | } |
33 | 33 | |
34 | 34 | // setup icons |
35 | -if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
|
35 | +if ($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
|
36 | 36 | $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
37 | 37 | $ph['SecurityIcon'] = wrapIcon($icon, 75); |
38 | 38 | } |
39 | -if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
|
39 | +if ($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
|
40 | 40 | $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
41 | 41 | $ph['WebUserIcon'] = wrapIcon($icon, 99); |
42 | 42 | } |
43 | -if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
|
43 | +if ($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
|
44 | 44 | $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
45 | 45 | $ph['ModulesIcon'] = wrapIcon($icon, 106); |
46 | 46 | } |
47 | -if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
|
47 | +if ($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
|
48 | 48 | $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
49 | 49 | $ph['ResourcesIcon'] = wrapIcon($icon, 76); |
50 | 50 | } |
51 | -if($modx->hasPermission('bk_manager')) { |
|
51 | +if ($modx->hasPermission('bk_manager')) { |
|
52 | 52 | $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
53 | 53 | $ph['BackupIcon'] = wrapIcon($icon, 93); |
54 | 54 | } |
55 | -if($modx->hasPermission('help')) { |
|
55 | +if ($modx->hasPermission('help')) { |
|
56 | 56 | $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
57 | 57 | $ph['HelpIcon'] = wrapIcon($icon, 9); |
58 | 58 | } |
59 | 59 | // do some config checks |
60 | -if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
|
61 | - include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
|
62 | - if($config_check_results != $_lang['configcheck_ok']) { |
|
60 | +if (($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
|
61 | + include_once(MODX_MANAGER_PATH.'includes/config_check.inc.php'); |
|
62 | + if ($config_check_results != $_lang['configcheck_ok']) { |
|
63 | 63 | $ph['config_check_results'] = $config_check_results; |
64 | 64 | $ph['config_display'] = 'block'; |
65 | 65 | } else { |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | // Check logout-reminder |
73 | -if(isset($_SESSION['show_logout_reminder'])) { |
|
74 | - switch($_SESSION['show_logout_reminder']['type']) { |
|
73 | +if (isset($_SESSION['show_logout_reminder'])) { |
|
74 | + switch ($_SESSION['show_logout_reminder']['type']) { |
|
75 | 75 | case 'logout_reminder': |
76 | 76 | $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
77 | 77 | $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']); |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | </tr> |
126 | 126 | </table>'; |
127 | 127 | |
128 | -$nrnewmessages = '<span class="text-danger">' . $_SESSION['nrnewmessages'] . '</span>'; |
|
128 | +$nrnewmessages = '<span class="text-danger">'.$_SESSION['nrnewmessages'].'</span>'; |
|
129 | 129 | |
130 | 130 | $ph['UserInfo'] = $modx->parseText($tpl, array( |
131 | 131 | 'username' => $modx->getLoginUserName(), |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | $from[] = " us LEFT JOIN [+prefix+]active_users au ON au.sid=us.sid WHERE au.action <> '8'"; |
141 | 141 | $rs = $modx->db->select('*', $from, '', 'username ASC, au.sid ASC'); |
142 | 142 | |
143 | -if($modx->db->getRecordCount($rs) < 1) { |
|
143 | +if ($modx->db->getRecordCount($rs) < 1) { |
|
144 | 144 | $html = '<p>[%no_active_users_found%]</p>'; |
145 | 145 | } else { |
146 | - include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
|
146 | + include_once(MODX_MANAGER_PATH.'includes/actionlist.inc.php'); |
|
147 | 147 | $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
148 | 148 | $ph['now'] = strftime('%H:%M:%S', $now); |
149 | 149 | $timetocheck = ($now - (60 * 20)); //+$server_offset_time; |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | $userList = array(); |
169 | 169 | $userCount = array(); |
170 | 170 | // Create userlist with session-count first before output |
171 | - while($activeusers = $modx->db->getRow($rs)) { |
|
171 | + while ($activeusers = $modx->db->getRow($rs)) { |
|
172 | 172 | $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
173 | 173 | |
174 | 174 | $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
@@ -186,9 +186,9 @@ discard block |
||
186 | 186 | $currentaction |
187 | 187 | ); |
188 | 188 | } |
189 | - foreach($userList as $params) { |
|
189 | + foreach ($userList as $params) { |
|
190 | 190 | $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
191 | - $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params); |
|
191 | + $html .= "\n\t\t".vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | $html .= ' |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | $ph['OnlineInfo'] = $html; |
201 | 201 | |
202 | 202 | // include rss feeds for important forum topics |
203 | -include_once(MODX_MANAGER_PATH . 'includes/rss.inc.php'); |
|
203 | +include_once(MODX_MANAGER_PATH.'includes/rss.inc.php'); |
|
204 | 204 | $ph['modx_security_notices_content'] = $feedData['modx_security_notices_content']; |
205 | 205 | $ph['modx_news_content'] = $feedData['modx_news_content']; |
206 | 206 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | // invoke event OnManagerWelcomePrerender |
233 | 233 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender'); |
234 | -if(is_array($evtOut)) { |
|
234 | +if (is_array($evtOut)) { |
|
235 | 235 | $output = implode('', $evtOut); |
236 | 236 | $ph['OnManagerWelcomePrerender'] = $output; |
237 | 237 | } |
@@ -365,57 +365,57 @@ discard block |
||
365 | 365 | |
366 | 366 | // invoke OnManagerWelcomeHome event |
367 | 367 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets)); |
368 | -if(is_array($sitewidgets)) { |
|
368 | +if (is_array($sitewidgets)) { |
|
369 | 369 | $newwidgets = array(); |
370 | - foreach($sitewidgets as $widget){ |
|
370 | + foreach ($sitewidgets as $widget) { |
|
371 | 371 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
372 | 372 | } |
373 | 373 | $widgets = (count($newwidgets) > 0) ? $newwidgets : $widgets; |
374 | 374 | } |
375 | 375 | |
376 | -usort($widgets, function ($a, $b) { |
|
376 | +usort($widgets, function($a, $b){ |
|
377 | 377 | return $a['menuindex'] - $b['menuindex']; |
378 | 378 | }); |
379 | 379 | |
380 | 380 | $tpl = getTplWidget(); |
381 | 381 | $output = ''; |
382 | -foreach($widgets as $widget) { |
|
383 | - if ($widget['hide'] != '1'){ |
|
382 | +foreach ($widgets as $widget) { |
|
383 | + if ($widget['hide'] != '1') { |
|
384 | 384 | $output .= $modx->parseText($tpl, $widget); |
385 | 385 | } |
386 | 386 | } |
387 | 387 | $ph['widgets'] = $output; |
388 | 388 | |
389 | 389 | // load template |
390 | -if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
|
391 | - $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
|
390 | +if (!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
|
391 | + $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH.'media/style/common/welcome.tpl'; |
|
392 | 392 | } |
393 | 393 | |
394 | 394 | $target = $modx->config['manager_welcome_tpl']; |
395 | 395 | $target = str_replace('[+base_path+]', MODX_BASE_PATH, $target); |
396 | 396 | $target = $modx->mergeSettingsContent($target); |
397 | 397 | |
398 | -if(substr($target, 0, 1) === '@') { |
|
399 | - if(substr($target, 0, 6) === '@CHUNK') { |
|
398 | +if (substr($target, 0, 1) === '@') { |
|
399 | + if (substr($target, 0, 6) === '@CHUNK') { |
|
400 | 400 | $content = $modx->getChunk(trim(substr($target, 7))); |
401 | - } elseif(substr($target, 0, 5) === '@FILE') { |
|
401 | + } elseif (substr($target, 0, 5) === '@FILE') { |
|
402 | 402 | $content = file_get_contents(trim(substr($target, 6))); |
403 | 403 | } else { |
404 | 404 | $content = ''; |
405 | 405 | } |
406 | 406 | } else { |
407 | 407 | $chunk = $modx->getChunk($target); |
408 | - if($chunk !== false && !empty($chunk)) { |
|
408 | + if ($chunk !== false && !empty($chunk)) { |
|
409 | 409 | $content = $chunk; |
410 | - } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
411 | - $content = file_get_contents(MODX_BASE_PATH . $target); |
|
412 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
413 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
|
414 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
410 | + } elseif (is_file(MODX_BASE_PATH.$target)) { |
|
411 | + $content = file_get_contents(MODX_BASE_PATH.$target); |
|
412 | + } elseif (is_file(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/welcome.tpl')) { |
|
413 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/welcome.tpl'); |
|
414 | + } elseif (is_file(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/html/welcome.html')) // ClipperCMS compatible |
|
415 | 415 | { |
416 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
416 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/'.$modx->config['manager_theme'].'/html/welcome.html'); |
|
417 | 417 | } else { |
418 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
|
418 | + $content = file_get_contents(MODX_MANAGER_PATH.'media/style/common/welcome.tpl'); |
|
419 | 419 | } |
420 | 420 | } |
421 | 421 | |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | $content = $modx->mergeConditionalTagsContent($content); |
424 | 424 | $content = $modx->mergeSettingsContent($content); |
425 | 425 | $content = $modx->parseText($content, $ph); |
426 | -if(strpos($content, '[+') !== false) { |
|
426 | +if (strpos($content, '[+') !== false) { |
|
427 | 427 | $modx->toPlaceholders($ph); |
428 | 428 | $content = $modx->mergePlaceholderContent($content); |
429 | 429 | } |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | $content = $modx->parseText($content, $_style, '[&', '&]'); |
433 | 433 | $content = $modx->cleanUpMODXTags($content); //cleanup |
434 | 434 | |
435 | -if($js = $modx->getRegisteredClientScripts()) { |
|
435 | +if ($js = $modx->getRegisteredClientScripts()) { |
|
436 | 436 | $content .= $js; |
437 | 437 | } |
438 | 438 | |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | // <a href="javascript:;" class="setting"><i class="fa fa-cog"></i></a> |
443 | 443 | // <a href="javascript:;" class="closed"><i class="fa fa-close"></i></a> |
444 | 444 | //</span> |
445 | -function getTplWidget() { // recent document info |
|
445 | +function getTplWidget(){ // recent document info |
|
446 | 446 | return ' |
447 | 447 | <div class="[+cols+]" id="[+id+]"> |
448 | 448 | <div class="card"[+cardAttr+]> |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | '; |
454 | 454 | } |
455 | 455 | |
456 | -function getRecentInfo() { // recent document info |
|
456 | +function getRecentInfo(){ // recent document info |
|
457 | 457 | $modx = evolutionCMS(); |
458 | 458 | |
459 | 459 | $modx->addSnippet('recentInfoList', 'getRecentInfoList'); |
@@ -479,12 +479,12 @@ discard block |
||
479 | 479 | return $html; |
480 | 480 | } |
481 | 481 | |
482 | -function getRecentInfoList() { |
|
482 | +function getRecentInfoList(){ |
|
483 | 483 | $modx = evolutionCMS(); |
484 | 484 | |
485 | 485 | $rs = $modx->db->select('*', '[+prefix+]site_content', '', 'editedon DESC', 10); |
486 | 486 | |
487 | - if($modx->db->getRecordCount($rs) < 1) { |
|
487 | + if ($modx->db->getRecordCount($rs) < 1) { |
|
488 | 488 | return '<tr><td>[%no_activity_message%]</td></tr>'; |
489 | 489 | } |
490 | 490 | |
@@ -494,20 +494,20 @@ discard block |
||
494 | 494 | $btntpl['preview_btn'] = '<a [+preview_disabled+]" title="[%preview_resource%]" target="_blank" href="../index.php?&id=[+id+]"><i class="fa fa-eye fa-fw"></i></a> '; |
495 | 495 | |
496 | 496 | $output = array(); |
497 | - while($ph = $modx->db->getRow($rs)) { |
|
497 | + while ($ph = $modx->db->getRow($rs)) { |
|
498 | 498 | $docid = $ph['id']; |
499 | 499 | $_ = $modx->getUserInfo($ph['editedby']); |
500 | 500 | $ph['username'] = $_['username']; |
501 | 501 | |
502 | - if($ph['deleted'] == 1) { |
|
502 | + if ($ph['deleted'] == 1) { |
|
503 | 503 | $ph['status'] = 'deleted text-danger'; |
504 | - } elseif($ph['published'] == 0) { |
|
504 | + } elseif ($ph['published'] == 0) { |
|
505 | 505 | $ph['status'] = 'unpublished font-italic text-muted'; |
506 | 506 | } else { |
507 | 507 | $ph['status'] = 'published'; |
508 | 508 | } |
509 | 509 | |
510 | - if($modx->hasPermission('edit_document')) { |
|
510 | + if ($modx->hasPermission('edit_document')) { |
|
511 | 511 | $ph['edit_btn'] = str_replace('[+id+]', $docid, $btntpl['edit']); |
512 | 512 | } else { |
513 | 513 | $ph['edit_btn'] = ''; |
@@ -522,8 +522,8 @@ discard block |
||
522 | 522 | $preview_disabled |
523 | 523 | ), $btntpl['preview_btn']); |
524 | 524 | |
525 | - if($modx->hasPermission('delete_document')) { |
|
526 | - if($ph['deleted'] == 0) { |
|
525 | + if ($modx->hasPermission('delete_document')) { |
|
526 | + if ($ph['deleted'] == 0) { |
|
527 | 527 | $delete_btn = '<a onclick="return confirm(\'[%confirm_delete_record%]\')" title="[%delete_resource%]" href="index.php?a=6&id=[+id+]" target="main"><i class="fa fa-trash fa-fw"></i></a> '; |
528 | 528 | } else { |
529 | 529 | $delete_btn = '<a onclick="return confirm(\'[%confirm_undelete%]\')" title="[%undelete_resource%]" href="index.php?a=63&id=[+id+]" target="main"><i class="fa fa-arrow-circle-o-up fa-fw"></i></a> '; |
@@ -533,11 +533,11 @@ discard block |
||
533 | 533 | $ph['delete_btn'] = ''; |
534 | 534 | } |
535 | 535 | |
536 | - if($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
536 | + if ($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
537 | 537 | $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
538 | - } elseif($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
538 | + } elseif ($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
539 | 539 | $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
540 | - } elseif($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
540 | + } elseif ($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
541 | 541 | $publish_btn = '<a title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
542 | 542 | } else { |
543 | 543 | $publish_btn = '<a title="[%unpublish_resource%]" href="index.php?a=62&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
@@ -546,16 +546,16 @@ discard block |
||
546 | 546 | |
547 | 547 | $ph['info_btn'] = str_replace('[+id+]', $docid, '<a title="[%resource_overview%]" data-toggle="collapse" data-target=".collapse[+id+]"><i class="fa fa-info fa-fw"></i></a>'); |
548 | 548 | |
549 | - if($ph['longtitle'] == '') { |
|
549 | + if ($ph['longtitle'] == '') { |
|
550 | 550 | $ph['longtitle'] = '(<i>[%not_set%]</i>)'; |
551 | 551 | } |
552 | - if($ph['description'] == '') { |
|
552 | + if ($ph['description'] == '') { |
|
553 | 553 | $ph['description'] = '(<i>[%not_set%]</i>)'; |
554 | 554 | } |
555 | - if($ph['introtext'] == '') { |
|
555 | + if ($ph['introtext'] == '') { |
|
556 | 556 | $ph['introtext'] = '(<i>[%not_set%]</i>)'; |
557 | 557 | } |
558 | - if($ph['alias'] == '') { |
|
558 | + if ($ph['alias'] == '') { |
|
559 | 559 | $ph['alias'] = '(<i>[%not_set%]</i>)'; |
560 | 560 | } |
561 | 561 | |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | return implode("\n", $output); |
565 | 565 | } |
566 | 566 | |
567 | -function getRecentInfoRowTpl() { |
|
567 | +function getRecentInfoRowTpl(){ |
|
568 | 568 | $tpl = ' |
569 | 569 | <tr> |
570 | 570 | <td data-toggle="collapse" data-target=".collapse[+id+]" class="text-right"><span class="label label-info">[+id+]</span></td> |
@@ -593,11 +593,11 @@ discard block |
||
593 | 593 | } |
594 | 594 | |
595 | 595 | // setup icons |
596 | -function wrapIcon($i, $action) { |
|
596 | +function wrapIcon($i, $action){ |
|
597 | 597 | return sprintf('<a href="index.php?a=%s" target="main"><span class="wm_button" style="border:0">%s</span></a>', $action, $i); |
598 | 598 | } |
599 | 599 | |
600 | -function getStartUpScript() { |
|
600 | +function getStartUpScript(){ |
|
601 | 601 | $script = ' |
602 | 602 | <script type="text/javascript"> |
603 | 603 | function hideConfigCheckWarning(key) { |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die('<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly.'); |
4 | 4 | } |
5 | 5 | |
6 | 6 | unset($_SESSION['itemname']); // clear this, because it's only set for logging purposes |
7 | 7 | |
8 | -if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
|
8 | +if($modx->hasPermission('settings') && (!isset($settings_version) || $settings_version != $modx->getVersionData('version'))) { |
|
9 | 9 | // seems to be a new install - send the user to the configuration page |
10 | 10 | exit('<script type="text/javascript">document.location.href="index.php?a=17";</script>'); |
11 | 11 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $_SESSION['nrnewmessages'] = 0; |
17 | 17 | |
18 | 18 | // setup message info |
19 | -if($modx->hasPermission('messages')) { |
|
19 | +if($modx->hasPermission('messages')) { |
|
20 | 20 | include_once(MODX_MANAGER_PATH . 'includes/messageCount.inc.php'); |
21 | 21 | $_SESSION['nrtotalmessages'] = $nrtotalmessages; |
22 | 22 | $_SESSION['nrnewmessages'] = $nrnewmessages; |
@@ -32,46 +32,46 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | // setup icons |
35 | -if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
|
35 | +if($modx->hasPermission('new_user') || $modx->hasPermission('edit_user')) { |
|
36 | 36 | $icon = '<i class="[&icons_security_large&]" alt="[%user_management_title%]"> </i>[%user_management_title%]'; |
37 | 37 | $ph['SecurityIcon'] = wrapIcon($icon, 75); |
38 | 38 | } |
39 | -if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
|
39 | +if($modx->hasPermission('new_web_user') || $modx->hasPermission('edit_web_user')) { |
|
40 | 40 | $icon = '<i class="[&icons_webusers_large&]" alt="[%web_user_management_title%]"> </i>[%web_user_management_title%]'; |
41 | 41 | $ph['WebUserIcon'] = wrapIcon($icon, 99); |
42 | 42 | } |
43 | -if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
|
43 | +if($modx->hasPermission('new_module') || $modx->hasPermission('edit_module')) { |
|
44 | 44 | $icon = '<i class="[&icons_modules_large&]" alt="[%manage_modules%]"> </i>[%modules%]'; |
45 | 45 | $ph['ModulesIcon'] = wrapIcon($icon, 106); |
46 | 46 | } |
47 | -if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
|
47 | +if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template') || $modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet') || $modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin') || $modx->hasPermission('manage_metatags')) { |
|
48 | 48 | $icon = '<i class="[&icons_resources_large&]" alt="[%element_management%]"> </i>[%elements%]'; |
49 | 49 | $ph['ResourcesIcon'] = wrapIcon($icon, 76); |
50 | 50 | } |
51 | -if($modx->hasPermission('bk_manager')) { |
|
51 | +if($modx->hasPermission('bk_manager')) { |
|
52 | 52 | $icon = '<i class="[&icons_backup_large&]" alt="[%bk_manager%]"> </i>[%backup%]'; |
53 | 53 | $ph['BackupIcon'] = wrapIcon($icon, 93); |
54 | 54 | } |
55 | -if($modx->hasPermission('help')) { |
|
55 | +if($modx->hasPermission('help')) { |
|
56 | 56 | $icon = '<i class="[&icons_help_large&]" alt="[%help%]" /> </i>[%help%]'; |
57 | 57 | $ph['HelpIcon'] = wrapIcon($icon, 9); |
58 | 58 | } |
59 | 59 | // do some config checks |
60 | -if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
|
60 | +if(($modx->config['warning_visibility'] == 0 && $_SESSION['mgrRole'] == 1) || $modx->config['warning_visibility'] == 1) { |
|
61 | 61 | include_once(MODX_MANAGER_PATH . 'includes/config_check.inc.php'); |
62 | - if($config_check_results != $_lang['configcheck_ok']) { |
|
62 | + if($config_check_results != $_lang['configcheck_ok']) { |
|
63 | 63 | $ph['config_check_results'] = $config_check_results; |
64 | 64 | $ph['config_display'] = 'block'; |
65 | - } else { |
|
65 | + } else { |
|
66 | 66 | $ph['config_display'] = 'none'; |
67 | 67 | } |
68 | -} else { |
|
68 | +} else { |
|
69 | 69 | $ph['config_display'] = 'none'; |
70 | 70 | } |
71 | 71 | |
72 | 72 | // Check logout-reminder |
73 | -if(isset($_SESSION['show_logout_reminder'])) { |
|
74 | - switch($_SESSION['show_logout_reminder']['type']) { |
|
73 | +if(isset($_SESSION['show_logout_reminder'])) { |
|
74 | + switch($_SESSION['show_logout_reminder']['type']) { |
|
75 | 75 | case 'logout_reminder': |
76 | 76 | $date = $modx->toDateFormat($_SESSION['show_logout_reminder']['lastHit'], 'dateOnly'); |
77 | 77 | $ph['logout_reminder_msg'] = str_replace('[+date+]', $date, $_lang['logout_reminder_msg']); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | $ph['show_logout_reminder'] = 'block'; |
81 | 81 | unset($_SESSION['show_logout_reminder']); |
82 | -} else { |
|
82 | +} else { |
|
83 | 83 | $ph['show_logout_reminder'] = 'none'; |
84 | 84 | } |
85 | 85 | |
@@ -140,9 +140,9 @@ discard block |
||
140 | 140 | $from[] = " us LEFT JOIN [+prefix+]active_users au ON au.sid=us.sid WHERE au.action <> '8'"; |
141 | 141 | $rs = $modx->db->select('*', $from, '', 'username ASC, au.sid ASC'); |
142 | 142 | |
143 | -if($modx->db->getRecordCount($rs) < 1) { |
|
143 | +if($modx->db->getRecordCount($rs) < 1) { |
|
144 | 144 | $html = '<p>[%no_active_users_found%]</p>'; |
145 | -} else { |
|
145 | +} else { |
|
146 | 146 | include_once(MODX_MANAGER_PATH . 'includes/actionlist.inc.php'); |
147 | 147 | $now = $_SERVER['REQUEST_TIME'] + $server_offset_time; |
148 | 148 | $ph['now'] = strftime('%H:%M:%S', $now); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | $userList = array(); |
169 | 169 | $userCount = array(); |
170 | 170 | // Create userlist with session-count first before output |
171 | - while($activeusers = $modx->db->getRow($rs)) { |
|
171 | + while($activeusers = $modx->db->getRow($rs)) { |
|
172 | 172 | $userCount[$activeusers['internalKey']] = isset($userCount[$activeusers['internalKey']]) ? $userCount[$activeusers['internalKey']] + 1 : 1; |
173 | 173 | |
174 | 174 | $idle = $activeusers['lasthit'] < $timetocheck ? ' class="userIdle"' : ''; |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | $currentaction |
187 | 187 | ); |
188 | 188 | } |
189 | - foreach($userList as $params) { |
|
189 | + foreach($userList as $params) { |
|
190 | 190 | $params[1] = $userCount[$params[4]] > 1 ? ' class="userMultipleSessions"' : ''; |
191 | 191 | $html .= "\n\t\t" . vsprintf('<tr%s><td><strong%s>%s</strong></td><td>%s%s</td><td>%s</td><td>%s</td><td>%s</td></tr>', $params); |
192 | 192 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | // invoke event OnManagerWelcomePrerender |
233 | 233 | $evtOut = $modx->invokeEvent('OnManagerWelcomePrerender'); |
234 | -if(is_array($evtOut)) { |
|
234 | +if(is_array($evtOut)) { |
|
235 | 235 | $output = implode('', $evtOut); |
236 | 236 | $ph['OnManagerWelcomePrerender'] = $output; |
237 | 237 | } |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | 'body' => '<div class="widget-stage">[+RecentInfo+]</div>', |
341 | 341 | 'hide'=>'0' |
342 | 342 | ); |
343 | -if ($modx->config['rss_url_news']) { |
|
343 | +if ($modx->config['rss_url_news']) { |
|
344 | 344 | $widgets['news'] = array( |
345 | 345 | 'menuindex' => '40', |
346 | 346 | 'id' => 'news', |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | 'hide'=>'0' |
352 | 352 | ); |
353 | 353 | } |
354 | -if ($modx->config['rss_url_security']) { |
|
354 | +if ($modx->config['rss_url_security']) { |
|
355 | 355 | $widgets['security'] = array( |
356 | 356 | 'menuindex' => '50', |
357 | 357 | 'id' => 'security', |
@@ -365,29 +365,29 @@ discard block |
||
365 | 365 | |
366 | 366 | // invoke OnManagerWelcomeHome event |
367 | 367 | $sitewidgets = $modx->invokeEvent("OnManagerWelcomeHome", array('widgets' => $widgets)); |
368 | -if(is_array($sitewidgets)) { |
|
368 | +if(is_array($sitewidgets)) { |
|
369 | 369 | $newwidgets = array(); |
370 | - foreach($sitewidgets as $widget){ |
|
370 | + foreach($sitewidgets as $widget) { |
|
371 | 371 | $newwidgets = array_merge($newwidgets, unserialize($widget)); |
372 | 372 | } |
373 | 373 | $widgets = (count($newwidgets) > 0) ? $newwidgets : $widgets; |
374 | 374 | } |
375 | 375 | |
376 | -usort($widgets, function ($a, $b) { |
|
376 | +usort($widgets, function ($a, $b){ |
|
377 | 377 | return $a['menuindex'] - $b['menuindex']; |
378 | 378 | }); |
379 | 379 | |
380 | 380 | $tpl = getTplWidget(); |
381 | 381 | $output = ''; |
382 | -foreach($widgets as $widget) { |
|
383 | - if ($widget['hide'] != '1'){ |
|
382 | +foreach($widgets as $widget) { |
|
383 | + if ($widget['hide'] != '1') { |
|
384 | 384 | $output .= $modx->parseText($tpl, $widget); |
385 | 385 | } |
386 | 386 | } |
387 | 387 | $ph['widgets'] = $output; |
388 | 388 | |
389 | 389 | // load template |
390 | -if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
|
390 | +if(!isset($modx->config['manager_welcome_tpl']) || empty($modx->config['manager_welcome_tpl'])) { |
|
391 | 391 | $modx->config['manager_welcome_tpl'] = MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'; |
392 | 392 | } |
393 | 393 | |
@@ -395,26 +395,28 @@ discard block |
||
395 | 395 | $target = str_replace('[+base_path+]', MODX_BASE_PATH, $target); |
396 | 396 | $target = $modx->mergeSettingsContent($target); |
397 | 397 | |
398 | -if(substr($target, 0, 1) === '@') { |
|
399 | - if(substr($target, 0, 6) === '@CHUNK') { |
|
398 | +if(substr($target, 0, 1) === '@') { |
|
399 | + if(substr($target, 0, 6) === '@CHUNK') { |
|
400 | 400 | $content = $modx->getChunk(trim(substr($target, 7))); |
401 | - } elseif(substr($target, 0, 5) === '@FILE') { |
|
401 | + } elseif(substr($target, 0, 5) === '@FILE') { |
|
402 | 402 | $content = file_get_contents(trim(substr($target, 6))); |
403 | - } else { |
|
403 | + } else { |
|
404 | 404 | $content = ''; |
405 | 405 | } |
406 | -} else { |
|
406 | +} else { |
|
407 | 407 | $chunk = $modx->getChunk($target); |
408 | - if($chunk !== false && !empty($chunk)) { |
|
408 | + if($chunk !== false && !empty($chunk)) { |
|
409 | 409 | $content = $chunk; |
410 | - } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
410 | + } elseif(is_file(MODX_BASE_PATH . $target)) { |
|
411 | 411 | $content = file_get_contents(MODX_BASE_PATH . $target); |
412 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
412 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl')) { |
|
413 | 413 | $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/welcome.tpl'); |
414 | - } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) // ClipperCMS compatible |
|
414 | + } elseif(is_file(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html')) { |
|
415 | + // ClipperCMS compatible |
|
415 | 416 | { |
416 | - $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
417 | - } else { |
|
417 | + $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/' . $modx->config['manager_theme'] . '/html/welcome.html'); |
|
418 | + } |
|
419 | + } else { |
|
418 | 420 | $content = file_get_contents(MODX_MANAGER_PATH . 'media/style/common/welcome.tpl'); |
419 | 421 | } |
420 | 422 | } |
@@ -423,7 +425,7 @@ discard block |
||
423 | 425 | $content = $modx->mergeConditionalTagsContent($content); |
424 | 426 | $content = $modx->mergeSettingsContent($content); |
425 | 427 | $content = $modx->parseText($content, $ph); |
426 | -if(strpos($content, '[+') !== false) { |
|
428 | +if(strpos($content, '[+') !== false) { |
|
427 | 429 | $modx->toPlaceholders($ph); |
428 | 430 | $content = $modx->mergePlaceholderContent($content); |
429 | 431 | } |
@@ -432,7 +434,7 @@ discard block |
||
432 | 434 | $content = $modx->parseText($content, $_style, '[&', '&]'); |
433 | 435 | $content = $modx->cleanUpMODXTags($content); //cleanup |
434 | 436 | |
435 | -if($js = $modx->getRegisteredClientScripts()) { |
|
437 | +if($js = $modx->getRegisteredClientScripts()) { |
|
436 | 438 | $content .= $js; |
437 | 439 | } |
438 | 440 | |
@@ -442,7 +444,9 @@ discard block |
||
442 | 444 | // <a href="javascript:;" class="setting"><i class="fa fa-cog"></i></a> |
443 | 445 | // <a href="javascript:;" class="closed"><i class="fa fa-close"></i></a> |
444 | 446 | //</span> |
445 | -function getTplWidget() { // recent document info |
|
447 | +function getTplWidget() |
|
448 | +{ |
|
449 | +// recent document info |
|
446 | 450 | return ' |
447 | 451 | <div class="[+cols+]" id="[+id+]"> |
448 | 452 | <div class="card"[+cardAttr+]> |
@@ -453,7 +457,9 @@ discard block |
||
453 | 457 | '; |
454 | 458 | } |
455 | 459 | |
456 | -function getRecentInfo() { // recent document info |
|
460 | +function getRecentInfo() |
|
461 | +{ |
|
462 | +// recent document info |
|
457 | 463 | $modx = evolutionCMS(); |
458 | 464 | |
459 | 465 | $modx->addSnippet('recentInfoList', 'getRecentInfoList'); |
@@ -479,12 +485,13 @@ discard block |
||
479 | 485 | return $html; |
480 | 486 | } |
481 | 487 | |
482 | -function getRecentInfoList() { |
|
488 | +function getRecentInfoList() |
|
489 | +{ |
|
483 | 490 | $modx = evolutionCMS(); |
484 | 491 | |
485 | 492 | $rs = $modx->db->select('*', '[+prefix+]site_content', '', 'editedon DESC', 10); |
486 | 493 | |
487 | - if($modx->db->getRecordCount($rs) < 1) { |
|
494 | + if($modx->db->getRecordCount($rs) < 1) { |
|
488 | 495 | return '<tr><td>[%no_activity_message%]</td></tr>'; |
489 | 496 | } |
490 | 497 | |
@@ -494,22 +501,22 @@ discard block |
||
494 | 501 | $btntpl['preview_btn'] = '<a [+preview_disabled+]" title="[%preview_resource%]" target="_blank" href="../index.php?&id=[+id+]"><i class="fa fa-eye fa-fw"></i></a> '; |
495 | 502 | |
496 | 503 | $output = array(); |
497 | - while($ph = $modx->db->getRow($rs)) { |
|
504 | + while($ph = $modx->db->getRow($rs)) { |
|
498 | 505 | $docid = $ph['id']; |
499 | 506 | $_ = $modx->getUserInfo($ph['editedby']); |
500 | 507 | $ph['username'] = $_['username']; |
501 | 508 | |
502 | - if($ph['deleted'] == 1) { |
|
509 | + if($ph['deleted'] == 1) { |
|
503 | 510 | $ph['status'] = 'deleted text-danger'; |
504 | - } elseif($ph['published'] == 0) { |
|
511 | + } elseif($ph['published'] == 0) { |
|
505 | 512 | $ph['status'] = 'unpublished font-italic text-muted'; |
506 | - } else { |
|
513 | + } else { |
|
507 | 514 | $ph['status'] = 'published'; |
508 | 515 | } |
509 | 516 | |
510 | - if($modx->hasPermission('edit_document')) { |
|
517 | + if($modx->hasPermission('edit_document')) { |
|
511 | 518 | $ph['edit_btn'] = str_replace('[+id+]', $docid, $btntpl['edit']); |
512 | - } else { |
|
519 | + } else { |
|
513 | 520 | $ph['edit_btn'] = ''; |
514 | 521 | } |
515 | 522 | |
@@ -522,40 +529,40 @@ discard block |
||
522 | 529 | $preview_disabled |
523 | 530 | ), $btntpl['preview_btn']); |
524 | 531 | |
525 | - if($modx->hasPermission('delete_document')) { |
|
526 | - if($ph['deleted'] == 0) { |
|
532 | + if($modx->hasPermission('delete_document')) { |
|
533 | + if($ph['deleted'] == 0) { |
|
527 | 534 | $delete_btn = '<a onclick="return confirm(\'[%confirm_delete_record%]\')" title="[%delete_resource%]" href="index.php?a=6&id=[+id+]" target="main"><i class="fa fa-trash fa-fw"></i></a> '; |
528 | - } else { |
|
535 | + } else { |
|
529 | 536 | $delete_btn = '<a onclick="return confirm(\'[%confirm_undelete%]\')" title="[%undelete_resource%]" href="index.php?a=63&id=[+id+]" target="main"><i class="fa fa-arrow-circle-o-up fa-fw"></i></a> '; |
530 | 537 | } |
531 | 538 | $ph['delete_btn'] = str_replace('[+id+]', $docid, $delete_btn); |
532 | - } else { |
|
539 | + } else { |
|
533 | 540 | $ph['delete_btn'] = ''; |
534 | 541 | } |
535 | 542 | |
536 | - if($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
543 | + if($ph['deleted'] == 1 && $ph['published'] == 0) { |
|
537 | 544 | $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
538 | - } elseif($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
545 | + } elseif($ph['deleted'] == 1 && $ph['published'] == 1) { |
|
539 | 546 | $publish_btn = '<a class="disabled" title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
540 | - } elseif($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
547 | + } elseif($ph['deleted'] == 0 && $ph['published'] == 0) { |
|
541 | 548 | $publish_btn = '<a title="[%publish_resource%]" href="index.php?a=61&id=[+id+]" target="main"><i class="fa fa-arrow-up fa-fw"></i></a> '; |
542 | - } else { |
|
549 | + } else { |
|
543 | 550 | $publish_btn = '<a title="[%unpublish_resource%]" href="index.php?a=62&id=[+id+]" target="main"><i class="fa fa-arrow-down fa-fw"></i></a> '; |
544 | 551 | } |
545 | 552 | $ph['publish_btn'] = str_replace('[+id+]', $docid, $publish_btn); |
546 | 553 | |
547 | 554 | $ph['info_btn'] = str_replace('[+id+]', $docid, '<a title="[%resource_overview%]" data-toggle="collapse" data-target=".collapse[+id+]"><i class="fa fa-info fa-fw"></i></a>'); |
548 | 555 | |
549 | - if($ph['longtitle'] == '') { |
|
556 | + if($ph['longtitle'] == '') { |
|
550 | 557 | $ph['longtitle'] = '(<i>[%not_set%]</i>)'; |
551 | 558 | } |
552 | - if($ph['description'] == '') { |
|
559 | + if($ph['description'] == '') { |
|
553 | 560 | $ph['description'] = '(<i>[%not_set%]</i>)'; |
554 | 561 | } |
555 | - if($ph['introtext'] == '') { |
|
562 | + if($ph['introtext'] == '') { |
|
556 | 563 | $ph['introtext'] = '(<i>[%not_set%]</i>)'; |
557 | 564 | } |
558 | - if($ph['alias'] == '') { |
|
565 | + if($ph['alias'] == '') { |
|
559 | 566 | $ph['alias'] = '(<i>[%not_set%]</i>)'; |
560 | 567 | } |
561 | 568 | |
@@ -564,7 +571,8 @@ discard block |
||
564 | 571 | return implode("\n", $output); |
565 | 572 | } |
566 | 573 | |
567 | -function getRecentInfoRowTpl() { |
|
574 | +function getRecentInfoRowTpl() |
|
575 | +{ |
|
568 | 576 | $tpl = ' |
569 | 577 | <tr> |
570 | 578 | <td data-toggle="collapse" data-target=".collapse[+id+]" class="text-right"><span class="label label-info">[+id+]</span></td> |
@@ -593,11 +601,13 @@ discard block |
||
593 | 601 | } |
594 | 602 | |
595 | 603 | // setup icons |
596 | -function wrapIcon($i, $action) { |
|
604 | +function wrapIcon($i, $action) |
|
605 | +{ |
|
597 | 606 | return sprintf('<a href="index.php?a=%s" target="main"><span class="wm_button" style="border:0">%s</span></a>', $action, $i); |
598 | 607 | } |
599 | 608 | |
600 | -function getStartUpScript() { |
|
609 | +function getStartUpScript() |
|
610 | +{ |
|
601 | 611 | $script = ' |
602 | 612 | <script type="text/javascript"> |
603 | 613 | function hideConfigCheckWarning(key) { |
@@ -1,17 +1,17 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
3 | - die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
3 | + die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
|
4 | 4 | } |
5 | 5 | if(!$modx->hasPermission('import_static')) { |
6 | - $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
6 | + $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
|
7 | 7 | } |
8 | 8 | |
9 | 9 | // Files to upload |
10 | 10 | $allowedfiles = array( |
11 | - 'html', |
|
12 | - 'htm', |
|
13 | - 'shtml', |
|
14 | - 'xml' |
|
11 | + 'html', |
|
12 | + 'htm', |
|
13 | + 'shtml', |
|
14 | + 'xml' |
|
15 | 15 | ); |
16 | 16 | ?> |
17 | 17 | <script language="javascript"> |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | <div class="tab-page"> |
44 | 44 | <div class="container container-body"> |
45 | 45 | <?php |
46 | - if(!isset($_POST['import'])) { |
|
47 | - echo "<div class=\"element-edit-message\">" . $_lang['import_site_message'] . "</div>"; |
|
48 | - ?> |
|
46 | + if(!isset($_POST['import'])) { |
|
47 | + echo "<div class=\"element-edit-message\">" . $_lang['import_site_message'] . "</div>"; |
|
48 | + ?> |
|
49 | 49 | <form action="index.php" method="post" name="importFrm"> |
50 | 50 | <input type="hidden" name="import" value="import" /> |
51 | 51 | <input type="hidden" name="a" value="95" /> |
@@ -85,18 +85,18 @@ discard block |
||
85 | 85 | <a href="javascript:;" class="btn btn-primary" onclick="window.importFrm.submit();"><i class="<?= $_style["actions_save"] ?>"></i> <?= $_lang["import_site_start"] ?></a> |
86 | 86 | </form> |
87 | 87 | <?php |
88 | - } else { |
|
89 | - run(); |
|
90 | - $modx->clearCache('full'); |
|
91 | - ?> |
|
88 | + } else { |
|
89 | + run(); |
|
90 | + $modx->clearCache('full'); |
|
91 | + ?> |
|
92 | 92 | <a href="javascript:;" class="btn btn-primary" onclick="window.location.href='index.php?a=2';"><i class="<?= $_style["actions_close"] ?>"></i> <?= $_lang["close"] ?></a> |
93 | 93 | <script type="text/javascript"> |
94 | 94 | top.mainMenu.reloadtree(); |
95 | 95 | parent.tree.ca = 'open'; |
96 | 96 | </script> |
97 | 97 | <?php |
98 | - } |
|
99 | - ?> |
|
98 | + } |
|
99 | + ?> |
|
100 | 100 | </div> |
101 | 101 | </div> |
102 | 102 | |
@@ -105,64 +105,64 @@ discard block |
||
105 | 105 | * @return string |
106 | 106 | */ |
107 | 107 | function run() { |
108 | - $modx = evolutionCMS(); global $_lang; |
|
108 | + $modx = evolutionCMS(); global $_lang; |
|
109 | 109 | |
110 | - $tbl_site_content = $modx->getFullTableName('site_content'); |
|
111 | - $output = ''; |
|
112 | - $maxtime = $_POST['maxtime']; |
|
110 | + $tbl_site_content = $modx->getFullTableName('site_content'); |
|
111 | + $output = ''; |
|
112 | + $maxtime = $_POST['maxtime']; |
|
113 | 113 | |
114 | - if(!is_numeric($maxtime)) { |
|
115 | - $maxtime = 30; |
|
116 | - } |
|
114 | + if(!is_numeric($maxtime)) { |
|
115 | + $maxtime = 30; |
|
116 | + } |
|
117 | 117 | |
118 | - @set_time_limit($maxtime); |
|
118 | + @set_time_limit($maxtime); |
|
119 | 119 | |
120 | - $mtime = microtime(); |
|
121 | - $mtime = explode(' ', $mtime); |
|
122 | - $mtime = $mtime[1] + $mtime[0]; |
|
123 | - $importstart = $mtime; |
|
120 | + $mtime = microtime(); |
|
121 | + $mtime = explode(' ', $mtime); |
|
122 | + $mtime = $mtime[1] + $mtime[0]; |
|
123 | + $importstart = $mtime; |
|
124 | 124 | |
125 | - if($_POST['reset'] == 'on') { |
|
126 | - $modx->db->truncate($tbl_site_content); |
|
127 | - $modx->db->query("ALTER TABLE {$tbl_site_content} AUTO_INCREMENT = 1"); |
|
128 | - } |
|
125 | + if($_POST['reset'] == 'on') { |
|
126 | + $modx->db->truncate($tbl_site_content); |
|
127 | + $modx->db->query("ALTER TABLE {$tbl_site_content} AUTO_INCREMENT = 1"); |
|
128 | + } |
|
129 | 129 | |
130 | - $parent = (int)$_POST['parent']; |
|
130 | + $parent = (int)$_POST['parent']; |
|
131 | 131 | |
132 | - if(is_dir(MODX_BASE_PATH . 'temp/import')) { |
|
133 | - $filedir = MODX_BASE_PATH . 'temp/import/'; |
|
134 | - } elseif(is_dir(MODX_BASE_PATH . 'assets/import')) { |
|
135 | - $filedir = MODX_BASE_PATH . 'assets/import/'; |
|
136 | - } else { |
|
132 | + if(is_dir(MODX_BASE_PATH . 'temp/import')) { |
|
133 | + $filedir = MODX_BASE_PATH . 'temp/import/'; |
|
134 | + } elseif(is_dir(MODX_BASE_PATH . 'assets/import')) { |
|
135 | + $filedir = MODX_BASE_PATH . 'assets/import/'; |
|
136 | + } else { |
|
137 | 137 | $filedir = ''; |
138 | 138 | } |
139 | 139 | |
140 | - $filesfound = 0; |
|
140 | + $filesfound = 0; |
|
141 | 141 | |
142 | - $files = getFiles($filedir); |
|
143 | - $files = pop_index($files); |
|
142 | + $files = getFiles($filedir); |
|
143 | + $files = pop_index($files); |
|
144 | 144 | |
145 | - // no. of files to import |
|
146 | - $output .= sprintf('<p>' . $_lang['import_files_found'] . '</p>', $filesfound); |
|
145 | + // no. of files to import |
|
146 | + $output .= sprintf('<p>' . $_lang['import_files_found'] . '</p>', $filesfound); |
|
147 | 147 | |
148 | - // import files |
|
149 | - if(0 < count($files)) { |
|
150 | - $modx->db->update(array('isfolder' => 1), $tbl_site_content, "id='{$parent}'"); |
|
151 | - importFiles($parent, $filedir, $files, 'root'); |
|
152 | - } |
|
148 | + // import files |
|
149 | + if(0 < count($files)) { |
|
150 | + $modx->db->update(array('isfolder' => 1), $tbl_site_content, "id='{$parent}'"); |
|
151 | + importFiles($parent, $filedir, $files, 'root'); |
|
152 | + } |
|
153 | 153 | |
154 | - $mtime = microtime(); |
|
155 | - $mtime = explode(' ', $mtime); |
|
156 | - $mtime = $mtime[1] + $mtime[0]; |
|
157 | - $importend = $mtime; |
|
158 | - $totaltime = ($importend - $importstart); |
|
159 | - $output .= sprintf('<p>' . $_lang['import_site_time'] . '</p>', round($totaltime, 3)); |
|
154 | + $mtime = microtime(); |
|
155 | + $mtime = explode(' ', $mtime); |
|
156 | + $mtime = $mtime[1] + $mtime[0]; |
|
157 | + $importend = $mtime; |
|
158 | + $totaltime = ($importend - $importstart); |
|
159 | + $output .= sprintf('<p>' . $_lang['import_site_time'] . '</p>', round($totaltime, 3)); |
|
160 | 160 | |
161 | - if($_POST['convert_link'] == 'on') { |
|
162 | - convertLink(); |
|
163 | - } |
|
161 | + if($_POST['convert_link'] == 'on') { |
|
162 | + convertLink(); |
|
163 | + } |
|
164 | 164 | |
165 | - return $output; |
|
165 | + return $output; |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -172,144 +172,144 @@ discard block |
||
172 | 172 | * @param string $mode |
173 | 173 | */ |
174 | 174 | function importFiles($parent, $filedir, $files, $mode) { |
175 | - $modx = evolutionCMS(); |
|
176 | - global $_lang, $allowedfiles; |
|
177 | - global $search_default, $cache_default, $publish_default; |
|
178 | - |
|
179 | - $tbl_site_content = $modx->getFullTableName('site_content'); |
|
180 | - $tbl_system_settings = $modx->getFullTableName('system_settings'); |
|
181 | - |
|
182 | - $createdby = $modx->getLoginUserID(); |
|
183 | - if(!is_array($files)) { |
|
184 | - return; |
|
185 | - } |
|
186 | - if($_POST['object'] === 'all') { |
|
187 | - $modx->config['default_template'] = '0'; |
|
188 | - $richtext = '0'; |
|
189 | - } else { |
|
190 | - $richtext = '1'; |
|
191 | - } |
|
192 | - |
|
193 | - foreach($files as $id => $value) { |
|
194 | - if(is_array($value)) { |
|
195 | - // create folder |
|
196 | - $alias = $id; |
|
197 | - printf('<span>' . $_lang['import_site_importing_document'] . '</span>', $alias); |
|
198 | - $field = array(); |
|
199 | - $field['type'] = 'document'; |
|
200 | - $field['contentType'] = 'text/html'; |
|
201 | - $field['published'] = $publish_default; |
|
202 | - $field['parent'] = $parent; |
|
203 | - $field['alias'] = $modx->stripAlias($alias); |
|
204 | - $field['richtext'] = $richtext; |
|
205 | - $field['template'] = $modx->config['default_template']; |
|
206 | - $field['searchable'] = $search_default; |
|
207 | - $field['cacheable'] = $cache_default; |
|
208 | - $field['createdby'] = $createdby; |
|
209 | - $field['isfolder'] = 1; |
|
210 | - $field['menuindex'] = 1; |
|
211 | - $find = false; |
|
212 | - foreach(array( |
|
213 | - 'index.html', |
|
214 | - 'index.htm' |
|
215 | - ) as $filename) { |
|
216 | - $filepath = $filedir . $alias . '/' . $filename; |
|
217 | - if($find === false && file_exists($filepath)) { |
|
218 | - $file = getFileContent($filepath); |
|
219 | - list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
|
220 | - |
|
221 | - $date = filemtime($filepath); |
|
222 | - $field['pagetitle'] = $pagetitle; |
|
223 | - $field['longtitle'] = $pagetitle; |
|
224 | - $field['description'] = $description; |
|
225 | - $field['content'] = $modx->db->escape($content); |
|
226 | - $field['createdon'] = $date; |
|
227 | - $field['editedon'] = $date; |
|
228 | - $newid = $modx->db->insert($field, $tbl_site_content); |
|
229 | - if($newid) { |
|
230 | - $find = true; |
|
231 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
232 | - importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
233 | - } else { |
|
234 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
235 | - exit; |
|
236 | - } |
|
237 | - } |
|
238 | - } |
|
239 | - if($find === false) { |
|
240 | - $date = time(); |
|
241 | - $field['pagetitle'] = '---'; |
|
242 | - $field['content'] = ''; |
|
243 | - $field['createdon'] = $date; |
|
244 | - $field['editedon'] = $date; |
|
245 | - $field['hidemenu'] = '1'; |
|
246 | - $newid = $modx->db->insert($field, $tbl_site_content); |
|
247 | - if($newid) { |
|
248 | - $find = true; |
|
249 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
250 | - importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
251 | - } else { |
|
252 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
253 | - exit; |
|
254 | - } |
|
255 | - } |
|
256 | - } else { |
|
257 | - // create document |
|
258 | - if($mode == 'sub' && $value == 'index.html') { |
|
259 | - continue; |
|
260 | - } |
|
261 | - $filename = $value; |
|
262 | - $fparts = explode('.', $value); |
|
263 | - $alias = $fparts[0]; |
|
264 | - $ext = (count($fparts) > 1) ? $fparts[count($fparts) - 1] : ""; |
|
265 | - printf("<span>" . $_lang['import_site_importing_document'] . "</span>", $filename); |
|
266 | - |
|
267 | - if(!in_array($ext, $allowedfiles)) { |
|
268 | - echo ' - <span class="fail">' . $_lang["import_site_skip"] . '</span><br />' . "\n"; |
|
269 | - } else { |
|
270 | - $filepath = $filedir . $filename; |
|
271 | - $file = getFileContent($filepath); |
|
272 | - list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
|
273 | - |
|
274 | - $date = filemtime($filepath); |
|
275 | - $field = array(); |
|
276 | - $field['type'] = 'document'; |
|
277 | - $field['contentType'] = 'text/html'; |
|
278 | - $field['pagetitle'] = $pagetitle; |
|
279 | - $field['longtitle'] = $pagetitle; |
|
280 | - $field['description'] = $description; |
|
281 | - $field['alias'] = $modx->stripAlias($alias); |
|
282 | - $field['published'] = $publish_default; |
|
283 | - $field['parent'] = $parent; |
|
284 | - $field['content'] = $modx->db->escape($content); |
|
285 | - $field['richtext'] = $richtext; |
|
286 | - $field['template'] = $modx->config['default_template']; |
|
287 | - $field['searchable'] = $search_default; |
|
288 | - $field['cacheable'] = $cache_default; |
|
289 | - $field['createdby'] = $createdby; |
|
290 | - $field['createdon'] = $date; |
|
291 | - $field['editedon'] = $date; |
|
292 | - $field['isfolder'] = 0; |
|
293 | - $field['menuindex'] = ($alias == 'index') ? 0 : 2; |
|
294 | - $newid = $modx->db->insert($field, $tbl_site_content); |
|
295 | - if($newid) { |
|
296 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
297 | - } else { |
|
298 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
299 | - exit; |
|
300 | - } |
|
301 | - |
|
302 | - $is_site_start = false; |
|
303 | - if($filename == 'index.html') { |
|
304 | - $is_site_start = true; |
|
305 | - } |
|
306 | - if($is_site_start == true && $_POST['reset'] == 'on') { |
|
307 | - $modx->db->update(array('setting_value' => $newid), $tbl_system_settings, "setting_name='site_start'"); |
|
308 | - $modx->db->update(array('menuindex' => 0), $tbl_site_content, "id='{$newid}'"); |
|
309 | - } |
|
310 | - } |
|
311 | - } |
|
312 | - } |
|
175 | + $modx = evolutionCMS(); |
|
176 | + global $_lang, $allowedfiles; |
|
177 | + global $search_default, $cache_default, $publish_default; |
|
178 | + |
|
179 | + $tbl_site_content = $modx->getFullTableName('site_content'); |
|
180 | + $tbl_system_settings = $modx->getFullTableName('system_settings'); |
|
181 | + |
|
182 | + $createdby = $modx->getLoginUserID(); |
|
183 | + if(!is_array($files)) { |
|
184 | + return; |
|
185 | + } |
|
186 | + if($_POST['object'] === 'all') { |
|
187 | + $modx->config['default_template'] = '0'; |
|
188 | + $richtext = '0'; |
|
189 | + } else { |
|
190 | + $richtext = '1'; |
|
191 | + } |
|
192 | + |
|
193 | + foreach($files as $id => $value) { |
|
194 | + if(is_array($value)) { |
|
195 | + // create folder |
|
196 | + $alias = $id; |
|
197 | + printf('<span>' . $_lang['import_site_importing_document'] . '</span>', $alias); |
|
198 | + $field = array(); |
|
199 | + $field['type'] = 'document'; |
|
200 | + $field['contentType'] = 'text/html'; |
|
201 | + $field['published'] = $publish_default; |
|
202 | + $field['parent'] = $parent; |
|
203 | + $field['alias'] = $modx->stripAlias($alias); |
|
204 | + $field['richtext'] = $richtext; |
|
205 | + $field['template'] = $modx->config['default_template']; |
|
206 | + $field['searchable'] = $search_default; |
|
207 | + $field['cacheable'] = $cache_default; |
|
208 | + $field['createdby'] = $createdby; |
|
209 | + $field['isfolder'] = 1; |
|
210 | + $field['menuindex'] = 1; |
|
211 | + $find = false; |
|
212 | + foreach(array( |
|
213 | + 'index.html', |
|
214 | + 'index.htm' |
|
215 | + ) as $filename) { |
|
216 | + $filepath = $filedir . $alias . '/' . $filename; |
|
217 | + if($find === false && file_exists($filepath)) { |
|
218 | + $file = getFileContent($filepath); |
|
219 | + list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
|
220 | + |
|
221 | + $date = filemtime($filepath); |
|
222 | + $field['pagetitle'] = $pagetitle; |
|
223 | + $field['longtitle'] = $pagetitle; |
|
224 | + $field['description'] = $description; |
|
225 | + $field['content'] = $modx->db->escape($content); |
|
226 | + $field['createdon'] = $date; |
|
227 | + $field['editedon'] = $date; |
|
228 | + $newid = $modx->db->insert($field, $tbl_site_content); |
|
229 | + if($newid) { |
|
230 | + $find = true; |
|
231 | + echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
232 | + importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
233 | + } else { |
|
234 | + echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
235 | + exit; |
|
236 | + } |
|
237 | + } |
|
238 | + } |
|
239 | + if($find === false) { |
|
240 | + $date = time(); |
|
241 | + $field['pagetitle'] = '---'; |
|
242 | + $field['content'] = ''; |
|
243 | + $field['createdon'] = $date; |
|
244 | + $field['editedon'] = $date; |
|
245 | + $field['hidemenu'] = '1'; |
|
246 | + $newid = $modx->db->insert($field, $tbl_site_content); |
|
247 | + if($newid) { |
|
248 | + $find = true; |
|
249 | + echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
250 | + importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
251 | + } else { |
|
252 | + echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
253 | + exit; |
|
254 | + } |
|
255 | + } |
|
256 | + } else { |
|
257 | + // create document |
|
258 | + if($mode == 'sub' && $value == 'index.html') { |
|
259 | + continue; |
|
260 | + } |
|
261 | + $filename = $value; |
|
262 | + $fparts = explode('.', $value); |
|
263 | + $alias = $fparts[0]; |
|
264 | + $ext = (count($fparts) > 1) ? $fparts[count($fparts) - 1] : ""; |
|
265 | + printf("<span>" . $_lang['import_site_importing_document'] . "</span>", $filename); |
|
266 | + |
|
267 | + if(!in_array($ext, $allowedfiles)) { |
|
268 | + echo ' - <span class="fail">' . $_lang["import_site_skip"] . '</span><br />' . "\n"; |
|
269 | + } else { |
|
270 | + $filepath = $filedir . $filename; |
|
271 | + $file = getFileContent($filepath); |
|
272 | + list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
|
273 | + |
|
274 | + $date = filemtime($filepath); |
|
275 | + $field = array(); |
|
276 | + $field['type'] = 'document'; |
|
277 | + $field['contentType'] = 'text/html'; |
|
278 | + $field['pagetitle'] = $pagetitle; |
|
279 | + $field['longtitle'] = $pagetitle; |
|
280 | + $field['description'] = $description; |
|
281 | + $field['alias'] = $modx->stripAlias($alias); |
|
282 | + $field['published'] = $publish_default; |
|
283 | + $field['parent'] = $parent; |
|
284 | + $field['content'] = $modx->db->escape($content); |
|
285 | + $field['richtext'] = $richtext; |
|
286 | + $field['template'] = $modx->config['default_template']; |
|
287 | + $field['searchable'] = $search_default; |
|
288 | + $field['cacheable'] = $cache_default; |
|
289 | + $field['createdby'] = $createdby; |
|
290 | + $field['createdon'] = $date; |
|
291 | + $field['editedon'] = $date; |
|
292 | + $field['isfolder'] = 0; |
|
293 | + $field['menuindex'] = ($alias == 'index') ? 0 : 2; |
|
294 | + $newid = $modx->db->insert($field, $tbl_site_content); |
|
295 | + if($newid) { |
|
296 | + echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
297 | + } else { |
|
298 | + echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
299 | + exit; |
|
300 | + } |
|
301 | + |
|
302 | + $is_site_start = false; |
|
303 | + if($filename == 'index.html') { |
|
304 | + $is_site_start = true; |
|
305 | + } |
|
306 | + if($is_site_start == true && $_POST['reset'] == 'on') { |
|
307 | + $modx->db->update(array('setting_value' => $newid), $tbl_system_settings, "setting_name='site_start'"); |
|
308 | + $modx->db->update(array('menuindex' => 0), $tbl_site_content, "id='{$newid}'"); |
|
309 | + } |
|
310 | + } |
|
311 | + } |
|
312 | + } |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | /** |
@@ -319,27 +319,27 @@ discard block |
||
319 | 319 | * @return array |
320 | 320 | */ |
321 | 321 | function getFiles($directory, $listing = array(), $count = 0) { |
322 | - global $_lang; |
|
323 | - global $filesfound; |
|
324 | - $dummy = $count; |
|
325 | - if( ! empty($directory) && $files = scandir($directory)) { |
|
326 | - foreach($files as $file) { |
|
327 | - if($file == '.' || $file == '..') { |
|
328 | - continue; |
|
329 | - } elseif($h = @opendir($directory . $file . "/")) { |
|
330 | - closedir($h); |
|
331 | - $count = -1; |
|
332 | - $listing[$file] = getFiles($directory . $file . "/", array(), $count + 1); |
|
333 | - } elseif(strpos($file, '.htm') !== false) { |
|
334 | - $listing[$dummy] = $file; |
|
335 | - $dummy = $dummy + 1; |
|
336 | - $filesfound++; |
|
337 | - } |
|
338 | - } |
|
339 | - } else { |
|
340 | - echo '<p><span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_no_open_dir"] . $directory . ".</p>"; |
|
341 | - } |
|
342 | - return ($listing); |
|
322 | + global $_lang; |
|
323 | + global $filesfound; |
|
324 | + $dummy = $count; |
|
325 | + if( ! empty($directory) && $files = scandir($directory)) { |
|
326 | + foreach($files as $file) { |
|
327 | + if($file == '.' || $file == '..') { |
|
328 | + continue; |
|
329 | + } elseif($h = @opendir($directory . $file . "/")) { |
|
330 | + closedir($h); |
|
331 | + $count = -1; |
|
332 | + $listing[$file] = getFiles($directory . $file . "/", array(), $count + 1); |
|
333 | + } elseif(strpos($file, '.htm') !== false) { |
|
334 | + $listing[$dummy] = $file; |
|
335 | + $dummy = $dummy + 1; |
|
336 | + $filesfound++; |
|
337 | + } |
|
338 | + } |
|
339 | + } else { |
|
340 | + echo '<p><span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_no_open_dir"] . $directory . ".</p>"; |
|
341 | + } |
|
342 | + return ($listing); |
|
343 | 343 | } |
344 | 344 | |
345 | 345 | /** |
@@ -347,13 +347,13 @@ discard block |
||
347 | 347 | * @return bool|string |
348 | 348 | */ |
349 | 349 | function getFileContent($filepath) { |
350 | - global $_lang; |
|
351 | - // get the file |
|
352 | - if(!$buffer = file_get_contents($filepath)) { |
|
353 | - echo '<p><span class="fail">' . $_lang['import_site_failed'] . "</span> " . $_lang["import_site_failed_no_retrieve_file"] . $filepath . ".</p>"; |
|
354 | - } else { |
|
355 | - return $buffer; |
|
356 | - } |
|
350 | + global $_lang; |
|
351 | + // get the file |
|
352 | + if(!$buffer = file_get_contents($filepath)) { |
|
353 | + echo '<p><span class="fail">' . $_lang['import_site_failed'] . "</span> " . $_lang["import_site_failed_no_retrieve_file"] . $filepath . ".</p>"; |
|
354 | + } else { |
|
355 | + return $buffer; |
|
356 | + } |
|
357 | 357 | } |
358 | 358 | |
359 | 359 | /** |
@@ -361,20 +361,20 @@ discard block |
||
361 | 361 | * @return array |
362 | 362 | */ |
363 | 363 | function pop_index($array) { |
364 | - $new_array = array(); |
|
365 | - foreach($array as $k => $v) { |
|
366 | - if($v !== 'index.html' && $v !== 'index.htm') { |
|
367 | - $new_array[$k] = $v; |
|
368 | - } else { |
|
369 | - array_unshift($new_array, $v); |
|
370 | - } |
|
371 | - } |
|
372 | - foreach($array as $k => $v) { |
|
373 | - if(is_array($v)) { |
|
374 | - $new_array[$k] = $v; |
|
375 | - } |
|
376 | - } |
|
377 | - return $new_array; |
|
364 | + $new_array = array(); |
|
365 | + foreach($array as $k => $v) { |
|
366 | + if($v !== 'index.html' && $v !== 'index.htm') { |
|
367 | + $new_array[$k] = $v; |
|
368 | + } else { |
|
369 | + array_unshift($new_array, $v); |
|
370 | + } |
|
371 | + } |
|
372 | + foreach($array as $k => $v) { |
|
373 | + if(is_array($v)) { |
|
374 | + $new_array[$k] = $v; |
|
375 | + } |
|
376 | + } |
|
377 | + return $new_array; |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | /** |
@@ -384,108 +384,108 @@ discard block |
||
384 | 384 | * @return array |
385 | 385 | */ |
386 | 386 | function treatContent($src, $filename, $alias) { |
387 | - $modx = evolutionCMS(); |
|
388 | - |
|
389 | - $src = mb_convert_encoding($src, $modx->config['modx_charset'], 'UTF-8,SJIS-win,eucJP-win,SJIS,EUC-JP,ASCII'); |
|
390 | - |
|
391 | - if(preg_match("@<title>(.*)</title>@i", $src, $matches)) { |
|
392 | - $pagetitle = ($matches[1] !== '') ? $matches[1] : $filename; |
|
393 | - $pagetitle = str_replace('[*pagetitle*]', '', $pagetitle); |
|
394 | - } else { |
|
395 | - $pagetitle = $alias; |
|
396 | - } |
|
397 | - if(!$pagetitle) { |
|
398 | - $pagetitle = $alias; |
|
399 | - } |
|
400 | - |
|
401 | - if(preg_match('@<meta[^>]+"description"[^>]+content=[\'"](.*)[\'"].+>@i', $src, $matches)) { |
|
402 | - $description = ($matches[1] !== '') ? $matches[1] : $filename; |
|
403 | - $description = str_replace('[*description*]', '', $description); |
|
404 | - } else { |
|
405 | - $description = ''; |
|
406 | - } |
|
407 | - |
|
408 | - if((preg_match("@<body[^>]*>(.*)[^<]+</body>@is", $src, $matches)) && $_POST['object'] == 'body') { |
|
409 | - $content = $matches[1]; |
|
410 | - } else { |
|
411 | - $content = $src; |
|
412 | - $s = '/(<meta[^>]+charset\s*=)[^>"\'=]+(.+>)/i'; |
|
413 | - $r = '$1' . $modx->config['modx_charset'] . '$2'; |
|
414 | - $content = preg_replace($s, $r, $content); |
|
415 | - $content = preg_replace('@<title>.*</title>@i', "<title>[*pagetitle*]</title>", $content); |
|
416 | - } |
|
417 | - $content = str_replace('[*content*]', '[ *content* ]', $content); |
|
418 | - $content = trim($content); |
|
419 | - $pagetitle = $modx->db->escape($pagetitle); |
|
420 | - return array( |
|
421 | - $pagetitle, |
|
422 | - $content, |
|
423 | - $description |
|
424 | - ); |
|
387 | + $modx = evolutionCMS(); |
|
388 | + |
|
389 | + $src = mb_convert_encoding($src, $modx->config['modx_charset'], 'UTF-8,SJIS-win,eucJP-win,SJIS,EUC-JP,ASCII'); |
|
390 | + |
|
391 | + if(preg_match("@<title>(.*)</title>@i", $src, $matches)) { |
|
392 | + $pagetitle = ($matches[1] !== '') ? $matches[1] : $filename; |
|
393 | + $pagetitle = str_replace('[*pagetitle*]', '', $pagetitle); |
|
394 | + } else { |
|
395 | + $pagetitle = $alias; |
|
396 | + } |
|
397 | + if(!$pagetitle) { |
|
398 | + $pagetitle = $alias; |
|
399 | + } |
|
400 | + |
|
401 | + if(preg_match('@<meta[^>]+"description"[^>]+content=[\'"](.*)[\'"].+>@i', $src, $matches)) { |
|
402 | + $description = ($matches[1] !== '') ? $matches[1] : $filename; |
|
403 | + $description = str_replace('[*description*]', '', $description); |
|
404 | + } else { |
|
405 | + $description = ''; |
|
406 | + } |
|
407 | + |
|
408 | + if((preg_match("@<body[^>]*>(.*)[^<]+</body>@is", $src, $matches)) && $_POST['object'] == 'body') { |
|
409 | + $content = $matches[1]; |
|
410 | + } else { |
|
411 | + $content = $src; |
|
412 | + $s = '/(<meta[^>]+charset\s*=)[^>"\'=]+(.+>)/i'; |
|
413 | + $r = '$1' . $modx->config['modx_charset'] . '$2'; |
|
414 | + $content = preg_replace($s, $r, $content); |
|
415 | + $content = preg_replace('@<title>.*</title>@i', "<title>[*pagetitle*]</title>", $content); |
|
416 | + } |
|
417 | + $content = str_replace('[*content*]', '[ *content* ]', $content); |
|
418 | + $content = trim($content); |
|
419 | + $pagetitle = $modx->db->escape($pagetitle); |
|
420 | + return array( |
|
421 | + $pagetitle, |
|
422 | + $content, |
|
423 | + $description |
|
424 | + ); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | /** |
428 | 428 | * @return void |
429 | 429 | */ |
430 | 430 | function convertLink() { |
431 | - $modx = evolutionCMS(); |
|
432 | - $tbl_site_content = $modx->getFullTableName('site_content'); |
|
431 | + $modx = evolutionCMS(); |
|
432 | + $tbl_site_content = $modx->getFullTableName('site_content'); |
|
433 | 433 | |
434 | - $rs = $modx->db->select('id,content', $tbl_site_content); |
|
435 | - $p = array(); |
|
434 | + $rs = $modx->db->select('id,content', $tbl_site_content); |
|
435 | + $p = array(); |
|
436 | 436 | $target = array(); |
437 | - $dir = ''; |
|
438 | - while($row = $modx->db->getRow($rs)) { |
|
439 | - $id = $row['id']; |
|
440 | - $array = explode('<a href=', $row['content']); |
|
441 | - $c = 0; |
|
442 | - foreach($array as $v) { |
|
443 | - if($v[0] === '"') { |
|
444 | - $v = substr($v, 1); |
|
445 | - list($href, $v) = explode('"', $v, 2); |
|
446 | - $_ = $href; |
|
447 | - if(strpos($_, $modx->config['site_url']) !== false) { |
|
448 | - $_ = $modx->config['base_url'] . str_replace($modx->config['site_url'], '', $_); |
|
449 | - } |
|
450 | - if($_[0] === '/') { |
|
451 | - $_ = substr($_, 1); |
|
452 | - } |
|
453 | - $_ = str_replace('/index.html', '.html', $_); |
|
454 | - $level = substr_count($_, '../'); |
|
455 | - if(1 < $level) { |
|
456 | - if(!isset($p[$id])) { |
|
457 | - $p[$id] = $modx->getParentIds($id); |
|
458 | - } |
|
459 | - $k = array_keys($p[$id]); |
|
460 | - while(0 < $level) { |
|
461 | - $dir = array_shift($k); |
|
462 | - $level--; |
|
463 | - } |
|
464 | - if($dir != '') { |
|
465 | - $dir .= '/'; |
|
466 | - } |
|
467 | - } else { |
|
468 | - $dir = ''; |
|
469 | - } |
|
470 | - |
|
471 | - $_ = trim($_, './'); |
|
472 | - if(strpos($_, '/') !== false) { |
|
473 | - $_ = substr($_, strrpos($_, '/')); |
|
474 | - } |
|
475 | - $_ = $dir . str_replace('.html', '', $_); |
|
476 | - if(!isset($target[$_])) { |
|
477 | - $target[$_] = $modx->getIdFromAlias($_); |
|
478 | - } |
|
479 | - $target[$_] = trim($target[$_]); |
|
480 | - if(!empty($target[$_])) { |
|
481 | - $href = '[~' . $target[$_] . '~]'; |
|
482 | - } |
|
483 | - $array[$c] = '<a href="' . $href . '"' . $v; |
|
484 | - } |
|
485 | - $c++; |
|
486 | - } |
|
487 | - $content = implode('', $array); |
|
488 | - $f['content'] = $modx->db->escape($content); |
|
489 | - $modx->db->update($f, $tbl_site_content, "id='{$id}'"); |
|
490 | - } |
|
437 | + $dir = ''; |
|
438 | + while($row = $modx->db->getRow($rs)) { |
|
439 | + $id = $row['id']; |
|
440 | + $array = explode('<a href=', $row['content']); |
|
441 | + $c = 0; |
|
442 | + foreach($array as $v) { |
|
443 | + if($v[0] === '"') { |
|
444 | + $v = substr($v, 1); |
|
445 | + list($href, $v) = explode('"', $v, 2); |
|
446 | + $_ = $href; |
|
447 | + if(strpos($_, $modx->config['site_url']) !== false) { |
|
448 | + $_ = $modx->config['base_url'] . str_replace($modx->config['site_url'], '', $_); |
|
449 | + } |
|
450 | + if($_[0] === '/') { |
|
451 | + $_ = substr($_, 1); |
|
452 | + } |
|
453 | + $_ = str_replace('/index.html', '.html', $_); |
|
454 | + $level = substr_count($_, '../'); |
|
455 | + if(1 < $level) { |
|
456 | + if(!isset($p[$id])) { |
|
457 | + $p[$id] = $modx->getParentIds($id); |
|
458 | + } |
|
459 | + $k = array_keys($p[$id]); |
|
460 | + while(0 < $level) { |
|
461 | + $dir = array_shift($k); |
|
462 | + $level--; |
|
463 | + } |
|
464 | + if($dir != '') { |
|
465 | + $dir .= '/'; |
|
466 | + } |
|
467 | + } else { |
|
468 | + $dir = ''; |
|
469 | + } |
|
470 | + |
|
471 | + $_ = trim($_, './'); |
|
472 | + if(strpos($_, '/') !== false) { |
|
473 | + $_ = substr($_, strrpos($_, '/')); |
|
474 | + } |
|
475 | + $_ = $dir . str_replace('.html', '', $_); |
|
476 | + if(!isset($target[$_])) { |
|
477 | + $target[$_] = $modx->getIdFromAlias($_); |
|
478 | + } |
|
479 | + $target[$_] = trim($target[$_]); |
|
480 | + if(!empty($target[$_])) { |
|
481 | + $href = '[~' . $target[$_] . '~]'; |
|
482 | + } |
|
483 | + $array[$c] = '<a href="' . $href . '"' . $v; |
|
484 | + } |
|
485 | + $c++; |
|
486 | + } |
|
487 | + $content = implode('', $array); |
|
488 | + $f['content'] = $modx->db->escape($content); |
|
489 | + $modx->db->update($f, $tbl_site_content, "id='{$id}'"); |
|
490 | + } |
|
491 | 491 | } |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if( ! defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
2 | +if (!defined('IN_MANAGER_MODE') || IN_MANAGER_MODE !== true) { |
|
3 | 3 | die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the EVO Content Manager instead of accessing this file directly."); |
4 | 4 | } |
5 | -if(!$modx->hasPermission('import_static')) { |
|
5 | +if (!$modx->hasPermission('import_static')) { |
|
6 | 6 | $modx->webAlertAndQuit($_lang["error_no_privileges"]); |
7 | 7 | } |
8 | 8 | |
@@ -43,8 +43,8 @@ discard block |
||
43 | 43 | <div class="tab-page"> |
44 | 44 | <div class="container container-body"> |
45 | 45 | <?php |
46 | - if(!isset($_POST['import'])) { |
|
47 | - echo "<div class=\"element-edit-message\">" . $_lang['import_site_message'] . "</div>"; |
|
46 | + if (!isset($_POST['import'])) { |
|
47 | + echo "<div class=\"element-edit-message\">".$_lang['import_site_message']."</div>"; |
|
48 | 48 | ?> |
49 | 49 | <form action="index.php" method="post" name="importFrm"> |
50 | 50 | <input type="hidden" name="import" value="import" /> |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | /** |
105 | 105 | * @return string |
106 | 106 | */ |
107 | -function run() { |
|
107 | +function run(){ |
|
108 | 108 | $modx = evolutionCMS(); global $_lang; |
109 | 109 | |
110 | 110 | $tbl_site_content = $modx->getFullTableName('site_content'); |
111 | 111 | $output = ''; |
112 | 112 | $maxtime = $_POST['maxtime']; |
113 | 113 | |
114 | - if(!is_numeric($maxtime)) { |
|
114 | + if (!is_numeric($maxtime)) { |
|
115 | 115 | $maxtime = 30; |
116 | 116 | } |
117 | 117 | |
@@ -122,17 +122,17 @@ discard block |
||
122 | 122 | $mtime = $mtime[1] + $mtime[0]; |
123 | 123 | $importstart = $mtime; |
124 | 124 | |
125 | - if($_POST['reset'] == 'on') { |
|
125 | + if ($_POST['reset'] == 'on') { |
|
126 | 126 | $modx->db->truncate($tbl_site_content); |
127 | 127 | $modx->db->query("ALTER TABLE {$tbl_site_content} AUTO_INCREMENT = 1"); |
128 | 128 | } |
129 | 129 | |
130 | - $parent = (int)$_POST['parent']; |
|
130 | + $parent = (int) $_POST['parent']; |
|
131 | 131 | |
132 | - if(is_dir(MODX_BASE_PATH . 'temp/import')) { |
|
133 | - $filedir = MODX_BASE_PATH . 'temp/import/'; |
|
134 | - } elseif(is_dir(MODX_BASE_PATH . 'assets/import')) { |
|
135 | - $filedir = MODX_BASE_PATH . 'assets/import/'; |
|
132 | + if (is_dir(MODX_BASE_PATH.'temp/import')) { |
|
133 | + $filedir = MODX_BASE_PATH.'temp/import/'; |
|
134 | + } elseif (is_dir(MODX_BASE_PATH.'assets/import')) { |
|
135 | + $filedir = MODX_BASE_PATH.'assets/import/'; |
|
136 | 136 | } else { |
137 | 137 | $filedir = ''; |
138 | 138 | } |
@@ -143,10 +143,10 @@ discard block |
||
143 | 143 | $files = pop_index($files); |
144 | 144 | |
145 | 145 | // no. of files to import |
146 | - $output .= sprintf('<p>' . $_lang['import_files_found'] . '</p>', $filesfound); |
|
146 | + $output .= sprintf('<p>'.$_lang['import_files_found'].'</p>', $filesfound); |
|
147 | 147 | |
148 | 148 | // import files |
149 | - if(0 < count($files)) { |
|
149 | + if (0 < count($files)) { |
|
150 | 150 | $modx->db->update(array('isfolder' => 1), $tbl_site_content, "id='{$parent}'"); |
151 | 151 | importFiles($parent, $filedir, $files, 'root'); |
152 | 152 | } |
@@ -156,9 +156,9 @@ discard block |
||
156 | 156 | $mtime = $mtime[1] + $mtime[0]; |
157 | 157 | $importend = $mtime; |
158 | 158 | $totaltime = ($importend - $importstart); |
159 | - $output .= sprintf('<p>' . $_lang['import_site_time'] . '</p>', round($totaltime, 3)); |
|
159 | + $output .= sprintf('<p>'.$_lang['import_site_time'].'</p>', round($totaltime, 3)); |
|
160 | 160 | |
161 | - if($_POST['convert_link'] == 'on') { |
|
161 | + if ($_POST['convert_link'] == 'on') { |
|
162 | 162 | convertLink(); |
163 | 163 | } |
164 | 164 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @param array $files |
172 | 172 | * @param string $mode |
173 | 173 | */ |
174 | -function importFiles($parent, $filedir, $files, $mode) { |
|
174 | +function importFiles($parent, $filedir, $files, $mode){ |
|
175 | 175 | $modx = evolutionCMS(); |
176 | 176 | global $_lang, $allowedfiles; |
177 | 177 | global $search_default, $cache_default, $publish_default; |
@@ -180,21 +180,21 @@ discard block |
||
180 | 180 | $tbl_system_settings = $modx->getFullTableName('system_settings'); |
181 | 181 | |
182 | 182 | $createdby = $modx->getLoginUserID(); |
183 | - if(!is_array($files)) { |
|
183 | + if (!is_array($files)) { |
|
184 | 184 | return; |
185 | 185 | } |
186 | - if($_POST['object'] === 'all') { |
|
186 | + if ($_POST['object'] === 'all') { |
|
187 | 187 | $modx->config['default_template'] = '0'; |
188 | 188 | $richtext = '0'; |
189 | 189 | } else { |
190 | 190 | $richtext = '1'; |
191 | 191 | } |
192 | 192 | |
193 | - foreach($files as $id => $value) { |
|
194 | - if(is_array($value)) { |
|
193 | + foreach ($files as $id => $value) { |
|
194 | + if (is_array($value)) { |
|
195 | 195 | // create folder |
196 | 196 | $alias = $id; |
197 | - printf('<span>' . $_lang['import_site_importing_document'] . '</span>', $alias); |
|
197 | + printf('<span>'.$_lang['import_site_importing_document'].'</span>', $alias); |
|
198 | 198 | $field = array(); |
199 | 199 | $field['type'] = 'document'; |
200 | 200 | $field['contentType'] = 'text/html'; |
@@ -209,12 +209,12 @@ discard block |
||
209 | 209 | $field['isfolder'] = 1; |
210 | 210 | $field['menuindex'] = 1; |
211 | 211 | $find = false; |
212 | - foreach(array( |
|
212 | + foreach (array( |
|
213 | 213 | 'index.html', |
214 | 214 | 'index.htm' |
215 | 215 | ) as $filename) { |
216 | - $filepath = $filedir . $alias . '/' . $filename; |
|
217 | - if($find === false && file_exists($filepath)) { |
|
216 | + $filepath = $filedir.$alias.'/'.$filename; |
|
217 | + if ($find === false && file_exists($filepath)) { |
|
218 | 218 | $file = getFileContent($filepath); |
219 | 219 | list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
220 | 220 | |
@@ -226,17 +226,17 @@ discard block |
||
226 | 226 | $field['createdon'] = $date; |
227 | 227 | $field['editedon'] = $date; |
228 | 228 | $newid = $modx->db->insert($field, $tbl_site_content); |
229 | - if($newid) { |
|
229 | + if ($newid) { |
|
230 | 230 | $find = true; |
231 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
232 | - importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
231 | + echo ' - <span class="success">'.$_lang['import_site_success'].'</span><br />'."\n"; |
|
232 | + importFiles($newid, $filedir.$alias.'/', $value, 'sub'); |
|
233 | 233 | } else { |
234 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
234 | + echo '<span class="fail">'.$_lang["import_site_failed"]."</span> ".$_lang["import_site_failed_db_error"].$modx->db->getLastError(); |
|
235 | 235 | exit; |
236 | 236 | } |
237 | 237 | } |
238 | 238 | } |
239 | - if($find === false) { |
|
239 | + if ($find === false) { |
|
240 | 240 | $date = time(); |
241 | 241 | $field['pagetitle'] = '---'; |
242 | 242 | $field['content'] = ''; |
@@ -244,30 +244,30 @@ discard block |
||
244 | 244 | $field['editedon'] = $date; |
245 | 245 | $field['hidemenu'] = '1'; |
246 | 246 | $newid = $modx->db->insert($field, $tbl_site_content); |
247 | - if($newid) { |
|
247 | + if ($newid) { |
|
248 | 248 | $find = true; |
249 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
250 | - importFiles($newid, $filedir . $alias . '/', $value, 'sub'); |
|
249 | + echo ' - <span class="success">'.$_lang['import_site_success'].'</span><br />'."\n"; |
|
250 | + importFiles($newid, $filedir.$alias.'/', $value, 'sub'); |
|
251 | 251 | } else { |
252 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
252 | + echo '<span class="fail">'.$_lang["import_site_failed"]."</span> ".$_lang["import_site_failed_db_error"].$modx->db->getLastError(); |
|
253 | 253 | exit; |
254 | 254 | } |
255 | 255 | } |
256 | 256 | } else { |
257 | 257 | // create document |
258 | - if($mode == 'sub' && $value == 'index.html') { |
|
258 | + if ($mode == 'sub' && $value == 'index.html') { |
|
259 | 259 | continue; |
260 | 260 | } |
261 | 261 | $filename = $value; |
262 | 262 | $fparts = explode('.', $value); |
263 | 263 | $alias = $fparts[0]; |
264 | 264 | $ext = (count($fparts) > 1) ? $fparts[count($fparts) - 1] : ""; |
265 | - printf("<span>" . $_lang['import_site_importing_document'] . "</span>", $filename); |
|
265 | + printf("<span>".$_lang['import_site_importing_document']."</span>", $filename); |
|
266 | 266 | |
267 | - if(!in_array($ext, $allowedfiles)) { |
|
268 | - echo ' - <span class="fail">' . $_lang["import_site_skip"] . '</span><br />' . "\n"; |
|
267 | + if (!in_array($ext, $allowedfiles)) { |
|
268 | + echo ' - <span class="fail">'.$_lang["import_site_skip"].'</span><br />'."\n"; |
|
269 | 269 | } else { |
270 | - $filepath = $filedir . $filename; |
|
270 | + $filepath = $filedir.$filename; |
|
271 | 271 | $file = getFileContent($filepath); |
272 | 272 | list($pagetitle, $content, $description) = treatContent($file, $filename, $alias); |
273 | 273 | |
@@ -292,18 +292,18 @@ discard block |
||
292 | 292 | $field['isfolder'] = 0; |
293 | 293 | $field['menuindex'] = ($alias == 'index') ? 0 : 2; |
294 | 294 | $newid = $modx->db->insert($field, $tbl_site_content); |
295 | - if($newid) { |
|
296 | - echo ' - <span class="success">' . $_lang['import_site_success'] . '</span><br />' . "\n"; |
|
295 | + if ($newid) { |
|
296 | + echo ' - <span class="success">'.$_lang['import_site_success'].'</span><br />'."\n"; |
|
297 | 297 | } else { |
298 | - echo '<span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_db_error"] . $modx->db->getLastError(); |
|
298 | + echo '<span class="fail">'.$_lang["import_site_failed"]."</span> ".$_lang["import_site_failed_db_error"].$modx->db->getLastError(); |
|
299 | 299 | exit; |
300 | 300 | } |
301 | 301 | |
302 | 302 | $is_site_start = false; |
303 | - if($filename == 'index.html') { |
|
303 | + if ($filename == 'index.html') { |
|
304 | 304 | $is_site_start = true; |
305 | 305 | } |
306 | - if($is_site_start == true && $_POST['reset'] == 'on') { |
|
306 | + if ($is_site_start == true && $_POST['reset'] == 'on') { |
|
307 | 307 | $modx->db->update(array('setting_value' => $newid), $tbl_system_settings, "setting_name='site_start'"); |
308 | 308 | $modx->db->update(array('menuindex' => 0), $tbl_site_content, "id='{$newid}'"); |
309 | 309 | } |
@@ -318,26 +318,26 @@ discard block |
||
318 | 318 | * @param int $count |
319 | 319 | * @return array |
320 | 320 | */ |
321 | -function getFiles($directory, $listing = array(), $count = 0) { |
|
321 | +function getFiles($directory, $listing = array(), $count = 0){ |
|
322 | 322 | global $_lang; |
323 | 323 | global $filesfound; |
324 | 324 | $dummy = $count; |
325 | - if( ! empty($directory) && $files = scandir($directory)) { |
|
326 | - foreach($files as $file) { |
|
327 | - if($file == '.' || $file == '..') { |
|
325 | + if (!empty($directory) && $files = scandir($directory)) { |
|
326 | + foreach ($files as $file) { |
|
327 | + if ($file == '.' || $file == '..') { |
|
328 | 328 | continue; |
329 | - } elseif($h = @opendir($directory . $file . "/")) { |
|
329 | + } elseif ($h = @opendir($directory.$file."/")) { |
|
330 | 330 | closedir($h); |
331 | 331 | $count = -1; |
332 | - $listing[$file] = getFiles($directory . $file . "/", array(), $count + 1); |
|
333 | - } elseif(strpos($file, '.htm') !== false) { |
|
332 | + $listing[$file] = getFiles($directory.$file."/", array(), $count + 1); |
|
333 | + } elseif (strpos($file, '.htm') !== false) { |
|
334 | 334 | $listing[$dummy] = $file; |
335 | 335 | $dummy = $dummy + 1; |
336 | 336 | $filesfound++; |
337 | 337 | } |
338 | 338 | } |
339 | 339 | } else { |
340 | - echo '<p><span class="fail">' . $_lang["import_site_failed"] . "</span> " . $_lang["import_site_failed_no_open_dir"] . $directory . ".</p>"; |
|
340 | + echo '<p><span class="fail">'.$_lang["import_site_failed"]."</span> ".$_lang["import_site_failed_no_open_dir"].$directory.".</p>"; |
|
341 | 341 | } |
342 | 342 | return ($listing); |
343 | 343 | } |
@@ -346,11 +346,11 @@ discard block |
||
346 | 346 | * @param string $filepath |
347 | 347 | * @return bool|string |
348 | 348 | */ |
349 | -function getFileContent($filepath) { |
|
349 | +function getFileContent($filepath){ |
|
350 | 350 | global $_lang; |
351 | 351 | // get the file |
352 | - if(!$buffer = file_get_contents($filepath)) { |
|
353 | - echo '<p><span class="fail">' . $_lang['import_site_failed'] . "</span> " . $_lang["import_site_failed_no_retrieve_file"] . $filepath . ".</p>"; |
|
352 | + if (!$buffer = file_get_contents($filepath)) { |
|
353 | + echo '<p><span class="fail">'.$_lang['import_site_failed']."</span> ".$_lang["import_site_failed_no_retrieve_file"].$filepath.".</p>"; |
|
354 | 354 | } else { |
355 | 355 | return $buffer; |
356 | 356 | } |
@@ -360,17 +360,17 @@ discard block |
||
360 | 360 | * @param array $array |
361 | 361 | * @return array |
362 | 362 | */ |
363 | -function pop_index($array) { |
|
363 | +function pop_index($array){ |
|
364 | 364 | $new_array = array(); |
365 | - foreach($array as $k => $v) { |
|
366 | - if($v !== 'index.html' && $v !== 'index.htm') { |
|
365 | + foreach ($array as $k => $v) { |
|
366 | + if ($v !== 'index.html' && $v !== 'index.htm') { |
|
367 | 367 | $new_array[$k] = $v; |
368 | 368 | } else { |
369 | 369 | array_unshift($new_array, $v); |
370 | 370 | } |
371 | 371 | } |
372 | - foreach($array as $k => $v) { |
|
373 | - if(is_array($v)) { |
|
372 | + foreach ($array as $k => $v) { |
|
373 | + if (is_array($v)) { |
|
374 | 374 | $new_array[$k] = $v; |
375 | 375 | } |
376 | 376 | } |
@@ -383,34 +383,34 @@ discard block |
||
383 | 383 | * @param string $alias |
384 | 384 | * @return array |
385 | 385 | */ |
386 | -function treatContent($src, $filename, $alias) { |
|
386 | +function treatContent($src, $filename, $alias){ |
|
387 | 387 | $modx = evolutionCMS(); |
388 | 388 | |
389 | 389 | $src = mb_convert_encoding($src, $modx->config['modx_charset'], 'UTF-8,SJIS-win,eucJP-win,SJIS,EUC-JP,ASCII'); |
390 | 390 | |
391 | - if(preg_match("@<title>(.*)</title>@i", $src, $matches)) { |
|
391 | + if (preg_match("@<title>(.*)</title>@i", $src, $matches)) { |
|
392 | 392 | $pagetitle = ($matches[1] !== '') ? $matches[1] : $filename; |
393 | 393 | $pagetitle = str_replace('[*pagetitle*]', '', $pagetitle); |
394 | 394 | } else { |
395 | 395 | $pagetitle = $alias; |
396 | 396 | } |
397 | - if(!$pagetitle) { |
|
397 | + if (!$pagetitle) { |
|
398 | 398 | $pagetitle = $alias; |
399 | 399 | } |
400 | 400 | |
401 | - if(preg_match('@<meta[^>]+"description"[^>]+content=[\'"](.*)[\'"].+>@i', $src, $matches)) { |
|
401 | + if (preg_match('@<meta[^>]+"description"[^>]+content=[\'"](.*)[\'"].+>@i', $src, $matches)) { |
|
402 | 402 | $description = ($matches[1] !== '') ? $matches[1] : $filename; |
403 | 403 | $description = str_replace('[*description*]', '', $description); |
404 | 404 | } else { |
405 | 405 | $description = ''; |
406 | 406 | } |
407 | 407 | |
408 | - if((preg_match("@<body[^>]*>(.*)[^<]+</body>@is", $src, $matches)) && $_POST['object'] == 'body') { |
|
408 | + if ((preg_match("@<body[^>]*>(.*)[^<]+</body>@is", $src, $matches)) && $_POST['object'] == 'body') { |
|
409 | 409 | $content = $matches[1]; |
410 | 410 | } else { |
411 | 411 | $content = $src; |
412 | 412 | $s = '/(<meta[^>]+charset\s*=)[^>"\'=]+(.+>)/i'; |
413 | - $r = '$1' . $modx->config['modx_charset'] . '$2'; |
|
413 | + $r = '$1'.$modx->config['modx_charset'].'$2'; |
|
414 | 414 | $content = preg_replace($s, $r, $content); |
415 | 415 | $content = preg_replace('@<title>.*</title>@i', "<title>[*pagetitle*]</title>", $content); |
416 | 416 | } |
@@ -427,7 +427,7 @@ discard block |
||
427 | 427 | /** |
428 | 428 | * @return void |
429 | 429 | */ |
430 | -function convertLink() { |
|
430 | +function convertLink(){ |
|
431 | 431 | $modx = evolutionCMS(); |
432 | 432 | $tbl_site_content = $modx->getFullTableName('site_content'); |
433 | 433 | |
@@ -435,33 +435,33 @@ discard block |
||
435 | 435 | $p = array(); |
436 | 436 | $target = array(); |
437 | 437 | $dir = ''; |
438 | - while($row = $modx->db->getRow($rs)) { |
|
438 | + while ($row = $modx->db->getRow($rs)) { |
|
439 | 439 | $id = $row['id']; |
440 | 440 | $array = explode('<a href=', $row['content']); |
441 | 441 | $c = 0; |
442 | - foreach($array as $v) { |
|
443 | - if($v[0] === '"') { |
|
442 | + foreach ($array as $v) { |
|
443 | + if ($v[0] === '"') { |
|
444 | 444 | $v = substr($v, 1); |
445 | 445 | list($href, $v) = explode('"', $v, 2); |
446 | 446 | $_ = $href; |
447 | - if(strpos($_, $modx->config['site_url']) !== false) { |
|
448 | - $_ = $modx->config['base_url'] . str_replace($modx->config['site_url'], '', $_); |
|
447 | + if (strpos($_, $modx->config['site_url']) !== false) { |
|
448 | + $_ = $modx->config['base_url'].str_replace($modx->config['site_url'], '', $_); |
|
449 | 449 | } |
450 | - if($_[0] === '/') { |
|
450 | + if ($_[0] === '/') { |
|
451 | 451 | $_ = substr($_, 1); |
452 | 452 | } |
453 | 453 | $_ = str_replace('/index.html', '.html', $_); |
454 | 454 | $level = substr_count($_, '../'); |
455 | - if(1 < $level) { |
|
456 | - if(!isset($p[$id])) { |
|
455 | + if (1 < $level) { |
|
456 | + if (!isset($p[$id])) { |
|
457 | 457 | $p[$id] = $modx->getParentIds($id); |
458 | 458 | } |
459 | 459 | $k = array_keys($p[$id]); |
460 | - while(0 < $level) { |
|
460 | + while (0 < $level) { |
|
461 | 461 | $dir = array_shift($k); |
462 | 462 | $level--; |
463 | 463 | } |
464 | - if($dir != '') { |
|
464 | + if ($dir != '') { |
|
465 | 465 | $dir .= '/'; |
466 | 466 | } |
467 | 467 | } else { |
@@ -469,18 +469,18 @@ discard block |
||
469 | 469 | } |
470 | 470 | |
471 | 471 | $_ = trim($_, './'); |
472 | - if(strpos($_, '/') !== false) { |
|
472 | + if (strpos($_, '/') !== false) { |
|
473 | 473 | $_ = substr($_, strrpos($_, '/')); |
474 | 474 | } |
475 | - $_ = $dir . str_replace('.html', '', $_); |
|
476 | - if(!isset($target[$_])) { |
|
475 | + $_ = $dir.str_replace('.html', '', $_); |
|
476 | + if (!isset($target[$_])) { |
|
477 | 477 | $target[$_] = $modx->getIdFromAlias($_); |
478 | 478 | } |
479 | 479 | $target[$_] = trim($target[$_]); |
480 | - if(!empty($target[$_])) { |
|
481 | - $href = '[~' . $target[$_] . '~]'; |
|
480 | + if (!empty($target[$_])) { |
|
481 | + $href = '[~'.$target[$_].'~]'; |
|
482 | 482 | } |
483 | - $array[$c] = '<a href="' . $href . '"' . $v; |
|
483 | + $array[$c] = '<a href="'.$href.'"'.$v; |
|
484 | 484 | } |
485 | 485 | $c++; |
486 | 486 | } |
@@ -104,7 +104,8 @@ discard block |
||
104 | 104 | /** |
105 | 105 | * @return string |
106 | 106 | */ |
107 | -function run() { |
|
107 | +function run() |
|
108 | +{ |
|
108 | 109 | $modx = evolutionCMS(); global $_lang; |
109 | 110 | |
110 | 111 | $tbl_site_content = $modx->getFullTableName('site_content'); |
@@ -171,7 +172,8 @@ discard block |
||
171 | 172 | * @param array $files |
172 | 173 | * @param string $mode |
173 | 174 | */ |
174 | -function importFiles($parent, $filedir, $files, $mode) { |
|
175 | +function importFiles($parent, $filedir, $files, $mode) |
|
176 | +{ |
|
175 | 177 | $modx = evolutionCMS(); |
176 | 178 | global $_lang, $allowedfiles; |
177 | 179 | global $search_default, $cache_default, $publish_default; |
@@ -318,7 +320,8 @@ discard block |
||
318 | 320 | * @param int $count |
319 | 321 | * @return array |
320 | 322 | */ |
321 | -function getFiles($directory, $listing = array(), $count = 0) { |
|
323 | +function getFiles($directory, $listing = array(), $count = 0) |
|
324 | +{ |
|
322 | 325 | global $_lang; |
323 | 326 | global $filesfound; |
324 | 327 | $dummy = $count; |
@@ -346,7 +349,8 @@ discard block |
||
346 | 349 | * @param string $filepath |
347 | 350 | * @return bool|string |
348 | 351 | */ |
349 | -function getFileContent($filepath) { |
|
352 | +function getFileContent($filepath) |
|
353 | +{ |
|
350 | 354 | global $_lang; |
351 | 355 | // get the file |
352 | 356 | if(!$buffer = file_get_contents($filepath)) { |
@@ -360,7 +364,8 @@ discard block |
||
360 | 364 | * @param array $array |
361 | 365 | * @return array |
362 | 366 | */ |
363 | -function pop_index($array) { |
|
367 | +function pop_index($array) |
|
368 | +{ |
|
364 | 369 | $new_array = array(); |
365 | 370 | foreach($array as $k => $v) { |
366 | 371 | if($v !== 'index.html' && $v !== 'index.htm') { |
@@ -383,7 +388,8 @@ discard block |
||
383 | 388 | * @param string $alias |
384 | 389 | * @return array |
385 | 390 | */ |
386 | -function treatContent($src, $filename, $alias) { |
|
391 | +function treatContent($src, $filename, $alias) |
|
392 | +{ |
|
387 | 393 | $modx = evolutionCMS(); |
388 | 394 | |
389 | 395 | $src = mb_convert_encoding($src, $modx->config['modx_charset'], 'UTF-8,SJIS-win,eucJP-win,SJIS,EUC-JP,ASCII'); |
@@ -427,7 +433,8 @@ discard block |
||
427 | 433 | /** |
428 | 434 | * @return void |
429 | 435 | */ |
430 | -function convertLink() { |
|
436 | +function convertLink() |
|
437 | +{ |
|
431 | 438 | $modx = evolutionCMS(); |
432 | 439 | $tbl_site_content = $modx->getFullTableName('site_content'); |
433 | 440 |