Passed
Pull Request — master (#70)
by Felipe
03:51
created
src/xhtml/HTMLFooterController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             $footer_html .= $this->printReload(true, false);
57 57
         }
58 58
         if (!$this->_no_bottom_link) {
59
-            $footer_html .= '<a data-footertemplate="'.$template.'" href="#" class="bottom_link">'.$lang['strgotoppage'].'</a>';
59
+            $footer_html .= '<a data-footertemplate="' . $template . '" href="#" class="bottom_link">' . $lang['strgotoppage'] . '</a>';
60 60
         }
61 61
 
62 62
         $footer_html .= $this->view->fetch($template);
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $reload = "<script type=\"text/javascript\">\n";
80 80
         //$reload .= " alert('will reload');";
81 81
         if ($database) {
82
-            $reload .= "\tparent.frames && parent.frames.browser && parent.frames.browser.location.replace=\"".SUBFOLDER."/src/views/browser.php\";\n";
82
+            $reload .= "\tparent.frames && parent.frames.browser && parent.frames.browser.location.replace=\"" . SUBFOLDER . "/src/views/browser.php\";\n";
83 83
         } else {
84 84
             $reload .= "\tif(parent.frames && parent.frames.browser) { console.log('will reload frame browser'); parent.frames.browser.location.reload();} else { console.log('will do location replace'); location.replace(location.href);}\n";
85 85
             //$reload .= "\tparent.frames.detail.location.href=\"".SUBFOLDER . "/src/views/intro\";\n";
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     {
118 118
         echo "<script type=\"text/javascript\">\n";
119 119
         echo "//<![CDATA[\n";
120
-        echo "   window.name = '{$name}", ($addServer ? ':'.htmlspecialchars($this->misc->getServerId()) : ''), "';\n";
120
+        echo "   window.name = '{$name}", ($addServer ? ':' . htmlspecialchars($this->misc->getServerId()) : ''), "';\n";
121 121
         echo "//]]>\n";
122 122
         echo "</script>\n";
123 123
     }
Please login to merge, or discard this patch.
src/xhtml/TreeController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
             }
132 132
         } else {
133 133
             $msg = isset($attrs['nodata']) ? $attrs['nodata'] : $lang['strnoobjects'];
134
-            $tree_xml .= "<tree text=\"{$msg}\" onaction=\"tree.getSelected().getParent().reload()\" icon=\"".$this->misc->icon('ObjectNotFound').'" />'."\n";
134
+            $tree_xml .= "<tree text=\"{$msg}\" onaction=\"tree.getSelected().getParent().reload()\" icon=\"" . $this->misc->icon('ObjectNotFound') . '" />' . "\n";
135 135
         }
136 136
 
137 137
         $tree_xml .= "</tree>\n";
Please login to merge, or discard this patch.
src/controllers/FulltextController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 
306 306
             echo '<p>', sprintf($lang['strconfdropftsconfig'], $misc->printVal($_REQUEST['ftscfg'])), "</p>\n";
307 307
 
308
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
308
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
309 309
             echo "<p><input type=\"checkbox\" id=\"cascade\" name=\"cascade\" /> <label for=\"cascade\">{$lang['strcascade']}</label></p>\n";
310 310
             echo "<p><input type=\"hidden\" name=\"action\" value=\"dropconfig\" />\n";
311 311
             echo '<input type="hidden" name="database" value="', htmlspecialchars($_REQUEST['database']), "\" />\n";
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 
339 339
             echo '<p>', sprintf($lang['strconfdropftsdict'], $misc->printVal($_REQUEST['ftsdict'])), "</p>\n";
340 340
 
341
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
341
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
342 342
             echo "<p><input type=\"checkbox\" id=\"cascade\" name=\"cascade\" /> <label for=\"cascade\">{$lang['strcascade']}</label></p>\n";
343 343
             echo "<p><input type=\"hidden\" name=\"action\" value=\"dropdict\" />\n";
344 344
             echo '<input type="hidden" name="database" value="', htmlspecialchars($_REQUEST['database']), "\" />\n";
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
         $this->printTitle($lang['strftscreateconfig'], 'pg.ftscfg.create');
402 402
         $this->printMsg($msg);
403 403
 
404
-        echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
404
+        echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
405 405
         echo "<table>\n";
