Passed
Push — 1.10.x ( 04397c...5e25f1 )
by Angel Fernando Quiroz
181:14 queued 130:00
created
main/inc/lib/pear/HTML/Table.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
      */
165 165
     function HTML_Table($attributes = null, $tabOffset = 0, $useTGroups = false)
166 166
     {
167
-        parent::__construct($attributes, (int)$tabOffset);
168
-        $this->_useTGroups = (boolean)$useTGroups;
167
+        parent::__construct($attributes, (int) $tabOffset);
168
+        $this->_useTGroups = (boolean) $useTGroups;
169 169
         $this->addBody();
170 170
         if ($this->_useTGroups) {
171 171
             $this->_thead = new HTML_Table_Storage($tabOffset, $this->_useTGroups);
@@ -272,12 +272,12 @@  discard block
 block discarded – undo
272 272
     function _adjustTbodyCount($body, $method)
273 273
     {
274 274
         if ($this->_autoGrow) {
275
-            while ($this->_tbodyCount <= (int)$body) {
275
+            while ($this->_tbodyCount <= (int) $body) {
276 276
                 $this->addBody();
277 277
             }
278 278
         } else {
279
-            return PEAR::raiseError('Invalid body reference[' .
280
-                $body . '] in HTML_Table::' . $method);
279
+            return PEAR::raiseError('Invalid body reference['.
280
+                $body.'] in HTML_Table::'.$method);
281 281
         }
282 282
     }
283 283
 
@@ -939,26 +939,26 @@  discard block
 block discarded – undo
939 939
             $tBodyMaxColCount = max($tBodyColCounts);
940 940
         }
941 941
         if ($this->_comment) {
942
-            $strHtml .= $tabs . "<!-- $this->_comment -->" . $lnEnd;
942
+            $strHtml .= $tabs."<!-- $this->_comment -->".$lnEnd;
943 943
         }
944 944
         if ($this->getRowCount() > 0 && $tBodyMaxColCount > 0) {
945 945
             $strHtml .=
946
-                $tabs . '<table' . $this->_getAttrString($this->_attributes) . '>' . $lnEnd;
946
+                $tabs.'<table'.$this->_getAttrString($this->_attributes).'>'.$lnEnd;
947 947
             if (!empty($this->_caption)) {
948 948
                 $attr = $this->_caption['attr'];
949 949
                 $contents = $this->_caption['contents'];
950
-                $strHtml .= $tabs . $tab . '<caption' . $this->_getAttrString($attr) . '>';
950
+                $strHtml .= $tabs.$tab.'<caption'.$this->_getAttrString($attr).'>';
951 951
                 if (is_array($contents)) {
952 952
                     $contents = implode(', ', $contents);
953 953
                 }
954 954
                 $strHtml .= $contents;
955
-                $strHtml .= '</caption>' . $lnEnd;
955
+                $strHtml .= '</caption>'.$lnEnd;
956 956
             }
957 957
             if (!empty($this->_colgroup)) {
958 958
                 foreach ($this->_colgroup as $g => $col) {
959 959
                     $attr = $this->_colgroup[$g]['attr'];
960 960
                     $contents = $this->_colgroup[$g]['contents'];
961
-                    $strHtml .= $tabs . $tab . '<colgroup' . $this->_getAttrString($attr) . '>';
961
+                    $strHtml .= $tabs.$tab.'<colgroup'.$this->_getAttrString($attr).'>';
962 962
                     if (!empty($contents)) {
963 963
                         $strHtml .= $lnEnd;
964 964
                         if (!is_array($contents)) {
@@ -966,11 +966,11 @@  discard block
 block discarded – undo
966 966
                         }
967 967
                         foreach ($contents as $a => $colAttr) {
968 968
                             $attr = $this->_parseAttributes($colAttr);
969
-                            $strHtml .= $tabs . $tab . $tab . '<col' . $this->_getAttrString($attr) . ' />' . $lnEnd;
969
+                            $strHtml .= $tabs.$tab.$tab.'<col'.$this->_getAttrString($attr).' />'.$lnEnd;
970 970
                         }
971
-                        $strHtml .= $tabs . $tab;
971
+                        $strHtml .= $tabs.$tab;
972 972
                     }
973
-                    $strHtml .= '</colgroup>' . $lnEnd;
973
+                    $strHtml .= '</colgroup>'.$lnEnd;
974 974
                 }
975 975
             }
976 976
             if ($this->_useTGroups) {
@@ -986,31 +986,31 @@  discard block
 block discarded – undo
986 986
                 if ($this->_thead !== null) {
987 987
                     $this->_thead->setColCount($maxColCount);
988 988
                     if ($this->_thead->getRowCount() > 0) {
989
-                        $strHtml .= $tabs . $tab . '<thead' .
990
-                                    $this->_getAttrString($this->_thead->_attributes) .
991
-                                    '>' . $lnEnd;
989
+                        $strHtml .= $tabs.$tab.'<thead'.
990
+                                    $this->_getAttrString($this->_thead->_attributes).
991
+                                    '>'.$lnEnd;
992 992
                         $strHtml .= $this->_thead->toHtml($tabs, $tab);
993
-                        $strHtml .= $tabs . $tab . '</thead>' . $lnEnd;
993
+                        $strHtml .= $tabs.$tab.'</thead>'.$lnEnd;
994 994
                     }
995 995
                 }
996 996
                 if ($this->_tfoot !== null) {
997 997
                     $this->_tfoot->setColCount($maxColCount);
998 998
                     if ($this->_tfoot->getRowCount() > 0) {
999
-                        $strHtml .= $tabs . $tab . '<tfoot' .
1000
-                                    $this->_getAttrString($this->_tfoot->_attributes) .
1001
-                                    '>' . $lnEnd;
999
+                        $strHtml .= $tabs.$tab.'<tfoot'.
1000
+                                    $this->_getAttrString($this->_tfoot->_attributes).
1001
+                                    '>'.$lnEnd;
1002 1002
                         $strHtml .= $this->_tfoot->toHtml($tabs, $tab);
1003
-                        $strHtml .= $tabs . $tab . '</tfoot>' . $lnEnd;
1003
+                        $strHtml .= $tabs.$tab.'</tfoot>'.$lnEnd;
1004 1004
                     }
1005 1005
                 }
1006 1006
                 for ($i = 0; $i < $this->_tbodyCount; $i++) {
1007 1007
                     $this->_tbodies[$i]->setColCount($maxColCount);
1008 1008
                     if ($this->_tbodies[$i]->getRowCount() > 0) {
1009
-                        $strHtml .= $tabs . $tab . '<tbody' .
1010
-                                    $this->_getAttrString($this->_tbodies[$i]->_attributes) .
1011
-                                    '>' . $lnEnd;
1009
+                        $strHtml .= $tabs.$tab.'<tbody'.
1010
+                                    $this->_getAttrString($this->_tbodies[$i]->_attributes).
1011
+                                    '>'.$lnEnd;
1012 1012
                         $strHtml .= $this->_tbodies[$i]->toHtml($tabs, $tab);
1013
-                        $strHtml .= $tabs . $tab . '</tbody>' . $lnEnd;
1013
+                        $strHtml .= $tabs.$tab.'</tbody>'.$lnEnd;
1014 1014
                     }
1015 1015
                 }
1016 1016
             } else {
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
                     $strHtml .= $this->_tbodies[$i]->toHtml($tabs, $tab);
1020 1020
                 }
1021 1021
             }
1022
-            $strHtml .= $tabs . '</table>' . $lnEnd;
1022
+            $strHtml .= $tabs.'</table>'.$lnEnd;
1023 1023
         }
1024 1024
         return $strHtml;
1025 1025
     }
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/Common.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             foreach ($attributes as $key => $value) {
144 144
             	// Modified by Ivan Tcholakov, 16-MAR-2010
145 145
                 $value = @htmlspecialchars($value, ENT_COMPAT, $charset);
146
-                $strAttr .= ' ' . $key . '= "' . $value. '"';
146
+                $strAttr .= ' '.$key.'= "'.$value.'"';
147 147
             }
