Completed
Pull Request — develop (#714)
by Agel_Nash
15:06 queued 06:49
created
install/src/controllers/install.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -770,7 +770,7 @@
 block discarded – undo
770 770
 <form name="install" id="install_form" action="index.php?action=options" method="post">
771 771
 <?php
772 772
 if ($errors == 0) {
773
-	// check if install folder is removeable
773
+    // check if install folder is removeable
774 774
     if (is_writable("../install")) { ?>
775 775
 <span id="removeinstall" style="float:left;cursor:pointer;color:#505050;line-height:18px;" onclick="var chk=document.install.rminstaller; if(chk) chk.checked=!chk.checked;"><input type="checkbox" name="rminstaller" onclick="event.cancelBubble=true;" <?php echo (empty ($errors) ? 'checked="checked"' : '') ?> style="cursor:default;" /><?php echo $_lang['remove_install_folder_auto'] ?></span>
776 776
 <?php
Please login to merge, or discard this patch.
Spacing   +156 added lines, -156 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 <?php
13 13
 if (file_exists(__DIR__."/../assets/cache/siteManager.php")) {
14 14
     include_once(__DIR__."/../assets/cache/siteManager.php");
15
-}else{
15
+} else {
16 16
     define('MGR_DIR', 'manager');
17 17
 }
18 18
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
 echo "<p>{$_lang['setup_database']}</p>\n";
41 41
 
42
-$installMode= (int)$_POST['installmode'];
42
+$installMode = (int) $_POST['installmode'];
43 43
 $installData = $_POST['installdata'] == "1" ? 1 : 0;
44 44
 
45 45
 //if ($installMode == 1) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 $database_charset = substr($database_collation, 0, strpos($database_collation, '_'));
54 54
 $database_connection_charset = $_POST['database_connection_charset'];
55 55
 $database_connection_method = $_POST['database_connection_method'];
56
-$dbase = "`" . $_POST['database_name'] . "`";
56
+$dbase = "`".$_POST['database_name']."`";
57 57
 $table_prefix = $_POST['tableprefix'];
58 58
 $adminname = $_POST['cmsadmin'];
59 59
 $adminemail = $_POST['cmsadminemail'];
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
 // set session name variable
66 66
 if (!isset ($site_sessionname)) {
67
-    $site_sessionname = 'SN' . uniqid('');
67
+    $site_sessionname = 'SN'.uniqid('');
68 68
 }
69 69
 
70 70
 // get base path and url
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
     array_pop($a);
79 79
 $pth = implode("install", $a);
80 80
 unset ($a);
81
-$base_url = $url . (substr($url, -1) != "/" ? "/" : "");
82
-$base_path = $pth . (substr($pth, -1) != "/" ? "/" : "");
81
+$base_url = $url.(substr($url, -1) != "/" ? "/" : "");
82
+$base_path = $pth.(substr($pth, -1) != "/" ? "/" : "");
83 83
 
84 84
 // connect to the database
85
-echo "<p>". $_lang['setup_database_create_connection'];
85
+echo "<p>".$_lang['setup_database_create_connection'];
86 86
 if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) {
87 87
     echo '<span class="notok">'.$_lang["setup_database_create_connection_failed"]."</span></p><p>".$_lang['setup_database_create_connection_failed_note']."</p>";
88 88
     return;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 }
92 92
 
93 93
 // select database
94
-echo "<p>".$_lang['setup_database_selection']. str_replace("`", "", $dbase) . "`: ";
94
+echo "<p>".$_lang['setup_database_selection'].str_replace("`", "", $dbase)."`: ";
95 95
 if (!mysqli_select_db($conn, str_replace("`", "", $dbase))) {
96 96
     echo "<span class=\"notok\" style='color:#707070'>".$_lang['setup_database_selection_failed']."</span>".$_lang['setup_database_selection_failed_note']."</p>";
97 97
     $create = true;
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 
104 104
 // try to create the database
105 105
 if ($create) {
106
-    echo "<p>".$_lang['setup_database_creation']. str_replace("`", "", $dbase) . "`: ";
106
+    echo "<p>".$_lang['setup_database_creation'].str_replace("`", "", $dbase)."`: ";
107 107
     //	if(!@mysqli_create_db(str_replace("`","",$dbase), $conn)) {
108
-    if (! mysqli_query($conn, "CREATE DATABASE $dbase DEFAULT CHARACTER SET $database_charset COLLATE $database_collation")) {
108
+    if (!mysqli_query($conn, "CREATE DATABASE $dbase DEFAULT CHARACTER SET $database_charset COLLATE $database_collation")) {
109 109
         echo '<span class="notok">'.$_lang['setup_database_creation_failed']."</span>".$_lang['setup_database_creation_failed_note']."</p>";
110 110
         $errors += 1;
111 111
         ?>
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 
125 125
 // check table prefix
126 126
 if ($installMode == 0) {
127
-    echo "<p>" . $_lang['checking_table_prefix'] . $table_prefix . "`: ";
128
-    if (@ $rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) {
129
-        echo '<span class="notok">' . $_lang['failed'] . "</span>" . $_lang['table_prefix_already_inuse'] . "</p>";
127
+    echo "<p>".$_lang['checking_table_prefix'].$table_prefix."`: ";
128
+    if (@ $rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) {
129
+        echo '<span class="notok">'.$_lang['failed']."</span>".$_lang['table_prefix_already_inuse']."</p>";
130 130
         $errors += 1;
131
-        echo "<p>" . $_lang['table_prefix_already_inuse_note'] . "</p>";
131
+        echo "<p>".$_lang['table_prefix_already_inuse_note']."</p>";
132 132
         return;
133 133
     } else {
134 134
         echo '<span class="ok">'.$_lang['ok']."</span></p>";
@@ -138,20 +138,20 @@  discard block
 block discarded – undo
138 138
 // check status of Inherit Parent Template plugin
139 139
 $auto_template_logic = 'parent';
140 140
 if ($installMode != 0) {
141
-    $rs = mysqli_query($conn, "SELECT properties, disabled FROM $dbase.`" . $table_prefix . "site_plugins` WHERE name='Inherit Parent Template'");
141
+    $rs = mysqli_query($conn, "SELECT properties, disabled FROM $dbase.`".$table_prefix."site_plugins` WHERE name='Inherit Parent Template'");
142 142
     $row = mysqli_fetch_row($rs);
143
-    if(!$row) {
143
+    if (!$row) {
144 144
         // not installed
145 145
         $auto_template_logic = 'system';
146 146
     } else {
147
-        if($row[1] == 1) {
147
+        if ($row[1] == 1) {
148 148
             // installed but disabled
149 149
             $auto_template_logic = 'system';
150 150
         } else {
151 151
             // installed, enabled .. see how it's configured
152 152
             $properties = parseProperties($row[0]);
153
-            if(isset($properties['inheritTemplate'])) {
154
-                if($properties['inheritTemplate'] == 'From First Sibling') {
153
+            if (isset($properties['inheritTemplate'])) {
154
+                if ($properties['inheritTemplate'] == 'From First Sibling') {
155 155
                     $auto_template_logic = 'sibling';
156 156
                 }
157 157
             }
@@ -161,8 +161,8 @@  discard block
 block discarded – undo
161 161
 
162 162
 // open db connection
163 163
 $setupPath = realpath(__DIR__);
164
-include dirname(__DIR__) . '/processor/result.php';
165
-include_once dirname(__DIR__) . '/sqlParser.class.php';
164
+include dirname(__DIR__).'/processor/result.php';
165
+include_once dirname(__DIR__).'/sqlParser.class.php';
166 166
 $sqlParser = new SqlParser($database_server, $database_user, $database_password, str_replace("`", "", $dbase), $table_prefix, $adminname, $adminemail, $adminpass, $database_connection_charset, $managerlanguage, $database_connection_method, $auto_template_logic);
167 167
 $sqlParser->mode = ($installMode < 1) ? "new" : "upd";
168 168
 /* image and file manager paths now handled via settings screen in Manager
@@ -175,20 +175,20 @@  discard block
 block discarded – undo
175 175
 $sqlParser->connect();
176 176
 
177 177
 // install/update database
178
-echo "<p>" . $_lang['setup_database_creating_tables'];
178
+echo "<p>".$_lang['setup_database_creating_tables'];
179 179
 if ($moduleSQLBaseFile) {
180 180
     $sqlParser->process($moduleSQLBaseFile);
181 181
     // display database results
182 182
     if ($sqlParser->installFailed == true) {
183 183
         $errors += 1;
184
-        echo "<span class=\"notok\"><b>" . $_lang['database_alerts'] . "</span></p>";
185
-        echo "<p>" . $_lang['setup_couldnt_install'] . "</p>";
186
-        echo "<p>" . $_lang['installation_error_occured'] . "<br /><br />";
184
+        echo "<span class=\"notok\"><b>".$_lang['database_alerts']."</span></p>";
185
+        echo "<p>".$_lang['setup_couldnt_install']."</p>";
186
+        echo "<p>".$_lang['installation_error_occured']."<br /><br />";
187 187
         for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) {
188
-            echo "<em>" . $sqlParser->mysqlErrors[$i]["error"] . "</em>" . $_lang['during_execution_of_sql'] . "<span class='mono'>" . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . "</span>.<hr />";
188
+            echo "<em>".$sqlParser->mysqlErrors[$i]["error"]."</em>".$_lang['during_execution_of_sql']."<span class='mono'>".strip_tags($sqlParser->mysqlErrors[$i]["sql"])."</span>.<hr />";
189 189
         }
190 190
         echo "</p>";
191
-        echo "<p>" . $_lang['some_tables_not_updated'] . "</p>";
191
+        echo "<p>".$_lang['some_tables_not_updated']."</p>";
192 192
         return;
193 193
     } else {
194 194
         echo '<span class="ok">'.$_lang['ok']."</span></p>";
@@ -198,12 +198,12 @@  discard block
 block discarded – undo
198 198
 // custom or not
199 199
 if (file_exists(__DIR__."/../../assets/cache/siteManager.php")) {
200 200
     $mgrdir = 'include_once(__DIR__."/../../assets/cache/siteManager.php");';
201
-}else{
201
+} else {
202 202
     $mgrdir = 'define(\'MGR_DIR\', \'manager\');';
203 203
 }
204 204
 
205 205
 // write the config.inc.php file if new installation
206
-echo "<p>" . $_lang['writing_config_file'];
206
+echo "<p>".$_lang['writing_config_file'];
207 207
 
208 208
 $confph = array();
209 209
 $confph['database_server']    = $database_server;
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 $confph['lastInstallTime']    = time();
217 217
 $confph['site_sessionname']   = $site_sessionname;
218 218
 
219
-$configString = file_get_contents(dirname(__DIR__) . '/stubs/config.tpl');
219
+$configString = file_get_contents(dirname(__DIR__).'/stubs/config.tpl');
220 220
 $configString = parse($configString, $confph);
221 221
 
222 222
 $filename = '../'.MGR_DIR.'/includes/config.inc.php';
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 @chmod($filename, 0404);
236 236
 
237 237
 if ($configFileFailed == true) {
238
-    echo '<span class="notok">' . $_lang['failed'] . "</span></p>";
238
+    echo '<span class="notok">'.$_lang['failed']."</span></p>";
239 239
     $errors += 1;
240 240
     ?>
241 241
     <p><?php echo $_lang['cant_write_config_file']?><span class="mono"><?php echo MGR_DIR; ?>/includes/config.inc.php</span></p>
@@ -252,35 +252,35 @@  discard block
 block discarded – undo
252 252
 // generate new site_id and set manager theme to default
253 253
 if ($installMode == 0) {
254 254
     $siteid = uniqid('');
255
-    mysqli_query($sqlParser->conn, "REPLACE INTO $dbase.`" . $table_prefix . "system_settings` (setting_name,setting_value) VALUES('site_id','$siteid'),('manager_theme','default')");
255
+    mysqli_query($sqlParser->conn, "REPLACE INTO $dbase.`".$table_prefix."system_settings` (setting_name,setting_value) VALUES('site_id','$siteid'),('manager_theme','default')");
256 256
 } else {
257 257
     // update site_id if missing
258
-    $ds = mysqli_query($sqlParser->conn, "SELECT setting_name,setting_value FROM $dbase.`" . $table_prefix . "system_settings` WHERE setting_name='site_id'");
258
+    $ds = mysqli_query($sqlParser->conn, "SELECT setting_name,setting_value FROM $dbase.`".$table_prefix."system_settings` WHERE setting_name='site_id'");
259 259
     if ($ds) {
260 260
         $r = mysqli_fetch_assoc($ds);
261 261
         $siteid = $r['setting_value'];
262 262
         if ($siteid == '' || $siteid = 'MzGeQ2faT4Dw06+U49x3') {
263 263
             $siteid = uniqid('');
264
-            mysqli_query($sqlParser->conn, "REPLACE INTO $dbase.`" . $table_prefix . "system_settings` (setting_name,setting_value) VALUES('site_id','$siteid')");
264
+            mysqli_query($sqlParser->conn, "REPLACE INTO $dbase.`".$table_prefix."system_settings` (setting_name,setting_value) VALUES('site_id','$siteid')");
265 265
         }
266 266
     }
267 267
 }
268 268
 
269 269
 // Reset database for installation of demo-site
270 270
 if ($installData && $moduleSQLDataFile && $moduleSQLResetFile) {
271
-    echo "<p>" . $_lang['resetting_database'];
271
+    echo "<p>".$_lang['resetting_database'];
272 272
     $sqlParser->process($moduleSQLResetFile);
273 273
     // display database results
274 274
     if ($sqlParser->installFailed == true) {
275 275
         $errors += 1;
276
-        echo "<span class=\"notok\"><b>" . $_lang['database_alerts'] . "</span></p>";
277
-        echo "<p>" . $_lang['setup_couldnt_install'] . "</p>";
278
-        echo "<p>" . $_lang['installation_error_occured'] . "<br /><br />";
276
+        echo "<span class=\"notok\"><b>".$_lang['database_alerts']."</span></p>";
277
+        echo "<p>".$_lang['setup_couldnt_install']."</p>";
278
+        echo "<p>".$_lang['installation_error_occured']."<br /><br />";
279 279
         for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) {
280
-            echo "<em>" . $sqlParser->mysqlErrors[$i]["error"] . "</em>" . $_lang['during_execution_of_sql'] . "<span class='mono'>" . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . "</span>.<hr />";
280
+            echo "<em>".$sqlParser->mysqlErrors[$i]["error"]."</em>".$_lang['during_execution_of_sql']."<span class='mono'>".strip_tags($sqlParser->mysqlErrors[$i]["sql"])."</span>.<hr />";
281 281
         }
282 282
         echo "</p>";
283
-        echo "<p>" . $_lang['some_tables_not_updated'] . "</p>";
283
+        echo "<p>".$_lang['some_tables_not_updated']."</p>";
284 284
         return;
285 285
     } else {
286 286
         echo '<span class="ok">'.$_lang['ok']."</span></p>";
@@ -289,11 +289,11 @@  discard block
 block discarded – undo
289 289
 
290 290
 // Install Templates
291 291
 if (isset ($_POST['template']) || $installData) {
292
-    echo "<h3>" . $_lang['templates'] . ":</h3> ";
292
+    echo "<h3>".$_lang['templates'].":</h3> ";
293 293
     $selTemplates = $_POST['template'];
294 294
     foreach ($moduleTemplates as $k=>$moduleTemplate) {
295 295
         $installSample = in_array('sample', $moduleTemplate[6]) && $installData == 1;
296
-        if($installSample || in_array($k, $selTemplates)) {
296
+        if ($installSample || in_array($k, $selTemplates)) {
297 297
             $name = mysqli_real_escape_string($conn, $moduleTemplate[0]);
298 298
             $desc = mysqli_real_escape_string($conn, $moduleTemplate[1]);
299 299
             $category = mysqli_real_escape_string($conn, $moduleTemplate[4]);
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
             $filecontent = $moduleTemplate[3];
302 302
             $save_sql_id_as = $moduleTemplate[7]; // Nessecary for demo-site
303 303
             if (!file_exists($filecontent)) {
304
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_template'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
304
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">".$_lang['unable_install_template']." '$filecontent' ".$_lang['not_found'].".</span></p>";
305 305
             } else {
306 306
                 // Create the category if it does not already exist
307 307
                 $category_id = getCreateDbCategory($category, $sqlParser);
@@ -311,31 +311,31 @@  discard block
 block discarded – undo
311 311
                 $template = mysqli_real_escape_string($conn, $template);
312 312
 
313 313
                 // See if the template already exists
314
-                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_templates` WHERE templatename='$name'");
314
+                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_templates` WHERE templatename='$name'");
315 315
 
316 316
                 if (mysqli_num_rows($rs)) {
317
-                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked'  WHERE templatename='$name' LIMIT 1;")) {
317
+                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_templates` SET content='$template', description='$desc', category=$category_id, locked='$locked'  WHERE templatename='$name' LIMIT 1;")) {
318 318
                         $errors += 1;
319
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
319
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
320 320
                         return;
321 321
                     }
322
-                    if(!is_null($save_sql_id_as)) {
322
+                    if (!is_null($save_sql_id_as)) {
323 323
                         $sql_id = @mysqli_insert_id($sqlParser->conn);
324
-                        if(!$sql_id) {
325
-                            $idQuery = mysqli_fetch_assoc(mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`" . $table_prefix . "site_templates` WHERE templatename='$name' LIMIT 1;"));
324
+                        if (!$sql_id) {
325
+                            $idQuery = mysqli_fetch_assoc(mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`".$table_prefix."site_templates` WHERE templatename='$name' LIMIT 1;"));
326 326
                             $sql_id = $idQuery['id'];
327 327
                         }
328 328
                         $custom_placeholders[$save_sql_id_as] = $sql_id;
329 329
                     }
330
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
330
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
331 331
                 } else {
332
-                    if (!@ mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_templates` (templatename,description,content,category,locked) VALUES('$name','$desc','$template',$category_id,'$locked');")) {
332
+                    if (!@ mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_templates` (templatename,description,content,category,locked) VALUES('$name','$desc','$template',$category_id,'$locked');")) {
333 333
                         $errors += 1;
334
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
334
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
335 335
                         return;
336 336
                     }
337
-                    if(!is_null($save_sql_id_as)) $custom_placeholders[$save_sql_id_as] = @mysqli_insert_id($sqlParser->conn);
338
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
337
+                    if (!is_null($save_sql_id_as)) $custom_placeholders[$save_sql_id_as] = @mysqli_insert_id($sqlParser->conn);
338
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
339 339
                 }
340 340
             }
341 341
         }
@@ -344,11 +344,11 @@  discard block
 block discarded – undo
344 344
 
345 345
 // Install Template Variables
346 346
 if (isset ($_POST['tv']) || $installData) {
347
-    echo "<h3>" . $_lang['tvs'] . ":</h3> ";
347
+    echo "<h3>".$_lang['tvs'].":</h3> ";
348 348
     $selTVs = $_POST['tv'];
349 349
     foreach ($moduleTVs as $k=>$moduleTV) {
350 350
         $installSample = in_array('sample', $moduleTV[12]) && $installData == 1;
351
-        if($installSample || in_array($k, $selTVs)) {
351
+        if ($installSample || in_array($k, $selTVs)) {
352 352
             $name = mysqli_real_escape_string($conn, $moduleTV[0]);
353 353
             $caption = mysqli_real_escape_string($conn, $moduleTV[1]);
354 354
             $desc = mysqli_real_escape_string($conn, $moduleTV[2]);
@@ -366,25 +366,25 @@  discard block
 block discarded – undo
366 366
             // Create the category if it does not already exist
367 367
             $category = getCreateDbCategory($category, $sqlParser);
368 368
 
369
-            $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_tmplvars` WHERE name='$name'");
369
+            $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_tmplvars` WHERE name='$name'");
370 370
             if (mysqli_num_rows($rs)) {
371 371
                 $insert = true;
372
-                while($row = mysqli_fetch_assoc($rs)) {
373
-                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) {
374
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
372
+                while ($row = mysqli_fetch_assoc($rs)) {
373
+                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_tmplvars` SET type='$input_type', caption='$caption', description='$desc', category=$category, locked=$locked, elements='$input_options', display='$output_widget', display_params='$output_widget_params', default_text='$input_default' WHERE id={$row['id']};")) {
374
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
375 375
                         return;
376 376
                     }
377 377
                     $insert = false;
378 378
                 }
379
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
379
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
380 380
             } else {
381 381
                 //$q = "INSERT INTO $dbase.`" . $table_prefix . "site_tmplvars` (type,name,caption,description,category,locked,elements,display,display_params,default_text) VALUES('$input_type','$name','$caption','$desc',(SELECT (CASE COUNT(*) WHEN 0 THEN 0 ELSE `id` END) `id` FROM $dbase.`" . $table_prefix . "categories` WHERE `category` = '$category'),$locked,'$input_options','$output_widget','$output_widget_params','$input_default');";
382
-                $q = "INSERT INTO $dbase.`" . $table_prefix . "site_tmplvars` (type,name,caption,description,category,locked,elements,display,display_params,default_text) VALUES('$input_type','$name','$caption','$desc',$category,$locked,'$input_options','$output_widget','$output_widget_params','$input_default');";
382
+                $q = "INSERT INTO $dbase.`".$table_prefix."site_tmplvars` (type,name,caption,description,category,locked,elements,display,display_params,default_text) VALUES('$input_type','$name','$caption','$desc',$category,$locked,'$input_options','$output_widget','$output_widget_params','$input_default');";
383 383
                 if (!mysqli_query($sqlParser->conn, $q)) {
384
-                    echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
384
+                    echo "<p>".mysqli_error($sqlParser->conn)."</p>";
385 385
                     return;
386 386
                 }
387
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
387
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
388 388
             }
389 389
 
390 390
             // add template assignments
@@ -393,10 +393,10 @@  discard block
 block discarded – undo
393 393
             if (count($assignments) > 0) {
394 394
 
395 395
                 // remove existing tv -> template assignments
396
-                $ds=mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`".$table_prefix."site_tmplvars` WHERE name='$name' AND description='$desc';");
396
+                $ds = mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`".$table_prefix."site_tmplvars` WHERE name='$name' AND description='$desc';");
397 397
                 $row = mysqli_fetch_assoc($ds);
398 398
                 $id = $row["id"];
399
-                mysqli_query($sqlParser->conn, 'DELETE FROM ' . $dbase . '.`' . $table_prefix . 'site_tmplvar_templates` WHERE tmplvarid = \'' . $id . '\'');
399
+                mysqli_query($sqlParser->conn, 'DELETE FROM '.$dbase.'.`'.$table_prefix.'site_tmplvar_templates` WHERE tmplvarid = \''.$id.'\'');
400 400
 
401 401
                 // add tv -> template assignments
402 402
                 foreach ($assignments as $assignment) {
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
                     if ($ds && $ts) {
406 406
                         $tRow = mysqli_fetch_assoc($ts);
407 407
                         $templateId = $tRow['id'];
408
-                        mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_tmplvar_templates` (tmplvarid, templateid) VALUES($id, $templateId)");
408
+                        mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_tmplvar_templates` (tmplvarid, templateid) VALUES($id, $templateId)");
409 409
                     }
410 410
                 }
411 411
             }
@@ -415,12 +415,12 @@  discard block
 block discarded – undo
415 415
 
416 416
 // Install Chunks
417 417
 if (isset ($_POST['chunk']) || $installData) {
418
-    echo "<h3>" . $_lang['chunks'] . ":</h3> ";
418
+    echo "<h3>".$_lang['chunks'].":</h3> ";
419 419
     $selChunks = $_POST['chunk'];
420 420
     foreach ($moduleChunks as $k=>$moduleChunk) {
421 421
         $installSample = in_array('sample', $moduleChunk[5]) && $installData == 1;
422 422
         $count_new_name = 0;
423
-        if($installSample || in_array($k, $selChunks)) {
423
+        if ($installSample || in_array($k, $selChunks)) {
424 424
 
425 425
             $name = mysqli_real_escape_string($conn, $moduleChunk[0]);
426 426
             $desc = mysqli_real_escape_string($conn, $moduleChunk[1]);
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
             $filecontent = $moduleChunk[2];
430 430
 
431 431
             if (!file_exists($filecontent))
432
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_chunk'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
432
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">".$_lang['unable_install_chunk']." '$filecontent' ".$_lang['not_found'].".</span></p>";
433 433
             else {
434 434
 
435 435
                 // Create the category if it does not already exist
@@ -437,31 +437,31 @@  discard block
 block discarded – undo
437 437
 
438 438
                 $chunk = preg_replace("/^.*?\/\*\*.*?\*\/\s+/s", '', file_get_contents($filecontent), 1);
439 439
                 $chunk = mysqli_real_escape_string($conn, $chunk);
440
-                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_htmlsnippets` WHERE name='$name'");
440
+                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_htmlsnippets` WHERE name='$name'");
441 441
                 $count_original_name = mysqli_num_rows($rs);
442
-                if($overwrite == 'false') {
443
-                    $newname = $name . '-' . str_replace('.', '_', $modx_version);
444
-                    $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_htmlsnippets` WHERE name='$newname'");
442
+                if ($overwrite == 'false') {
443
+                    $newname = $name.'-'.str_replace('.', '_', $modx_version);
444
+                    $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_htmlsnippets` WHERE name='$newname'");
445 445
                     $count_new_name = mysqli_num_rows($rs);
446 446
                 }
447 447
                 $update = $count_original_name > 0 && $overwrite == 'true';
448 448
                 if ($update) {
449
-                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) {
449
+                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_htmlsnippets` SET snippet='$chunk', description='$desc', category=$category_id WHERE name='$name';")) {
450 450
                         $errors += 1;
451
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
451
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
452 452
                         return;
453 453
                     }
454
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
455
-                } elseif($count_new_name == 0) {
456
-                    if($count_original_name > 0 && $overwrite == 'false') {
454
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
455
+                } elseif ($count_new_name == 0) {
456
+                    if ($count_original_name > 0 && $overwrite == 'false') {
457 457
                         $name = $newname;
458 458
                     }
459
-                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_htmlsnippets` (name,description,snippet,category) VALUES('$name','$desc','$chunk',$category_id);")) {
459
+                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_htmlsnippets` (name,description,snippet,category) VALUES('$name','$desc','$chunk',$category_id);")) {
460 460
                         $errors += 1;
461
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
461
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
462 462
                         return;
463 463
                     }
464
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
464
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
465 465
                 }
466 466
             }
467 467
         }
@@ -470,11 +470,11 @@  discard block
 block discarded – undo
470 470
 
471 471
 // Install Modules
472 472
 if (isset ($_POST['module']) || $installData) {
473
-    echo "<h3>" . $_lang['modules'] . ":</h3> ";
473
+    echo "<h3>".$_lang['modules'].":</h3> ";
474 474
     $selModules = $_POST['module'];
475 475
     foreach ($moduleModules as $k=>$moduleModule) {
476 476
         $installSample = in_array('sample', $moduleModule[7]) && $installData == 1;
477
-        if($installSample || in_array($k, $selModules)) {
477
+        if ($installSample || in_array($k, $selModules)) {
478 478
             $name = mysqli_real_escape_string($conn, $moduleModule[0]);
479 479
             $desc = mysqli_real_escape_string($conn, $moduleModule[1]);
480 480
             $filecontent = $moduleModule[2];
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
             $shared = mysqli_real_escape_string($conn, $moduleModule[5]);
484 484
             $category = mysqli_real_escape_string($conn, $moduleModule[6]);
485 485
             if (!file_exists($filecontent))
486
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_module'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
486
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">".$_lang['unable_install_module']." '$filecontent' ".$_lang['not_found'].".</span></p>";
487 487
             else {
488 488
 
489 489
                 // Create the category if it does not already exist
@@ -492,22 +492,22 @@  discard block
 block discarded – undo
492 492
                 $module = end(preg_split("/(\/\/)?\s*\<\?php/", file_get_contents($filecontent), 2));
493 493
                 // $module = removeDocblock($module, 'module'); // Modules have no fileBinding, keep docblock for info-tab
494 494
                 $module = mysqli_real_escape_string($conn, $module);
495
-                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_modules` WHERE name='$name'");
495
+                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_modules` WHERE name='$name'");
496 496
                 if (mysqli_num_rows($rs)) {
497 497
                     $row = mysqli_fetch_assoc($rs);
498
-                    $props = mysqli_real_escape_string($conn, propUpdate($properties,$row['properties']));
499
-                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) {
500
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
498
+                    $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties']));
499
+                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_modules` SET modulecode='$module', description='$desc', properties='$props', enable_sharedparams='$shared' WHERE name='$name';")) {
500
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
501 501
                         return;
502 502
                     }
503
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
503
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
504 504
                 } else {
505 505
                     $properties = mysqli_real_escape_string($conn, parseProperties($properties, true));
506
-                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_modules` (name,description,modulecode,properties,guid,enable_sharedparams,category) VALUES('$name','$desc','$module','$properties','$guid','$shared', $category);")) {
507
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
506
+                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_modules` (name,description,modulecode,properties,guid,enable_sharedparams,category) VALUES('$name','$desc','$module','$properties','$guid','$shared', $category);")) {
507
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
508 508
                         return;
509 509
                     }
510
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
510
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
511 511
                 }
512 512
             }
513 513
         }
@@ -516,11 +516,11 @@  discard block
 block discarded – undo
516 516
 
517 517
 // Install Plugins
518 518
 if (isset ($_POST['plugin']) || $installData) {
519
-    echo "<h3>" . $_lang['plugins'] . ":</h3> ";
519
+    echo "<h3>".$_lang['plugins'].":</h3> ";
520 520
     $selPlugs = $_POST['plugin'];
521 521
     foreach ($modulePlugins as $k=>$modulePlugin) {
522 522
         $installSample = in_array('sample', $modulePlugin[8]) && $installData == 1;
523
-        if($installSample || in_array($k, $selPlugs)) {
523
+        if ($installSample || in_array($k, $selPlugs)) {
524 524
             $name = mysqli_real_escape_string($conn, $modulePlugin[0]);
525 525
             $desc = mysqli_real_escape_string($conn, $modulePlugin[1]);
526 526
             $filecontent = $modulePlugin[2];
@@ -530,17 +530,17 @@  discard block
 block discarded – undo
530 530
             $category = mysqli_real_escape_string($conn, $modulePlugin[6]);
531 531
             $leg_names = '';
532 532
             $disabled = $modulePlugin[9];
533
-            if(array_key_exists(7, $modulePlugin)) {
533
+            if (array_key_exists(7, $modulePlugin)) {
534 534
                 // parse comma-separated legacy names and prepare them for sql IN clause
535
-                $leg_names = "'" . implode("','", preg_split('/\s*,\s*/', mysqli_real_escape_string($conn, $modulePlugin[7]))) . "'";
535
+                $leg_names = "'".implode("','", preg_split('/\s*,\s*/', mysqli_real_escape_string($conn, $modulePlugin[7])))."'";
536 536
             }
537 537
             if (!file_exists($filecontent))
538
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_plugin'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
538
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">".$_lang['unable_install_plugin']." '$filecontent' ".$_lang['not_found'].".</span></p>";
539 539
             else {
540 540
 
541 541
                 // disable legacy versions based on legacy_names provided
542
-                if(!empty($leg_names)) {
543
-                    $update_query = "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE name IN ($leg_names);";
542
+                if (!empty($leg_names)) {
543
+                    $update_query = "UPDATE $dbase.`".$table_prefix."site_plugins` SET disabled='1' WHERE name IN ($leg_names);";
544 544
                     $rs = mysqli_query($sqlParser->conn, $update_query);
545 545
                 }
546 546
 
@@ -550,50 +550,50 @@  discard block
 block discarded – undo
550 550
                 $plugin = end(preg_split("/(\/\/)?\s*\<\?php/", file_get_contents($filecontent), 2));
551 551
                 $plugin = removeDocblock($plugin, 'plugin');
552 552
                 $plugin = mysqli_real_escape_string($conn, $plugin);
553
-                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_plugins` WHERE name='$name'");
553
+                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_plugins` WHERE name='$name'");
554 554
                 if (mysqli_num_rows($rs)) {
555 555
                     $insert = true;
556
-                    while($row = mysqli_fetch_assoc($rs)) {
557
-                        $props = mysqli_real_escape_string($conn, propUpdate($properties,$row['properties']));
558
-                        if($row['description'] == $desc){
559
-                            if (! mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) {
560
-                                echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
556
+                    while ($row = mysqli_fetch_assoc($rs)) {
557
+                        $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties']));
558
+                        if ($row['description'] == $desc) {
559
+                            if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) {
560
+                                echo "<p>".mysqli_error($sqlParser->conn)."</p>";
561 561
                                 return;
562 562
                             }
563 563
                             $insert = false;
564 564
                         } else {
565
-                            if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET disabled='1' WHERE id={$row['id']};")) {
565
+                            if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_plugins` SET disabled='1' WHERE id={$row['id']};")) {
566 566
                                 echo "<p>".mysqli_error($sqlParser->conn)."</p>";
567 567
                                 return;
568 568
                             }
569 569
                         }
570 570
                     }
571
-                    if($insert === true) {
572
-                        $properties = mysqli_real_escape_string($conn, propUpdate($properties,$row['properties']));
573
-                        if(!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_plugins` (name,description,plugincode,properties,moduleguid,disabled,category) VALUES('$name','$desc','$plugin','$properties','$guid','0',$category);")) {
571
+                    if ($insert === true) {
572
+                        $properties = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties']));
573
+                        if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_plugins` (name,description,plugincode,properties,moduleguid,disabled,category) VALUES('$name','$desc','$plugin','$properties','$guid','0',$category);")) {
574 574
                             echo "<p>".mysqli_error($sqlParser->conn)."</p>";
575 575
                             return;
576 576
                         }
577 577
                     }
578
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
578
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
579 579
                 } else {
580 580
                     $properties = mysqli_real_escape_string($conn, parseProperties($properties, true));
581
-                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_plugins` (name,description,plugincode,properties,moduleguid,category,disabled) VALUES('$name','$desc','$plugin','$properties','$guid',$category,$disabled);")) {
582
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
581
+                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_plugins` (name,description,plugincode,properties,moduleguid,category,disabled) VALUES('$name','$desc','$plugin','$properties','$guid',$category,$disabled);")) {
582
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
583 583
                         return;
584 584
                     }
585
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
585
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
586 586
                 }
587 587
                 // add system events
588 588
                 if (count($events) > 0) {
589
-                    $ds=mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`".$table_prefix."site_plugins` WHERE name='$name' AND description='$desc';");
589
+                    $ds = mysqli_query($sqlParser->conn, "SELECT id FROM $dbase.`".$table_prefix."site_plugins` WHERE name='$name' AND description='$desc';");
590 590
                     if ($ds) {
591 591
                         $row = mysqli_fetch_assoc($ds);
592 592
                         $id = $row["id"];
593 593
                         // remove existing events
594
-                        mysqli_query($sqlParser->conn, 'DELETE FROM ' . $dbase . '.`' . $table_prefix . 'site_plugin_events` WHERE pluginid = \'' . $id . '\'');
594
+                        mysqli_query($sqlParser->conn, 'DELETE FROM '.$dbase.'.`'.$table_prefix.'site_plugin_events` WHERE pluginid = \''.$id.'\'');
595 595
                         // add new events
596
-                        mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_plugin_events` (pluginid, evtid) SELECT '$id' as 'pluginid',se.id as 'evtid' FROM $dbase.`" . $table_prefix . "system_eventnames` se WHERE name IN ('" . implode("','", $events) . "')");
596
+                        mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_plugin_events` (pluginid, evtid) SELECT '$id' as 'pluginid',se.id as 'evtid' FROM $dbase.`".$table_prefix."system_eventnames` se WHERE name IN ('".implode("','", $events)."')");
597 597
                     }
598 598
                 }
599 599
             }
@@ -603,18 +603,18 @@  discard block
 block discarded – undo
603 603
 
604 604
 // Install Snippets
605 605
 if (isset ($_POST['snippet']) || $installData) {
606
-    echo "<h3>" . $_lang['snippets'] . ":</h3> ";
606
+    echo "<h3>".$_lang['snippets'].":</h3> ";
607 607
     $selSnips = $_POST['snippet'];
608 608
     foreach ($moduleSnippets as $k=>$moduleSnippet) {
609 609
         $installSample = in_array('sample', $moduleSnippet[5]) && $installData == 1;
610
-        if($installSample || in_array($k, $selSnips)) {
610
+        if ($installSample || in_array($k, $selSnips)) {
611 611
             $name = mysqli_real_escape_string($conn, $moduleSnippet[0]);
612 612
             $desc = mysqli_real_escape_string($conn, $moduleSnippet[1]);
613 613
             $filecontent = $moduleSnippet[2];
614 614
             $properties = $moduleSnippet[3];
615 615
             $category = mysqli_real_escape_string($conn, $moduleSnippet[4]);
616 616
             if (!file_exists($filecontent))
617
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_snippet'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
617
+                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">".$_lang['unable_install_snippet']." '$filecontent' ".$_lang['not_found'].".</span></p>";
618 618
             else {
619 619
 
620 620
                 // Create the category if it does not already exist
@@ -623,22 +623,22 @@  discard block
 block discarded – undo
623 623
                 $snippet = end(preg_split("/(\/\/)?\s*\<\?php/", file_get_contents($filecontent)));
624 624
                 $snippet = removeDocblock($snippet, 'snippet');
625 625
                 $snippet = mysqli_real_escape_string($conn, $snippet);
626
-                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`" . $table_prefix . "site_snippets` WHERE name='$name'");
626
+                $rs = mysqli_query($sqlParser->conn, "SELECT * FROM $dbase.`".$table_prefix."site_snippets` WHERE name='$name'");
627 627
                 if (mysqli_num_rows($rs)) {
628 628
                     $row = mysqli_fetch_assoc($rs);
629
-                    $props = mysqli_real_escape_string($conn, propUpdate($properties,$row['properties']));
630
-                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) {
631
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
629
+                    $props = mysqli_real_escape_string($conn, propUpdate($properties, $row['properties']));
630
+                    if (!mysqli_query($sqlParser->conn, "UPDATE $dbase.`".$table_prefix."site_snippets` SET snippet='$snippet', description='$desc', properties='$props' WHERE name='$name';")) {
631
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
632 632
                         return;
633 633
                     }
634
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['upgraded'] . "</span></p>";
634
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['upgraded']."</span></p>";
635 635
                 } else {
636 636
                     $properties = mysqli_real_escape_string($conn, parseProperties($properties, true));
637
-                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`" . $table_prefix . "site_snippets` (name,description,snippet,properties,category) VALUES('$name','$desc','$snippet','$properties',$category);")) {
638
-                        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
637
+                    if (!mysqli_query($sqlParser->conn, "INSERT INTO $dbase.`".$table_prefix."site_snippets` (name,description,snippet,properties,category) VALUES('$name','$desc','$snippet','$properties',$category);")) {
638
+                        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
639 639
                         return;
640 640
                     }
641
-                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
641
+                    echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">".$_lang['installed']."</span></p>";
642 642
                 }
643 643
             }
644 644
         }
@@ -647,24 +647,24 @@  discard block
 block discarded – undo
647 647
 
648 648
 // Install demo-site
649 649
 if ($installData && $moduleSQLDataFile) {
650
-    echo "<p>" . $_lang['installing_demo_site'];
650
+    echo "<p>".$_lang['installing_demo_site'];
651 651
     $sqlParser->process($moduleSQLDataFile);
652 652
     // display database results
653 653
     if ($sqlParser->installFailed == true) {
654 654
         $errors += 1;
655
-        echo "<span class=\"notok\"><b>" . $_lang['database_alerts'] . "</span></p>";
656
-        echo "<p>" . $_lang['setup_couldnt_install'] . "</p>";
657
-        echo "<p>" . $_lang['installation_error_occured'] . "<br /><br />";
655
+        echo "<span class=\"notok\"><b>".$_lang['database_alerts']."</span></p>";
656
+        echo "<p>".$_lang['setup_couldnt_install']."</p>";
657
+        echo "<p>".$_lang['installation_error_occured']."<br /><br />";
658 658
         for ($i = 0; $i < count($sqlParser->mysqlErrors); $i++) {
659
-            echo "<em>" . $sqlParser->mysqlErrors[$i]["error"] . "</em>" . $_lang['during_execution_of_sql'] . "<span class='mono'>" . strip_tags($sqlParser->mysqlErrors[$i]["sql"]) . "</span>.<hr />";
659
+            echo "<em>".$sqlParser->mysqlErrors[$i]["error"]."</em>".$_lang['during_execution_of_sql']."<span class='mono'>".strip_tags($sqlParser->mysqlErrors[$i]["sql"])."</span>.<hr />";
660 660
         }
661 661
         echo "</p>";
662
-        echo "<p>" . $_lang['some_tables_not_updated'] . "</p>";
662
+        echo "<p>".$_lang['some_tables_not_updated']."</p>";
663 663
         return;
664 664
     } else {
665 665
         $sql = sprintf("SELECT id FROM `%ssite_templates` WHERE templatename='EVO startup - Bootstrap'", $sqlParser->prefix);
666 666
         $rs = mysqli_query($sqlParser->conn, $sql);
667
-        if(mysqli_num_rows($rs)) {
667
+        if (mysqli_num_rows($rs)) {
668 668
             $row = mysqli_fetch_assoc($rs);
669 669
             $sql = sprintf('UPDATE `%ssite_content` SET template=%s WHERE template=4', $sqlParser->prefix, $row['id']);
670 670
             mysqli_query($sqlParser->conn, $sql);
@@ -675,9 +675,9 @@  discard block
 block discarded – undo
675 675
 
676 676
 // Install Dependencies
677 677
 foreach ($moduleDependencies as $dependency) {
678
-    $ds = mysqli_query($sqlParser->conn, 'SELECT id, guid FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_modules` WHERE name="' . $dependency['module'] . '"');
678
+    $ds = mysqli_query($sqlParser->conn, 'SELECT id, guid FROM '.$dbase.'`'.$sqlParser->prefix.'site_modules` WHERE name="'.$dependency['module'].'"');
679 679
     if (!$ds) {
680
-        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
680
+        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
681 681
         return;
682 682
     } else {
683 683
         $row = mysqli_fetch_assoc($ds);
@@ -685,37 +685,37 @@  discard block
 block discarded – undo
685 685
         $moduleGuid = $row["guid"];
686 686
     }
687 687
     // get extra id
688
-    $ds = mysqli_query($sqlParser->conn, 'SELECT id FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` WHERE ' . $dependency['column'] . '="' . $dependency['name'] . '"');
688
+    $ds = mysqli_query($sqlParser->conn, 'SELECT id FROM '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` WHERE '.$dependency['column'].'="'.$dependency['name'].'"');
689 689
     if (!$ds) {
690
-        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
690
+        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
691 691
         return;
692 692
     } else {
693 693
         $row = mysqli_fetch_assoc($ds);
694 694
         $extraId = $row["id"];
695 695
     }
696 696
     // setup extra as module dependency
697
-    $ds = mysqli_query($sqlParser->conn, 'SELECT module FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` WHERE module=' . $moduleId . ' AND resource=' . $extraId . ' AND type=' . $dependency['type'] . ' LIMIT 1');
697
+    $ds = mysqli_query($sqlParser->conn, 'SELECT module FROM '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` WHERE module='.$moduleId.' AND resource='.$extraId.' AND type='.$dependency['type'].' LIMIT 1');
698 698
     if (!$ds) {
699
-        echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
699
+        echo "<p>".mysqli_error($sqlParser->conn)."</p>";
700 700
         return;
701 701
     } else {
702 702
         if (mysqli_num_rows($ds) === 0) {
703
-            mysqli_query($sqlParser->conn, 'INSERT INTO ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` (module, resource, type) VALUES(' . $moduleId . ',' . $extraId . ',' . $dependency['type'] . ')');
704
-            echo '<p>&nbsp;&nbsp;' . $dependency['module'] . ' Module: <span class="ok">' . $_lang['depedency_create'] . '</span></p>';
703
+            mysqli_query($sqlParser->conn, 'INSERT INTO '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` (module, resource, type) VALUES('.$moduleId.','.$extraId.','.$dependency['type'].')');
704
+            echo '<p>&nbsp;&nbsp;'.$dependency['module'].' Module: <span class="ok">'.$_lang['depedency_create'].'</span></p>';
705 705
         } else {
706
-            mysqli_query($sqlParser->conn, 'UPDATE ' . $dbase . '`' . $sqlParser->prefix . 'site_module_depobj` SET module = ' . $moduleId . ', resource = ' . $extraId . ', type = ' . $dependency['type'] . ' WHERE module=' . $moduleId . ' AND resource=' . $extraId . ' AND type=' . $dependency['type']);
707
-            echo '<p>&nbsp;&nbsp;' . $dependency['module'] . ' Module: <span class="ok">' . $_lang['depedency_update'] . '</span></p>';
706
+            mysqli_query($sqlParser->conn, 'UPDATE '.$dbase.'`'.$sqlParser->prefix.'site_module_depobj` SET module = '.$moduleId.', resource = '.$extraId.', type = '.$dependency['type'].' WHERE module='.$moduleId.' AND resource='.$extraId.' AND type='.$dependency['type']);
707
+            echo '<p>&nbsp;&nbsp;'.$dependency['module'].' Module: <span class="ok">'.$_lang['depedency_update'].'</span></p>';
708 708
         }
709 709
         if ($dependency['type'] == 30 || $dependency['type'] == 40) {
710 710
             // set extra guid for plugins and snippets
711
-            $ds = mysqli_query($sqlParser->conn, 'SELECT id FROM ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` WHERE id=' . $extraId . ' LIMIT 1');
711
+            $ds = mysqli_query($sqlParser->conn, 'SELECT id FROM '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` WHERE id='.$extraId.' LIMIT 1');
712 712
             if (!$ds) {
713
-                echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
713
+                echo "<p>".mysqli_error($sqlParser->conn)."</p>";
714 714
                 return;
715 715
             } else {
716 716
                 if (mysqli_num_rows($ds) != 0) {
717
-                    mysqli_query($sqlParser->conn, 'UPDATE ' . $dbase . '`' . $sqlParser->prefix . 'site_' . $dependency['table'] . '` SET moduleguid = ' . $moduleGuid . ' WHERE id=' . $extraId);
718
-                    echo '<p>&nbsp;&nbsp;' . $dependency['name'] . ': <span class="ok">' . $_lang['guid_set'] . '</span></p>';
717
+                    mysqli_query($sqlParser->conn, 'UPDATE '.$dbase.'`'.$sqlParser->prefix.'site_'.$dependency['table'].'` SET moduleguid = '.$moduleGuid.' WHERE id='.$extraId);
718
+                    echo '<p>&nbsp;&nbsp;'.$dependency['name'].': <span class="ok">'.$_lang['guid_set'].'</span></p>';
719 719
                 }
720 720
             }
721 721
         }
@@ -724,7 +724,7 @@  discard block
 block discarded – undo
724 724
 
725 725
 // call back function
726 726
 if ($callBackFnc != "")
727
-    $callBackFnc ($sqlParser);
727
+    $callBackFnc($sqlParser);
728 728
 
729 729
 // Setup the MODX API -- needed for the cache processor
730 730
 define('MODX_API_MODE', true);
@@ -759,12 +759,12 @@  discard block
 block discarded – undo
759 759
 }
760 760
 
761 761
 // setup completed!
762
-echo "<p><b>" . $_lang['installation_successful'] . "</b></p>";
763
-echo "<p>" . $_lang['to_log_into_content_manager'] . "</p>";
762
+echo "<p><b>".$_lang['installation_successful']."</b></p>";
763
+echo "<p>".$_lang['to_log_into_content_manager']."</p>";
764 764
 if ($installMode == 0) {
765
-    echo "<p><img src=\"img/ico_info.png\" width=\"40\" height=\"42\" align=\"left\" style=\"margin-right:10px;\" />" . $_lang['installation_note'] . "</p>";
765
+    echo "<p><img src=\"img/ico_info.png\" width=\"40\" height=\"42\" align=\"left\" style=\"margin-right:10px;\" />".$_lang['installation_note']."</p>";
766 766
 } else {
767
-    echo "<p><img src=\"img/ico_info.png\" width=\"40\" height=\"42\" align=\"left\" style=\"margin-right:10px;\" />" . $_lang['upgrade_note'] . "</p>";
767
+    echo "<p><img src=\"img/ico_info.png\" width=\"40\" height=\"42\" align=\"left\" style=\"margin-right:10px;\" />".$_lang['upgrade_note']."</p>";
768 768
 }
769 769
 ?>
770 770
 <form name="install" id="install_form" action="index.php?action=options" method="post">
@@ -793,10 +793,10 @@  discard block
 block discarded – undo
793 793
 	var chk = document.install.rminstaller;
794 794
 	if(chk && chk.checked) {
795 795
 		// remove install folder and files
796
-		window.location.href = "../<?php echo MGR_DIR;?>/processors/remove_installer.processor.php?rminstall=1";
796
+		window.location.href = "../<?php echo MGR_DIR; ?>/processors/remove_installer.processor.php?rminstall=1";
797 797
 	}
798 798
 	else {
799
-		window.location.href = "../<?php echo MGR_DIR;?>/";
799
+		window.location.href = "../<?php echo MGR_DIR; ?>/";
800 800
 	}
801 801
 }
802 802
 /* ]]> */
Please login to merge, or discard this patch.
Braces   +30 added lines, -21 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 <?php
13 13
 if (file_exists(__DIR__."/../assets/cache/siteManager.php")) {
14 14
     include_once(__DIR__."/../assets/cache/siteManager.php");
15
-}else{
15
+} else {
16 16
     define('MGR_DIR', 'manager');
17 17
 }
18 18
 
@@ -69,13 +69,15 @@  discard block
 block discarded – undo
69 69
 
70 70
 // get base path and url
71 71
 $a = explode("install", str_replace("\\", "/", dirname($_SERVER["PHP_SELF"])));
72
-if (count($a) > 1)
72
+if (count($a) > 1) {
73 73
     array_pop($a);
74
+}
74 75
 $url = implode("install", $a);
75 76
 reset($a);
76 77
 $a = explode("install", str_replace("\\", "/", realpath(__DIR__)));
77
-if (count($a) > 1)
78
+if (count($a) > 1) {
78 79
     array_pop($a);
80
+}
79 81
 $pth = implode("install", $a);
80 82
 unset ($a);
81 83
 $base_url = $url . (substr($url, -1) != "/" ? "/" : "");
@@ -96,7 +98,9 @@  discard block
 block discarded – undo
96 98
     echo "<span class=\"notok\" style='color:#707070'>".$_lang['setup_database_selection_failed']."</span>".$_lang['setup_database_selection_failed_note']."</p>";
97 99
     $create = true;
98 100
 } else {
99
-    if (function_exists('mysqli_set_charset')) mysqli_set_charset($conn, $database_charset);
101
+    if (function_exists('mysqli_set_charset')) {
102
+        mysqli_set_charset($conn, $database_charset);
103
+    }
100 104
     mysqli_query($conn, "{$database_connection_method} {$database_connection_charset}");
101 105
     echo '<span class="ok">'.$_lang['ok']."</span></p>";
102 106
 }
@@ -198,7 +202,7 @@  discard block
 block discarded – undo
198 202
 // custom or not
199 203
 if (file_exists(__DIR__."/../../assets/cache/siteManager.php")) {
200 204
     $mgrdir = 'include_once(__DIR__."/../../assets/cache/siteManager.php");';
201
-}else{
205
+} else {
202 206
     $mgrdir = 'define(\'MGR_DIR\', \'manager\');';
203 207
 }
204 208
 
@@ -334,7 +338,9 @@  discard block
 block discarded – undo
334 338
                         echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
335 339
                         return;
336 340
                     }
337
-                    if(!is_null($save_sql_id_as)) $custom_placeholders[$save_sql_id_as] = @mysqli_insert_id($sqlParser->conn);
341
+                    if(!is_null($save_sql_id_as)) {
342
+                        $custom_placeholders[$save_sql_id_as] = @mysqli_insert_id($sqlParser->conn);
343
+                    }
338 344
                     echo "<p>&nbsp;&nbsp;$name: <span class=\"ok\">" . $_lang['installed'] . "</span></p>";
339 345
                 }
340 346
             }
@@ -428,9 +434,9 @@  discard block
 block discarded – undo
428 434
             $overwrite = mysqli_real_escape_string($conn, $moduleChunk[4]);
429 435
             $filecontent = $moduleChunk[2];
430 436
 
431
-            if (!file_exists($filecontent))
432
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_chunk'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
433
-            else {
437
+            if (!file_exists($filecontent)) {
438
+                            echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_chunk'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
439
+            } else {
434 440
 
435 441
                 // Create the category if it does not already exist
436 442
                 $category_id = getCreateDbCategory($category, $sqlParser);
@@ -482,9 +488,9 @@  discard block
 block discarded – undo
482 488
             $guid = mysqli_real_escape_string($conn, $moduleModule[4]);
483 489
             $shared = mysqli_real_escape_string($conn, $moduleModule[5]);
484 490
             $category = mysqli_real_escape_string($conn, $moduleModule[6]);
485
-            if (!file_exists($filecontent))
486
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_module'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
487
-            else {
491
+            if (!file_exists($filecontent)) {
492
+                            echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_module'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
493
+            } else {
488 494
 
489 495
                 // Create the category if it does not already exist
490 496
                 $category = getCreateDbCategory($category, $sqlParser);
@@ -534,9 +540,9 @@  discard block
 block discarded – undo
534 540
                 // parse comma-separated legacy names and prepare them for sql IN clause
535 541
                 $leg_names = "'" . implode("','", preg_split('/\s*,\s*/', mysqli_real_escape_string($conn, $modulePlugin[7]))) . "'";
536 542
             }
537
-            if (!file_exists($filecontent))
538
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_plugin'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
539
-            else {
543
+            if (!file_exists($filecontent)) {
544
+                            echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_plugin'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
545
+            } else {
540 546
 
541 547
                 // disable legacy versions based on legacy_names provided
542 548
                 if(!empty($leg_names)) {
@@ -555,7 +561,7 @@  discard block
 block discarded – undo
555 561
                     $insert = true;
556 562
                     while($row = mysqli_fetch_assoc($rs)) {
557 563
                         $props = mysqli_real_escape_string($conn, propUpdate($properties,$row['properties']));
558
-                        if($row['description'] == $desc){
564
+                        if($row['description'] == $desc) {
559 565
                             if (! mysqli_query($sqlParser->conn, "UPDATE $dbase.`" . $table_prefix . "site_plugins` SET plugincode='$plugin', description='$desc', properties='$props' WHERE id={$row['id']};")) {
560 566
                                 echo "<p>" . mysqli_error($sqlParser->conn) . "</p>";
561 567
                                 return;
@@ -613,9 +619,9 @@  discard block
 block discarded – undo
613 619
             $filecontent = $moduleSnippet[2];
614 620
             $properties = $moduleSnippet[3];
615 621
             $category = mysqli_real_escape_string($conn, $moduleSnippet[4]);
616
-            if (!file_exists($filecontent))
617
-                echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_snippet'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
618
-            else {
622
+            if (!file_exists($filecontent)) {
623
+                            echo "<p>&nbsp;&nbsp;$name: <span class=\"notok\">" . $_lang['unable_install_snippet'] . " '$filecontent' " . $_lang['not_found'] . ".</span></p>";
624
+            } else {
619 625
 
620 626
                 // Create the category if it does not already exist
621 627
                 $category = getCreateDbCategory($category, $sqlParser);
@@ -723,13 +729,16 @@  discard block
 block discarded – undo
723 729
 }
724 730
 
725 731
 // call back function
726
-if ($callBackFnc != "")
732
+if ($callBackFnc != "") {
727 733
     $callBackFnc ($sqlParser);
734
+}
728 735
 
729 736
 // Setup the MODX API -- needed for the cache processor
730 737
 define('MODX_API_MODE', true);
731 738
 define('MODX_BASE_PATH', $base_path);
732
-if (!defined('MODX_MANAGER_PATH')) define('MODX_MANAGER_PATH', $base_path.MGR_DIR.'/');
739
+if (!defined('MODX_MANAGER_PATH')) {
740
+    define('MODX_MANAGER_PATH', $base_path.MGR_DIR.'/');
741
+}
733 742
 $database_type = 'mysqli';
734 743
 // initiate a new document parser
735 744
 include_once('../'.MGR_DIR.'/includes/document.parser.class.inc.php');
Please login to merge, or discard this patch.
install/src/lang.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     'sv' => 'svenska'
38 38
 );
39 39
 $_langISO6391 = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
40
-if (! empty($_langFiles[$_langISO6391])) {
40
+if (!empty($_langFiles[$_langISO6391])) {
41 41
     $install_language = $_langFiles[$_langISO6391];
42 42
 }
43 43
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 }
52 52
 # load language file
53 53
 require_once 'lang/english.inc.php'; // As fallback
54
-require_once 'lang/' . $install_language . '.inc.php';
54
+require_once 'lang/'.$install_language.'.inc.php';
55 55
 
56 56
 $manager_language = $install_language;
57 57
 
Please login to merge, or discard this patch.
install/src/lang/russian-UTF8.inc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  *
16 16
  * Please commit your language changes on Transifex (https://www.transifex.com/projects/p/modx-evolution/) or on GitHub (https://github.com/modxcms/evolution).
17 17
  */
18
-setlocale (LC_ALL, 'ru_RU.UTF-8');
18
+setlocale(LC_ALL, 'ru_RU.UTF-8');
19 19
 $_lang["agree_to_terms"] = 'Согласиться с условиями лицензии и приступить к установке';
20 20
 $_lang["alert_database_test_connection"] = 'Вы должны создать базу данных или выбрать базу данных для проверки!';
21 21
 $_lang["alert_database_test_connection_failed"] = 'Неудачная проверка выбранной базы данных!';
Please login to merge, or discard this patch.
install/src/processor/result.php 1 patch
Spacing   +13 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 //:: EVO Installer Setup file
3 3
 //:::::::::::::::::::::::::::::::::::::::::
4
-if (is_file($base_path . 'assets/cache/siteManager.php')) {
5
-    include_once($base_path . 'assets/cache/siteManager.php');
4
+if (is_file($base_path.'assets/cache/siteManager.php')) {
5
+    include_once($base_path.'assets/cache/siteManager.php');
6 6
 }
7 7
 if (!defined('MGR_DIR')) {
8 8
     define('MGR_DIR', 'manager');
9 9
 }
10 10
 
11
-require_once(dirname(dirname(dirname(__DIR__))) . '/' . MGR_DIR . '/includes/version.inc.php');
11
+require_once(dirname(dirname(dirname(__DIR__))).'/'.MGR_DIR.'/includes/version.inc.php');
12 12
 
13
-$chunkPath = $base_path . 'install/assets/chunks';
14
-$snippetPath = $base_path . 'install/assets/snippets';
15
-$pluginPath = $base_path . 'install/assets/plugins';
16
-$modulePath = $base_path . 'install/assets/modules';
17
-$templatePath = $base_path . 'install/assets/templates';
18
-$tvPath = $base_path . 'install/assets/tvs';
13
+$chunkPath = $base_path.'install/assets/chunks';
14
+$snippetPath = $base_path.'install/assets/snippets';
15
+$pluginPath = $base_path.'install/assets/plugins';
16
+$modulePath = $base_path.'install/assets/modules';
17
+$templatePath = $base_path.'install/assets/templates';
18
+$tvPath = $base_path.'install/assets/tvs';
19 19
 
20 20
 // setup Template template files - array : name, description, type - 0:file or 1:content, parameters, category
21 21
 $mt = &$moduleTemplates;
@@ -28,8 +28,7 @@  discard block
 block discarded – undo
28 28
         $params = parse_docblock($templatePath, $tplfile);
29 29
         if (is_array($params) && (count($params) > 0)) {
30 30
             $description = empty($params['version']) ? $params['description'] : "<strong>{$params['version']}</strong> {$params['description']}";
31
-            $mt[] = array
32
-            (
31
+            $mt[] = array(
33 32
                 $params['name'],
34 33
                 $description,
35 34
                 // Don't think this is gonna be used ... but adding it just in case 'type'
@@ -149,7 +148,7 @@  discard block
 block discarded – undo
149 148
                 $params['modx_category'],
150 149
                 $params['legacy_names'],
151 150
                 array_key_exists('installset', $params) ? preg_split("/\s*,\s*/", $params['installset']) : false,
152
-                (int)$params['disabled']
151
+                (int) $params['disabled']
153 152
             );
154 153
         }
155 154
     }
@@ -174,12 +173,12 @@  discard block
 block discarded – undo
174 173
                 "$modulePath/{$params['filename']}",
175 174
                 $params['properties'],
176 175
                 $params['guid'],
177
-                (int)$params['shareparams'],
176
+                (int) $params['shareparams'],
178 177
                 $params['modx_category'],
179 178
                 array_key_exists('installset', $params) ? preg_split("/\s*,\s*/", $params['installset']) : false
180 179
             );
181 180
         }
182
-        if ((int)$params['shareparams'] || !empty($params['dependencies'])) {
181
+        if ((int) $params['shareparams'] || !empty($params['dependencies'])) {
183 182
             $dependencies = explode(',', $params['dependencies']);
184 183
             foreach ($dependencies as $dependency) {
185 184
                 $dependency = explode(':', $dependency);
Please login to merge, or discard this patch.