406 406
         /* conf name */
407 407
         echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
         while (!$ftscfgs->EOF) {
418 418
             $data->fieldClean($ftscfgs->fields['schema']);
419 419
             $data->fieldClean($ftscfgs->fields['name']);
420
-            $tplname = $ftscfgs->fields['schema'].'.'.$ftscfgs->fields['name'];
420
+            $tplname = $ftscfgs->fields['schema'] . '.' . $ftscfgs->fields['name'];
421 421
             $tpls[$tplname] = serialize([
422 422
                 'name'   => $ftscfgs->fields['name'],
423 423
                 'schema' => $ftscfgs->fields['schema'],
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
         while (!$ftsparsers->EOF) {
439 439
             $data->fieldClean($ftsparsers->fields['schema']);
440 440
             $data->fieldClean($ftsparsers->fields['name']);
441
-            $parsername = $ftsparsers->fields['schema'].'.'.$ftsparsers->fields['name'];
441
+            $parsername = $ftsparsers->fields['schema'] . '.' . $ftsparsers->fields['name'];
442 442
 
443 443
             $ftsparsers_[$parsername] = serialize([
444 444
                 'parser' => $ftsparsers->fields['name'],
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
             // Fetch all FTS parsers from the database
549 549
             $ftsparsers = $data->getFtsParsers();
550 550
 
551
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
551
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
552 552
             echo "<table>\n";
553 553
 
554 554
             echo "\t<tr>\n";
@@ -861,7 +861,7 @@  discard block
 block discarded – undo
861 861
         $this->printTitle($lang['strftscreatedict'], 'pg.ftsdict.create');
862 862
         $this->printMsg($msg);
863 863
 
864
-        echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
864
+        echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
865 865
         echo "<table>\n";
866 866
         echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
867 867
         echo "\t\t<td class=\"data1\"><input name=\"formName\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"",
@@ -877,7 +877,7 @@  discard block
 block discarded – undo
877 877
         while (!$ftstpls->EOF) {
878 878
             $data->fieldClean($ftstpls->fields['schema']);
879 879
             $data->fieldClean($ftstpls->fields['name']);
880
-            $tplname = $ftstpls->fields['schema'].'.'.$ftstpls->fields['name'];
880
+            $tplname = $ftstpls->fields['schema'] . '.' . $ftstpls->fields['name'];
881 881
             $tpls[$tplname] = serialize([
882 882
                 'name'   => $ftstpls->fields['name'],
883 883
                 'schema' => $ftstpls->fields['schema'],
@@ -1015,7 +1015,7 @@  discard block
 block discarded – undo
1015 1015
                 $_POST['formName'] = $_REQUEST['ftsdict'];
1016 1016
             }
1017 1017
 
1018
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
1018
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
1019 1019
             echo "<table>\n";
1020 1020
 
1021 1021
             echo "\t<tr>\n";
@@ -1088,7 +1088,7 @@  discard block
 block discarded – undo
1088 1088
             $this->printTrail('ftscfg'); // TODO: proper breadcrumbs
1089 1089
             $this->printTitle($lang['strdrop'], 'pg.ftscfg.alter');
1090 1090
 
1091
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
1091
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
1092 1092
 
1093 1093
             // Case of multiaction drop
1094 1094
             if (isset($_REQUEST['ma'])) {
@@ -1154,7 +1154,7 @@  discard block
 block discarded – undo
1154 1154
                 $_POST['ftscfg'] = $_REQUEST['ftscfg'];
1155 1155
             }
1156 1156
 
1157
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
1157
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
1158 1158
 
1159 1159
             echo "<table>\n";
1160 1160
             echo "\t<tr>\n";
@@ -1259,7 +1259,7 @@  discard block
 block discarded – undo
1259 1259
 
1260 1260
             $mappings = $data->getFtsMappings($_POST['ftscfg']);
1261 1261
 
1262
-            echo '<form action="'.SUBFOLDER."/src/views/fulltext.php\" method=\"post\">\n";
1262
+            echo '<form action="' . SUBFOLDER . "/src/views/fulltext.php\" method=\"post\">\n";
1263 1263
             echo "<table>\n";
1264 1264
             echo "\t<tr>\n";
1265 1265
             echo "\t\t<th class=\"data left required\">{$lang['strftsmapping']}</th>\n";
Please login to merge, or discard this patch.
src/controllers/TblpropertiesController.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
         $output = ob_get_clean();
82 82
 
83
-        $this->printHeader($lang['strtables'].' - '.$_REQUEST['table'], null, true, $header_template);
83
+        $this->printHeader($lang['strtables'] . ' - ' . $_REQUEST['table'], null, true, $header_template);
84 84
         $this->printBody();
85 85
 
86 86
         echo $output;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $lang = $this->lang;
99 99
         $data = $misc->getDatabaseAccessor();
100 100
 
101
-        $attPre = function (&$rowdata, $actions) use ($data) {
101
+        $attPre = function(&$rowdata, $actions) use ($data) {
102 102
             $rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']);
103 103
             $attname = $rowdata->fields['attname'];
104 104
             $table = $_REQUEST['table'];
@@ -111,31 +111,31 @@  discard block
 block discarded – undo
111 111
             return $actions;
112 112
         };
113 113
 
114
-        $cstrRender = function ($s, $p) use ($misc, $data) {
114
+        $cstrRender = function($s, $p) use ($misc, $data) {
115 115
             $str = '';
116 116
             foreach ($p['keys'] as $k => $c) {
117 117
                 if (is_null($p['keys'][$k]['consrc'])) {
118 118
                     $atts = $data->getAttributeNames($_REQUEST['table'], explode(' ', $p['keys'][$k]['indkey']));
119
-                    $c['consrc'] = ($c['contype'] == 'u' ? 'UNIQUE (' : 'PRIMARY KEY (').implode(',', $atts).')';
119
+                    $c['consrc'] = ($c['contype'] == 'u' ? 'UNIQUE (' : 'PRIMARY KEY (') . implode(',', $atts) . ')';
120 120
                 }
121 121
 
122 122
                 if ($c['p_field'] == $s) {
123 123
                     switch ($c['contype']) {
124 124
                         case 'p':
125
-                            $str .= '<a href="constraints.php?'.$misc->href.'&amp;table='.urlencode($c['p_table']).'&amp;schema='.urlencode($c['p_schema']).'"><img src="'.
126
-                            $misc->icon('PrimaryKey').'" alt="[pk]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>';
125
+                            $str .= '<a href="constraints.php?' . $misc->href . '&amp;table=' . urlencode($c['p_table']) . '&amp;schema=' . urlencode($c['p_schema']) . '"><img src="' .
126
+                            $misc->icon('PrimaryKey') . '" alt="[pk]" title="' . htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') . '" /></a>';
127 127
                             break;
128 128
                         case 'f':
129
-                            $str .= '<a href="tblproperties.php?'.$misc->href.'&amp;table='.urlencode($c['f_table']).'&amp;schema='.urlencode($c['f_schema']).'"><img src="'.
130
-                            $misc->icon('ForeignKey').'" alt="[fk]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>';
129
+                            $str .= '<a href="tblproperties.php?' . $misc->href . '&amp;table=' . urlencode($c['f_table']) . '&amp;schema=' . urlencode($c['f_schema']) . '"><img src="' .
130
+                            $misc->icon('ForeignKey') . '" alt="[fk]" title="' . htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') . '" /></a>';
131 131
                             break;
132 132
                         case 'u':
133
-                            $str .= '<a href="constraints.php?'.$misc->href.'&amp;table='.urlencode($c['p_table']).'&amp;schema='.urlencode($c['p_schema']).'"><img src="'.
134
-                            $misc->icon('UniqueConstraint').'" alt="[uniq]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>';
133
+                            $str .= '<a href="constraints.php?' . $misc->href . '&amp;table=' . urlencode($c['p_table']) . '&amp;schema=' . urlencode($c['p_schema']) . '"><img src="' .
134
+                            $misc->icon('UniqueConstraint') . '" alt="[uniq]" title="' . htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') . '" /></a>';
135 135
                             break;
136 136
                         case 'c':
137
-                            $str .= '<a href="constraints.php?'.$misc->href.'&amp;table='.urlencode($c['p_table']).'&amp;schema='.urlencode($c['p_schema']).'"><img src="'.
138
-                            $misc->icon('CheckConstraint').'" alt="[check]" title="'.htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8').'" /></a>';
137
+                            $str .= '<a href="constraints.php?' . $misc->href . '&amp;table=' . urlencode($c['p_table']) . '&amp;schema=' . urlencode($c['p_schema']) . '"><img src="' .
138
+                            $misc->icon('CheckConstraint') . '" alt="[check]" title="' . htmlentities($c['consrc'], ENT_QUOTES, 'UTF-8') . '" /></a>';
139 139
                     }
140 140
                 }
141 141
             }
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
             'column'  => [
164 164
                 'title' => $lang['strcolumn'],
165 165
                 'field' => Decorator::field('attname'),
166
-                'url'   => "colproperties.php?subject=column&amp;{$misc->href}&amp;table=".urlencode($_REQUEST['table']).'&amp;',
166
+                'url'   => "colproperties.php?subject=column&amp;{$misc->href}&amp;table=" . urlencode($_REQUEST['table']) . '&amp;',
167 167
                 'vars'  => ['column' => 'attname'],
168 168
             ],
169 169
             'type'    => [
@@ -202,22 +202,22 @@  discard block
 block discarded – undo
202 202
         $actions = [
203 203
             'browse'     => [
204 204
                 'title' => $lang['strbrowse'],
205
-                'url'   => "display.php?{$misc->href}&amp;subject=column&amp;return=table&amp;table=".urlencode($_REQUEST['table']).'&amp;',
205
+                'url'   => "display.php?{$misc->href}&amp;subject=column&amp;return=table&amp;table=" . urlencode($_REQUEST['table']) . '&amp;',
206 206
                 'vars'  => ['column' => 'attname'],
207 207
             ],
208 208
             'alter'      => [
209 209
                 'title' => $lang['stralter'],
210
-                'url'   => "colproperties.php?action=properties&amp;{$misc->href}&amp;table=".urlencode($_REQUEST['table']).'&amp;',
210
+                'url'   => "colproperties.php?action=properties&amp;{$misc->href}&amp;table=" . urlencode($_REQUEST['table']) . '&amp;',
211 211
                 'vars'  => ['column' => 'attname'],
212 212
             ],
213 213
             'privileges' => [
214 214
                 'title' => $lang['strprivileges'],
215
-                'url'   => "privileges.php?subject=column&amp;{$misc->href}&amp;table=".urlencode($_REQUEST['table']).'&amp;',
215
+                'url'   => "privileges.php?subject=column&amp;{$misc->href}&amp;table=" . urlencode($_REQUEST['table']) . '&amp;',
216 216
                 'vars'  => ['column' => 'attname'],
217 217
             ],
218 218
             'drop'       => [
219 219
                 'title' => $lang['strdrop'],
220
-                'url'   => "tblproperties.php?action=confirm_drop&amp;{$misc->href}&amp;table=".urlencode($_REQUEST['table']).'&amp;',
220
+                'url'   => "tblproperties.php?action=confirm_drop&amp;{$misc->href}&amp;table=" . urlencode($_REQUEST['table']) . '&amp;',
221 221
                 'vars'  => ['column' => 'attname'],
222 222
             ],
223 223
         ];
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
                 $_POST['tablespace'] = $table->fields['tablespace'];
521 521
             }
522 522
 
523
-            echo '<form action="'.SUBFOLDER."/src/views/tblproperties.php\" method=\"post\">\n";
523
+            echo '<form action="' . SUBFOLDER . "/src/views/tblproperties.php\" method=\"post\">\n";
524 524
             echo "<table>\n";
525 525
             echo "<tr><th class=\"data left required\">{$lang['strname']}</th>\n";
526 526
             echo '<td class="data1">';
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
         $this->printTabs('table', 'export');
600 600
         $this->printMsg($msg);
601 601
 
602
-        echo '<form action="'.SUBFOLDER."/src/views/dataexport.php\" method=\"post\">\n";
602
+        echo '<form action="' . SUBFOLDER . "/src/views/dataexport.php\" method=\"post\">\n";
603 603
         echo "<table>\n";
604 604
         echo "<tr><th class=\"data\">{$lang['strformat']}</th><th class=\"data\" colspan=\"2\">{$lang['stroptions']}</th></tr>\n";
605 605
         // Data only
@@ -662,7 +662,7 @@  discard block
 block discarded – undo
662 662
             // Don't show upload option if max size of uploads is zero
663 663
             $max_size = $misc->inisizeToBytes(ini_get('upload_max_filesize'));
664 664
             if (is_float($max_size) && $max_size > 0) {
665
-                echo '<form action="'.SUBFOLDER."/src/views/dataimport.php\" method=\"post\" enctype=\"multipart/form-data\">\n";
665
+                echo '<form action="' . SUBFOLDER . "/src/views/dataimport.php\" method=\"post\" enctype=\"multipart/form-data\">\n";
666 666
                 echo "<table>\n";
667 667
                 echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strformat']}</th>\n";
668 668
                 echo "\t\t<td><select name=\"format\">\n";
@@ -741,8 +741,8 @@  discard block
 block discarded – undo
741 741
                 $this->printTitle($lang['straddcolumn'], 'pg.column.add');
742 742
                 $this->printMsg($msg);
743 743
 
744
-                echo '<script src="'.SUBFOLDER.'/js/tables.js" type="text/javascript"></script>';
745
-                echo '<form action="'.SUBFOLDER."/src/views/tblproperties.php\" method=\"post\">\n";
744
+                echo '<script src="' . SUBFOLDER . '/js/tables.js" type="text/javascript"></script>';
745
+                echo '<form action="' . SUBFOLDER . "/src/views/tblproperties.php\" method=\"post\">\n";
746 746
 
747 747
                 // Output table header
748 748
                 echo "<table>\n";
@@ -808,7 +808,7 @@  discard block
 block discarded – undo
808 808
                 echo "<input type=\"submit\" value=\"{$lang['stradd']}\" />\n";
809 809
                 echo "<input type=\"submit\" name=\"cancel\" value=\"{$lang['strcancel']}\" /></p>\n";
810 810
                 echo "</form>\n";
811
-                echo '<script type="text/javascript">predefined_lengths = new Array('.implode(',', $escaped_predef_types).");checkLengths(document.getElementById('type').value,'');</script>\n";
811
+                echo '<script type="text/javascript">predefined_lengths = new Array(' . implode(',', $escaped_predef_types) . ");checkLengths(document.getElementById('type').value,'');</script>\n";
812 812
                 break;
813 813
             case 2:
814 814
                 // Check inputs
@@ -857,7 +857,7 @@  discard block
 block discarded – undo
857 857
             echo '<p>', sprintf($lang['strconfdropcolumn'], $misc->printVal($_REQUEST['column']),
858 858
                 $misc->printVal($_REQUEST['table'])), "</p>\n";
859 859
 
860
-            echo '<form action="'.SUBFOLDER."/src/views/tblproperties.php\" method=\"post\">\n";
860
+            echo '<form action="' . SUBFOLDER . "/src/views/tblproperties.php\" method=\"post\">\n";
861 861
             echo "<input type=\"hidden\" name=\"action\" value=\"drop\" />\n";
862 862
             echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), "\" />\n";
863 863
             echo '<input type="hidden" name="column" value="', htmlspecialchars($_REQUEST['column']), "\" />\n";
Please login to merge, or discard this patch.
src/controllers/TablesController.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
             'table'      => [
147 147
                 'title' => $lang['strtable'],
148 148
                 'field' => Decorator::field('relname'),
149
-                'url'   => SUBFOLDER."/redirect/table?{$misc->href}&amp;",
149
+                'url'   => SUBFOLDER . "/redirect/table?{$misc->href}&amp;",
150 150
                 'vars'  => ['table' => 'relname'],
151 151
             ],
152 152
             'owner'      => [
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
                 $this->printTitle($lang['strcreatetable'], 'pg.table.create');
445 445
                 $this->printMsg($msg);
446 446
 
447
-                echo '<form action="'.SUBFOLDER.'/src/views/'.$this->script.'" method="post">';
447
+                echo '<form action="' . SUBFOLDER . '/src/views/' . $this->script . '" method="post">';
448 448
                 echo "\n";
449 449
                 echo "<table>\n";
450 450
                 echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
@@ -508,8 +508,8 @@  discard block
 block discarded – undo
508 508
                 $this->printTitle($lang['strcreatetable'], 'pg.table.create');
509 509
                 $this->printMsg($msg);
510 510
 
511
-                echo '<script src="'.SUBFOLDER.'/js/tables.js" type="text/javascript"></script>';
512
-                echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
511
+                echo '<script src="' . SUBFOLDER . '/js/tables.js" type="text/javascript"></script>';
512
+                echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
513 513
 
514 514
                 // Output table header
515 515
                 echo "<table>\n";
@@ -563,7 +563,7 @@  discard block
 block discarded – undo
563 563
                         foreach ($predefined_size_types as $value) {
564 564
                             $escaped_predef_types[] = "'{$value}'";
565 565
                         }
566
-                        echo '<script type="text/javascript">predefined_lengths = new Array('.implode(',', $escaped_predef_types).");</script>\n\t</td>";
566
+                        echo '<script type="text/javascript">predefined_lengths = new Array(' . implode(',', $escaped_predef_types) . ");</script>\n\t</td>";
567 567
                     }
568 568
 
569 569
                     // Output array type selector
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
                     htmlspecialchars($_REQUEST['length'][$i]), "\" /></td>\n";
577 577
                     echo "\t\t<td><input type=\"checkbox\" name=\"notnull[{$i}]\"", (isset($_REQUEST['notnull'][$i])) ? ' checked="checked"' : '', " /></td>\n";
578 578
                     echo "\t\t<td style=\"text-align: center\"><input type=\"checkbox\" name=\"uniquekey[{$i}]\""
579
-                        .(isset($_REQUEST['uniquekey'][$i]) ? ' checked="checked"' : '')." /></td>\n";
579
+                        .(isset($_REQUEST['uniquekey'][$i]) ? ' checked="checked"' : '') . " /></td>\n";
580 580
                     echo "\t\t<td style=\"text-align: center\"><input type=\"checkbox\" name=\"primarykey[{$i}]\" "
581 581
                         .(isset($_REQUEST['primarykey'][$i]) ? ' checked="checked"' : '')
582 582
                         ." /></td>\n";
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
 
714 714
             unset($tbltmp);
715 715
 
716
-            echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
716
+            echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
717 717
             echo "<table>\n\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
718 718
             echo "\t\t<td class=\"data\"><input name=\"name\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"", htmlspecialchars($_REQUEST['name']), "\" /></td>\n\t</tr>\n";
719 719
             echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strcreatetablelikeparent']}</th>\n";
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
 
806 806
             $attrs = $data->getTableAttributes($_REQUEST['table']);
807 807
 
808
-            echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\" id=\"selectform\">\n";
808
+            echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\" id=\"selectform\">\n";
809 809
             if ($attrs->recordCount() > 0) {
810 810
                 // JavaScript for select all feature
811 811
                 echo "<script type=\"text/javascript\">\n";
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
                 $fksprops = false;
943 943
             }
944 944
 
945
-            echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\" id=\"ac_form\">\n";
945
+            echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\" id=\"ac_form\">\n";
946 946
             if ($attrs->recordCount() > 0) {
947 947
                 echo "<table>\n";
948 948
 
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
 
1013 1013
                 echo "<input type=\"hidden\" name=\"action\" value=\"insertrow\" />\n";
1014 1014
                 echo '<input type="hidden" name="fields" value="', htmlentities(serialize($fields), ENT_QUOTES, 'UTF-8'), "\" />\n";
1015
-                echo '<input type="hidden" name="protection_counter" value="'.$_SESSION['counter']."\" />\n";
1015
+                echo '<input type="hidden" name="protection_counter" value="' . $_SESSION['counter'] . "\" />\n";
1016 1016
                 echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), "\" />\n";
1017 1017
                 echo "<p><input type=\"submit\" name=\"insert\" value=\"{$lang['strinsert']}\" />\n";
1018 1018
                 echo "<input type=\"submit\" name=\"insertandrepeat\" accesskey=\"r\" value=\"{$lang['strinsertandrepeat']}\" />\n";
@@ -1082,7 +1082,7 @@  discard block
 block discarded – undo
1082 1082
                 $this->printTrail('schema');
1083 1083
                 $this->printTitle($lang['strempty'], 'pg.table.empty');
1084 1084
 
1085
-                echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
1085
+                echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
1086 1086
                 foreach ($_REQUEST['ma'] as $v) {
1087 1087
                     $a = unserialize(htmlspecialchars_decode($v, ENT_QUOTES));
1088 1088
                     echo '<p>', sprintf($lang['strconfemptytable'], $misc->printVal($a['table'])), "</p>\n";
@@ -1095,7 +1095,7 @@  discard block
 block discarded – undo
1095 1095
 
1096 1096
                 echo '<p>', sprintf($lang['strconfemptytable'], $misc->printVal($_REQUEST['table'])), "</p>\n";
1097 1097
 
1098
-                echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
1098
+                echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
1099 1099
                 echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), "\" />\n";
1100 1100
             } // END not mutli empty
1101 1101
 
@@ -1152,7 +1152,7 @@  discard block
 block discarded – undo
1152 1152
                 $this->printTrail('schema');
1153 1153
                 $this->printTitle($lang['strdrop'], 'pg.table.drop');
1154 1154
 
1155
-                echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
1155
+                echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
1156 1156
                 foreach ($_REQUEST['ma'] as $v) {
1157 1157
                     $a = unserialize(htmlspecialchars_decode($v, ENT_QUOTES));
1158 1158
                     echo '<p>', sprintf($lang['strconfdroptable'], $misc->printVal($a['table'])), "</p>\n";
@@ -1164,7 +1164,7 @@  discard block
 block discarded – undo
1164 1164
 
1165 1165
                 echo '<p>', sprintf($lang['strconfdroptable'], $misc->printVal($_REQUEST['table'])), "</p>\n";
1166 1166
 
1167
-                echo '<form action="'.SUBFOLDER."/src/views/tables.php\" method=\"post\">\n";
1167
+                echo '<form action="' . SUBFOLDER . "/src/views/tables.php\" method=\"post\">\n";
1168 1168
                 echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), "\" />\n";
1169 1169
             } // END if multi drop
1170 1170
 
Please login to merge, or discard this patch.
src/controllers/BaseController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -330,7 +330,7 @@
 block discarded – undo
330 330
         $html = '';
331 331
         $msg = htmlspecialchars(\PHPPgAdmin\HelperTrait::br2ln($msg));
332 332
         if ($msg != '') {
333
-            $html .= '<p class="message">'.nl2br($msg).'</p>'."\n";
333
+            $html .= '<p class="message">' . nl2br($msg) . '</p>' . "\n";
334 334
         }
335 335
         if ($do_print) {
336 336
             echo $html;
Please login to merge, or discard this patch.
src/controllers/SqlController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
          *
121 121
          * @param ADORecordSet $rs The recordset returned by the script execetor
122 122
          */
123
-        $sqlCallback = function ($query, $rs, $lineno) use ($data, $misc, $lang, $_connection) {
123
+        $sqlCallback = function($query, $rs, $lineno) use ($data, $misc, $lang, $_connection) {
124 124
 
125 125
             // Check if $rs is false, if so then there was a fatal error
126 126
             if ($rs === false) {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 
187 187
         $rs = $data->conn->Execute($this->query);
188 188
 
189
-        echo '<form method="post" id="sqlform" action="'.$_SERVER['REQUEST_URI'].'">';
189
+        echo '<form method="post" id="sqlform" action="' . $_SERVER['REQUEST_URI'] . '">';
190 190
         echo '<textarea width="90%" name="query"  id="query" rows="5" cols="100" resizable="true">';
191 191
 
192 192
         echo htmlspecialchars($this->query);
Please login to merge, or discard this patch.
src/controllers/SchemasController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             'schema'  => [
98 98
                 'title' => $lang['strschema'],
99 99
                 'field' => Decorator::field('nspname'),
100
-                'url'   => SUBFOLDER."/redirect/schema?{$misc->href}&amp;",
100
+                'url'   => SUBFOLDER . "/redirect/schema?{$misc->href}&amp;",
101 101
                 'vars'  => ['schema' => 'nspname'],
102 102
             ],
103 103
             'owner'   => [
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
         $this->printTitle($lang['strcreateschema'], 'pg.schema.create');
284 284
         $this->printMsg($msg);
285 285
 
286
-        echo '<form action="'.SUBFOLDER.'/src/views/schemas.php" method="post">'."\n";
286
+        echo '<form action="' . SUBFOLDER . '/src/views/schemas.php" method="post">' . "\n";
287 287
         echo "<table style=\"width: 100%\">\n";
288 288
         echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
289 289
         echo "\t\t<td class=\"data1\"><input name=\"formName\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"",
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                 $_POST['owner'] = $schema->fields['ownername'];
369 369
             }
370 370
 
371
-            echo '<form action="'.SUBFOLDER.'/src/views/schemas.php" method="post">'."\n";
371
+            echo '<form action="' . SUBFOLDER . '/src/views/schemas.php" method="post">' . "\n";
372 372
             echo "<table>\n";
373 373
 
374 374
             echo "\t<tr>\n";
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
             $this->printTrail('schema');
447 447
             $this->printTitle($lang['strdrop'], 'pg.schema.drop');
448 448
 
449
-            echo '<form action="'.SUBFOLDER.'/src/views/schemas.php" method="post">'."\n";
449
+            echo '<form action="' . SUBFOLDER . '/src/views/schemas.php" method="post">' . "\n";
450 450
             //If multi drop
451 451
             if (isset($_REQUEST['ma'])) {
452 452
                 foreach ($_REQUEST['ma'] as $v) {
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
         $this->printTabs('schema', 'export');
516 516
         $this->printMsg($msg);
517 517
 
518
-        echo '<form action="'.SUBFOLDER.'/src/views/dbexport.php" method="post">'."\n";
518
+        echo '<form action="' . SUBFOLDER . '/src/views/dbexport.php" method="post">' . "\n";
519 519
 
520 520
         echo "<table>\n";
521 521
         echo "<tr><th class=\"data\">{$lang['strformat']}</th><th class=\"data\" colspan=\"2\">{$lang['stroptions']}</th></tr>\n";
Please login to merge, or discard this patch.
src/controllers/AlldbController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             'database'   => [
92 92
                 'title' => $lang['strdatabase'],
93 93
                 'field' => Decorator::field('datname'),
94
-                'url'   => SUBFOLDER."/redirect/database?{$misc->href}&amp;",
94
+                'url'   => SUBFOLDER . "/redirect/database?{$misc->href}&amp;",
95 95
                 'vars'  => ['database' => 'datname'],
96 96
             ],
97 97
             'owner'      => [
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
             $this->printTrail('database');
252 252
             $this->printTitle($lang['stralter'], 'pg.database.alter');
253 253
 
254
-            echo '<form action="'.SUBFOLDER."/src/views/alldb.php\" method=\"post\">\n";
254
+            echo '<form action="' . SUBFOLDER . "/src/views/alldb.php\" method=\"post\">\n";
255 255
             echo "<table>\n";
256 256
             echo "<tr><th class=\"data left required\">{$lang['strname']}</th>\n";
257 257
             echo '<td class="data1">';
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             $this->printTrail('database');
329 329
             $this->printTitle($lang['strdrop'], 'pg.database.drop');
330 330
 
331
-            echo '<form action="'.SUBFOLDER."/src/views/alldb.php\" method=\"post\">\n";
331
+            echo '<form action="' . SUBFOLDER . "/src/views/alldb.php\" method=\"post\">\n";
332 332
             //If multi drop
333 333
             if (isset($_REQUEST['ma'])) {
334 334
                 foreach ($_REQUEST['ma'] as $v) {
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
             $tablespaces = $data->getTablespaces();
420 420
         }
421 421
 
422
-        echo '<form action="'.SUBFOLDER."/src/views/alldb.php\" method=\"post\">\n";
422
+        echo '<form action="' . SUBFOLDER . "/src/views/alldb.php\" method=\"post\">\n";
423 423
         echo "<table>\n";
424 424
         echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
425 425
         echo "\t\t<td class=\"data1\"><input name=\"formName\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"",
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
         $this->printTabs('server', 'export');
572 572
         $this->printMsg($msg);
573 573
 
574
-        echo '<form action="'.SUBFOLDER."/src/views/dbexport.php\" method=\"post\">\n";
574
+        echo '<form action="' . SUBFOLDER . "/src/views/dbexport.php\" method=\"post\">\n";
575 575
         echo "<table>\n";
576 576
         echo "<tr><th class=\"data\">{$lang['strformat']}</th><th class=\"data\">{$lang['stroptions']}</th></tr>\n";
577 577
         // Data only
Please login to merge, or discard this patch.