148 148
         }
149 149
         return $strAttr;
@@ -170,10 +170,10 @@  discard block
 block discarded – undo
170 170
             return $ret;
171 171
 
172 172
         } elseif (is_string($attributes)) {
173
-            $preg = "/(([A-Za-z_:]|[^\\x00-\\x7F])([A-Za-z0-9_:.-]|[^\\x00-\\x7F])*)" .
173
+            $preg = "/(([A-Za-z_:]|[^\\x00-\\x7F])([A-Za-z0-9_:.-]|[^\\x00-\\x7F])*)".
174 174
                 "([ \\n\\t\\r]+)?(=([ \\n\\t\\r]+)?(\"[^\"]*\"|'[^']*'|[^ \\n\\t\\r]*))?/";
175 175
             if (preg_match_all($preg, $attributes, $regs)) {
176
-                for ($counter=0; $counter<count($regs[1]); $counter++) {
176
+                for ($counter = 0; $counter < count($regs[1]); $counter++) {
177 177
                     $name  = $regs[1][$counter];
178 178
                     $check = $regs[0][$counter];
179 179
                     $value = $regs[7][$counter];
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/element.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
         //return ('' != $value? htmlspecialchars($value): '&nbsp;') .
289 289
         //       $this->_getPersistantData();
290 290
 
291
-        $value =  ('' != $value ? @htmlspecialchars($value, ENT_COMPAT, HTML_Common::charset()): '&nbsp;') .
291
+        $value = ('' != $value ? @htmlspecialchars($value, ENT_COMPAT, HTML_Common::charset()) : '&nbsp;').
292 292
                $this->_getPersistantData();
293 293
         return '<span class="freeze">'.$value.'</span>';
294 294
         //
@@ -309,11 +309,11 @@  discard block
 block discarded – undo
309 309
             return '';
310 310
         } else {
311 311
             $id = $this->getAttribute('id');
312
-            return '<input' . $this->_getAttrString(array(
312
+            return '<input'.$this->_getAttrString(array(
313 313
                        'type'  => 'hidden',
314 314
                        'name'  => $this->getName(),
315 315
                        'value' => $this->getValue()
316
-                   ) + (isset($id)? array('id' => $id): array())) . ' />';
316
+                   ) + (isset($id) ? array('id' => $id) : array())).' />';
317 317
         }
318 318
     }
319 319
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
      * @access    public
345 345
      * @return    void
346 346
      */
347
-    function setPersistantFreeze($persistant=false)
347
+    function setPersistantFreeze($persistant = false)
348 348
     {
349 349
         $this->_persistantFreeze = $persistant;
350 350
     } //end func setPersistantFreeze
@@ -414,10 +414,10 @@  discard block
 block discarded – undo
414 414
         if (isset($values[$elementName])) {
415 415
             return $values[$elementName];
416 416
         } elseif (strpos($elementName, '[')) {
417
-            $myVar = "['" . str_replace(
417
+            $myVar = "['".str_replace(
418 418
                          array('\\', '\'', ']', '['), array('\\\\', '\\\'', '', "']['"),
419 419
                          $elementName
420
-                     ) . "']";
420
+                     )."']";
421 421
             return eval("return (isset(\$values$myVar)) ? \$values$myVar : null;");
422 422
         } else {
423 423
             return null;
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
     * @access public
481 481
     * @return void
482 482
     */
483
-    function accept(&$renderer, $required=false, $error=null)
483
+    function accept(&$renderer, $required = false, $error = null)
484 484
     {
485 485
         $renderer->renderElement($this, $required, $error);
486 486
     }
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
         static $idx = 1;
500 500
 
501 501
         if (!$this->getAttribute('id')) {
502
-            $this->updateAttributes(array('id' => 'qf_' . substr(md5(microtime() . $idx++), 0, 6)));
502
+            $this->updateAttributes(array('id' => 'qf_'.substr(md5(microtime().$idx++), 0, 6)));
503 503
         }
504 504
     }
505 505
 
@@ -543,10 +543,10 @@  discard block
 block discarded – undo
543 543
                 return array($name => $value);
544 544
             } else {
545 545
                 $valueAry = array();
546
-                $myIndex  = "['" . str_replace(
546
+                $myIndex  = "['".str_replace(
547 547
                                 array('\\', '\'', ']', '['), array('\\\\', '\\\'', '', "']['"),
548 548
                                 $name
549
-                            ) . "']";
549
+                            )."']";
550 550
                 eval("\$valueAry$myIndex = \$value;");
551 551
                 return $valueAry;
552 552
             }
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/hierselect.php 1 patch
Spacing   +28 added lines, -29 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * @access    public
84 84
      * @return    void
85 85
      */
86
-    function HTML_QuickForm_hierselect($elementName=null, $elementLabel=null, $attributes=null, $separator=null)
86
+    function HTML_QuickForm_hierselect($elementName = null, $elementLabel = null, $attributes = null, $separator = null)
87 87
     {
88 88
         $this->HTML_QuickForm_element($elementName, $elementLabel, $attributes);
89 89
         $this->_persistantFreeze = true;
@@ -154,8 +154,8 @@  discard block
 block discarded – undo
154 154
             // setDefaults has probably been called before this function
155 155
             // check if all elements have been created
156 156
             $totalNbElements = count($this->_options);
157
-            for ($i = $this->_nbElements; $i < $totalNbElements; $i ++) {
158
-                $this->_elements[] =& new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
157
+            for ($i = $this->_nbElements; $i < $totalNbElements; $i++) {
158
+                $this->_elements[] = & new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
159 159
                 $this->_nbElements++;
160 160
             }
161 161
         }
@@ -209,8 +209,8 @@  discard block
 block discarded – undo
209 209
             // setDefaults has probably been called before this function
210 210
             // check if all elements have been created
211 211
             $totalNbElements = 2;
212
-            for ($i = $this->_nbElements; $i < $totalNbElements; $i ++) {
213
-                $this->_elements[] =& new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
212
+            for ($i = $this->_nbElements; $i < $totalNbElements; $i++) {
213
+                $this->_elements[] = & new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
214 214
                 $this->_nbElements++;
215 215
             }
216 216
         }
@@ -233,12 +233,12 @@  discard block
 block discarded – undo
233 233
         foreach (array_keys($this->_elements) AS $key) {
234 234
             $array = eval("return isset(\$this->_options[{$key}]{$toLoad})? \$this->_options[{$key}]{$toLoad}: null;");
235 235
             if (is_array($array)) {
236
-                $select =& $this->_elements[$key];
236
+                $select = & $this->_elements[$key];
237 237
                 $select->_options = array();
238 238
                 $select->loadArray($array);
239 239
 
240
-                $value  = is_array($v = $select->getValue()) ? $v[0] : key($array);
241
-                $toLoad .= '[\'' . str_replace(array('\\', '\''), array('\\\\', '\\\''), $value) . '\']';
240
+                $value = is_array($v = $select->getValue()) ? $v[0] : key($array);
241
+                $toLoad .= '[\''.str_replace(array('\\', '\''), array('\\\\', '\\\''), $value).'\']';
242 242
             }
243 243
         }
244 244
     } // end func _setOptions
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
     function _createElements()
278 278
     {
279 279
         for ($i = 0; $i < $this->_nbElements; $i++) {
280
-            $this->_elements[] =& new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
280
+            $this->_elements[] = & new HTML_QuickForm_select($i, null, array(), $this->getAttributes());
281 281
         }
282 282
     } // end func _createElements
283 283
 
@@ -292,10 +292,10 @@  discard block
 block discarded – undo
292 292
             $keys     = array_keys($this->_elements);
293 293
             $onChange = array();
294 294
             for ($i = 0; $i < count($keys) - 1; $i++) {
295
-                $select =& $this->_elements[$keys[$i]];
295
+                $select = & $this->_elements[$keys[$i]];
296 296
                 $onChange[$i] = $select->getAttribute('onchange');
297 297
                 $select->updateAttributes(
298
-                    array('onchange' => '_hs_swapOptions(this.form, \'' . $this->_escapeString($this->getName()) . '\', ' . $keys[$i] . ');' . $onChange[$i])
298
+                    array('onchange' => '_hs_swapOptions(this.form, \''.$this->_escapeString($this->getName()).'\', '.$keys[$i].');'.$onChange[$i])
299 299
                 );
300 300
             }
301 301
 
@@ -433,37 +433,36 @@  discard block
 block discarded – undo
433 433
             for ($i = 1; $i < $this->_nbElements; $i++) {
434 434
                 $jsParts[] = $this->_convertArrayToJavascript($this->_options[$i]);
435 435
             }
436
-            $this->_js .= "\n_hs_options['" . $this->_escapeString($this->getName()) . "'] = [\n" .
437
-                          implode(",\n", $jsParts) .
436
+            $this->_js .= "\n_hs_options['".$this->_escapeString($this->getName())."'] = [\n".
437
+                          implode(",\n", $jsParts).
438 438
                           "\n];\n";
439 439
             // default value; if we don't actually have any values yet just use
440 440
             // the first option (for single selects) or empty array (for multiple)
441 441
             $values = array();
442 442
             foreach (array_keys($this->_elements) as $key) {
443 443
                 if (is_array($v = $this->_elements[$key]->getValue())) {
444
-                    $values[] = count($v) > 1? $v: $v[0];
444
+                    $values[] = count($v) > 1 ? $v : $v[0];
445 445
                 } else {
446 446
                     // XXX: accessing the supposedly private _options array
447
-                    $values[] = $this->_elements[$key]->getMultiple() || empty($this->_elements[$key]->_options[0])?
448
-                                array():
449
-                                $this->_elements[$key]->_options[0]['attr']['value'];
447
+                    $values[] = $this->_elements[$key]->getMultiple() || empty($this->_elements[$key]->_options[0]) ?
448
+                                array() : $this->_elements[$key]->_options[0]['attr']['value'];
450 449
                 }
451 450
             }
452
-            $this->_js .= "_hs_defaults['" . $this->_escapeString($this->getName()) . "'] = " .
453
-                          $this->_convertArrayToJavascript($values, false) . ";\n";
451
+            $this->_js .= "_hs_defaults['".$this->_escapeString($this->getName())."'] = ".
452
+                          $this->_convertArrayToJavascript($values, false).";\n";
454 453
         }
455 454
         include_once('HTML/QuickForm/Renderer/Default.php');
456
-        $renderer =& new HTML_QuickForm_Renderer_Default();
455
+        $renderer = & new HTML_QuickForm_Renderer_Default();
457 456
         $renderer->setElementTemplate('{element}');
458 457
         parent::accept($renderer);
459 458
 
460 459
         if (!empty($onChange)) {
461
-            $keys     = array_keys($this->_elements);
460
+            $keys = array_keys($this->_elements);
462 461
             for ($i = 0; $i < count($keys) - 1; $i++) {
463 462
                 $this->_elements[$keys[$i]]->updateAttributes(array('onchange' => $onChange[$i]));
464 463
             }
465 464
         }
466
-        return (empty($this->_js)? '': "<script type=\"text/javascript\">\n//<![CDATA[\n" . $this->_js . "//]]>\n</script>") .
465
+        return (empty($this->_js) ? '' : "<script type=\"text/javascript\">\n//<![CDATA[\n".$this->_js."//]]>\n</script>").
467 466
                $renderer->toHtml();
468 467
     } // end func toHtml
469 468
 
@@ -491,12 +490,12 @@  discard block
 block discarded – undo
491 490
                 $onReset = $caller->getAttribute('onreset');
492 491
                 if (strlen($onReset)) {
493 492
                     if (strpos($onReset, '_hs_setupOnReset')) {
494
-                        $caller->updateAttributes(array('onreset' => str_replace('_hs_setupOnReset(this, [', "_hs_setupOnReset(this, ['" . $this->_escapeString($this->getName()) . "', ", $onReset)));
493
+                        $caller->updateAttributes(array('onreset' => str_replace('_hs_setupOnReset(this, [', "_hs_setupOnReset(this, ['".$this->_escapeString($this->getName())."', ", $onReset)));
495 494
                     } else {
496
-                        $caller->updateAttributes(array('onreset' => "var temp = function() { {$onReset} } ; if (!temp()) { return false; } ; if (typeof _hs_setupOnReset != 'undefined') { return _hs_setupOnReset(this, ['" . $this->_escapeString($this->getName()) . "']); } "));
495
+                        $caller->updateAttributes(array('onreset' => "var temp = function() { {$onReset} } ; if (!temp()) { return false; } ; if (typeof _hs_setupOnReset != 'undefined') { return _hs_setupOnReset(this, ['".$this->_escapeString($this->getName())."']); } "));
497 496
                     }
498 497
                 } else {
499
-                    $caller->updateAttributes(array('onreset' => "if (typeof _hs_setupOnReset != 'undefined') { return _hs_setupOnReset(this, ['" . $this->_escapeString($this->getName()) . "']); } "));
498
+                    $caller->updateAttributes(array('onreset' => "if (typeof _hs_setupOnReset != 'undefined') { return _hs_setupOnReset(this, ['".$this->_escapeString($this->getName())."']); } "));
500 499
                 }
501 500
             }
502 501
             return $ret;
@@ -521,7 +520,7 @@  discard block
 block discarded – undo
521 520
         } else {
522 521
             $items = array();
523 522
             foreach ($array as $key => $val) {
524
-                $item = $assoc? "'" . $this->_escapeString($key) . "': ": '';
523
+                $item = $assoc ? "'".$this->_escapeString($key)."': " : '';
525 524
                 if (is_array($val)) {
526 525
                     $item .= $this->_convertArrayToJavascript($val, $assoc);
527 526
                 } else {
@@ -531,7 +530,7 @@  discard block
 block discarded – undo
531 530
             }
532 531
         }
533 532
         $js = implode(', ', $items);
534
-        return $assoc? '{ ' . $js . ' }': '[' . $js . ']';
533
+        return $assoc ? '{ '.$js.' }' : '['.$js.']';
535 534
     }
536 535
 
537 536
     // }}}
@@ -551,7 +550,7 @@  discard block
 block discarded – undo
551 550
         } elseif (is_int($val) || is_double($val)) {
552 551
             return $val;
553 552
         } elseif (is_string($val)) {
554
-            return "'" . $this->_escapeString($val) . "'";
553
+            return "'".$this->_escapeString($val)."'";
555 554
         } elseif (is_null($val)) {
556 555
             return 'null';
557 556
         } else {
@@ -572,7 +571,7 @@  discard block
 block discarded – undo
572 571
     */
573 572
     function _escapeString($str)
574 573
     {
575
-        return strtr($str,array(
574
+        return strtr($str, array(
576 575
             "\r"    => '\r',
577 576
             "\n"    => '\n',
578 577
             "\t"    => '\t',
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/CAPTCHA.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@
 block discarded – undo
247 247
         unset($attr['name']);
248 248
 
249 249
         $html = $this->_getTabs()
250
-                . '<span' . $this->_getAttrString($attr) . '>'
250
+                . '<span'.$this->_getAttrString($attr).'>'
251 251
                 . htmlspecialchars($captcha)
252 252
                 . '</span>';
253 253
         return $html;
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/group.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      * @access    public
92 92
      * @return    void
93 93
      */
94
-    public function __construct($elementName=null, $elementLabel=null, $elements=null, $separator=null, $appendName = true)
94
+    public function __construct($elementName = null, $elementLabel = null, $elements = null, $separator = null, $appendName = true)
95 95
     {
96 96
         parent::__construct($elementName, $elementLabel);
97 97
         $this->_type = 'group';
@@ -174,13 +174,13 @@  discard block
 block discarded – undo
174 174
     {
175 175
         $value = null;
176 176
         foreach (array_keys($this->_elements) as $key) {
177
-            $element =& $this->_elements[$key];
177
+            $element = & $this->_elements[$key];
178 178
             switch ($element->getType()) {
179 179
                 case 'radio':
180
-                    $v = $element->getChecked()? $element->getValue(): null;
180
+                    $v = $element->getChecked() ? $element->getValue() : null;
181 181
                     break;
182 182
                 case 'checkbox':
183
-                    $v = $element->getChecked()? true: null;
183
+                    $v = $element->getChecked() ? true : null;
184 184
                     break;
185 185
                 default:
186 186
                     $v = $element->getValue();
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                     $value = $v;
192 192
                 } else {
193 193
                     if (!is_array($value)) {
194
-                        $value = is_null($value)? array(): array($value);
194
+                        $value = is_null($value) ? array() : array($value);
195 195
                     }
196 196
                     if ('' === $elementName) {
197 197
                         $value[] = $v;
@@ -360,9 +360,9 @@  discard block
 block discarded – undo
360 360
                         if (is_null($elementName)) {
361 361
                             $this->_elements[$key]->setName($this->getName());
362 362
                         } elseif ('' === $elementName) {
363
-                            $this->_elements[$key]->setName($this->getName() . '[' . $key . ']');
363
+                            $this->_elements[$key]->setName($this->getName().'['.$key.']');
364 364
                         } else {
365
-                            $this->_elements[$key]->setName($this->getName() . '[' . $elementName . ']');
365
+                            $this->_elements[$key]->setName($this->getName().'['.$elementName.']');
366 366
                         }
367 367
                     }
368 368
                     $this->_elements[$key]->onQuickFormEvent('updateValue', $arg, $caller);
@@ -393,12 +393,12 @@  discard block
 block discarded – undo
393 393
         $renderer->startGroup($this, $required, $error);
394 394
         $name = $this->getName();
395 395
         foreach (array_keys($this->_elements) as $key) {
396
-            $element =& $this->_elements[$key];
396
+            $element = & $this->_elements[$key];
397 397
 
398 398
             if ($this->_appendName) {
399 399
                 $elementName = $element->getName();
400 400
                 if (isset($elementName)) {
401
-                    $element->setName($name . '['. (strlen($elementName)? $elementName: $key) .']');
401
+                    $element->setName($name.'['.(strlen($elementName) ? $elementName : $key).']');
402 402
                 } else {
403 403
                     $element->setName($name);
404 404
                 }
@@ -429,9 +429,9 @@  discard block
 block discarded – undo
429 429
                 if (is_null($elementName)) {
430 430
                     $this->_elements[$key]->setName($this->getName());
431 431
                 } elseif ('' === $elementName) {
432
-                    $this->_elements[$key]->setName($this->getName() . '[' . $key . ']');
432
+                    $this->_elements[$key]->setName($this->getName().'['.$key.']');
433 433
                 } else {
434
-                    $this->_elements[$key]->setName($this->getName() . '[' . $elementName . ']');
434
+                    $this->_elements[$key]->setName($this->getName().'['.$elementName.']');
435 435
                 }
436 436
             }
437 437
             $v = $this->_elements[$key]->exportValue($submitValues, $assoc);
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/email.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * @return    void
27 27
      * @throws
28 28
      */
29
-    function HTML_QuickForm_email($elementName=null, $elementLabel=null, $attributes=null)
29
+    function HTML_QuickForm_email($elementName = null, $elementLabel = null, $attributes = null)
30 30
     {
31 31
         parent::__construct($elementName, $elementLabel, $attributes);
32 32
         $this->setType('email');
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/Action/Jump.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 }
70 70
 
71 71
             } elseif ('..' == $pathAry[$i] && $i > 1 && '..' != $pathAry[$i - 1]) {
72
-                if ($i < count($pathAry) -1) {
72
+                if ($i < count($pathAry) - 1) {
73 73
                     array_splice($pathAry, $i - 1, 2);
74 74
                     $i--;
75 75
                 } else {
@@ -98,28 +98,28 @@  discard block
 block discarded – undo
98 98
     function _resolveRelativeURL($url)
99 99
     {
100 100
         $https  = !empty($_SERVER['HTTPS']) && ('off' != strtolower($_SERVER['HTTPS']));
101
-        $scheme = ($https? 'https:': 'http:');
101
+        $scheme = ($https ? 'https:' : 'http:');
102 102
         if ('//' == substr($url, 0, 2)) {
103
-            return $scheme . $url;
103
+            return $scheme.$url;
104 104
 
105 105
         } else {
106
-            $host   = $scheme . '//' . $_SERVER['SERVER_NAME'] .
106
+            $host = $scheme.'//'.$_SERVER['SERVER_NAME'].
107 107
                       (($https && 443 == $_SERVER['SERVER_PORT'] ||
108
-                        !$https && 80 == $_SERVER['SERVER_PORT'])? '': ':' . $_SERVER['SERVER_PORT']);
108
+                        !$https && 80 == $_SERVER['SERVER_PORT']) ? '' : ':'.$_SERVER['SERVER_PORT']);
109 109
             if ('' == $url) {
110
-                return $host . $_SERVER['REQUEST_URI'];
110
+                return $host.$_SERVER['REQUEST_URI'];
111 111
 
112 112
             } elseif ('/' == $url[0]) {
113
-                return $host . $url;
113
+                return $host.$url;
114 114
 
115 115
             } else {
116 116
                 list($basePath, $baseQuery) = $this->_splitUri($_SERVER['REQUEST_URI']);
117 117
                 list($actPath, $actQuery)   = $this->_splitUri($url);
118 118
                 if ('' == $actPath) {
119
-                    return $host . $basePath . $actQuery;
119
+                    return $host.$basePath.$actQuery;
120 120
                 } else {
121
-                    $path = substr($basePath, 0, strrpos($basePath, '/') + 1) . $actPath;
122
-                    return $host . $this->_normalizePath($path) . $actQuery;
121
+                    $path = substr($basePath, 0, strrpos($basePath, '/') + 1).$actPath;
122
+                    return $host.$this->_normalizePath($path).$actQuery;
123 123
                 }
124 124
             }
125 125
         }
@@ -136,10 +136,10 @@  discard block
 block discarded – undo
136 136
             if (!$page->controller->isValid($pageName)) {
137 137
                 $pageName = $page->controller->findInvalid();
138 138
             }
139
-            $current =& $page->controller->getPage($pageName);
139
+            $current = & $page->controller->getPage($pageName);
140 140
 
141 141
         } else {
142
-            $current =& $page;
142
+            $current = & $page;
143 143
         }
144 144
         // generate the URL for the page 'display' event and redirect to it
145 145
         $action = $current->getAttribute('action');
@@ -147,10 +147,10 @@  discard block
 block discarded – undo
147 147
         if (!preg_match('!^https?://!i', $action)) {
148 148
             $action = $this->_resolveRelativeURL($action);
149 149
         }
150
-        $url    = $action . (false === strpos($action, '?')? '?': '&') .
151
-                  $current->getButtonName('display') . '=true' .
152
-                  ((!defined('SID') || '' == SID || ini_get('session.use_only_cookies'))? '': '&' . SID);
153
-        header('Location: ' . $url);
150
+        $url = $action.(false === strpos($action, '?') ? '?' : '&').
151
+                  $current->getButtonName('display').'=true'.
152
+                  ((!defined('SID') || '' == SID || ini_get('session.use_only_cookies')) ? '' : '&'.SID);
153
+        header('Location: '.$url);
154 154
         exit;
155 155
     }
156 156
 }
Please login to merge, or discard this patch.
main/inc/lib/pear/HTML/QuickForm/Action/Back.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
     {
36 36
         // save the form values and validation status to the session
37 37
         $page->isFormBuilt() or $page->buildForm();
38
-        $pageName =  $page->getAttribute('id');
39
-        $data     =& $page->controller->container();
38
+        $pageName = $page->getAttribute('id');
39
+        $data     = & $page->controller->container();
40 40
         $data['values'][$pageName] = $page->exportValues();
41 41
         if (!$page->controller->isModal()) {
42 42
             if (PEAR::isError($valid = $page->validate())) {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             return $page->handle('jump');
54 54
             //
55 55
         } else {
56
-            $prev =& $page->controller->getPage($prevName);
56
+            $prev = & $page->controller->getPage($prevName);
57 57
             // Modified by Chamilo team, 16-MAR-2010.
58 58
             //$prev->handle('jump');
59 59
             return $prev->handle('jump');
Please login to merge, or discard this patch.