Completed
Push — master ( b781ca...7b04d5 )
by Richard
19s
created
htdocs/modules/codex/pdf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * @author    trabis <[email protected]>
19 19
  */
20 20
 
21
-include dirname(dirname(__DIR__)) . '/mainfile.php';
21
+include dirname(dirname(__DIR__)).'/mainfile.php';
22 22
 
23 23
 $xoops = Xoops::getInstance();
24 24
 
Please login to merge, or discard this patch.
htdocs/modules/codex/assets.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
  * @author    Richard Griffith <[email protected]>
16 16
  */
17 17
 
18
-require dirname(dirname(__DIR__)) . '/mainfile.php';
18
+require dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
Please login to merge, or discard this patch.
htdocs/modules/codex/email.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  * @author    Laurent JEN - aka DuGris
23 23
  */
24 24
 
25
-include dirname(dirname(__DIR__)) . '/mainfile.php';
25
+include dirname(dirname(__DIR__)).'/mainfile.php';
26 26
 
27 27
 $xoops = Xoops::getInstance();
28 28
 $xoops->header();
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                 echo $errors;
56 56
             }
57 57
         } catch (\InvalidArgumentException $e) {
58
-            echo 'Message was not sent. ' . $e->getMessage();
58
+            echo 'Message was not sent. '.$e->getMessage();
59 59
         }
60 60
     } else {
61 61
         $form = new ThemeForm('Email Service Example', 'example', '', 'post', true, 'horizontal');
Please login to merge, or discard this patch.
htdocs/modules/codex/form.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @author    trabis <[email protected]>
16 16
  */
17 17
 
18
-include dirname(dirname(__DIR__)) . '/mainfile.php';
18
+include dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 $code = new Xoops\Form\Text('Code', 'code', 10, 25, '', 'Code...');
27 27
 $code->setDescription('Description code');
28 28
 $code->setPattern('^.{3,}$', 'You need at least 3 characters');
29
-$code->setDatalist(array('list 1','list 2','list 3'));
29
+$code->setDatalist(array('list 1', 'list 2', 'list 3'));
30 30
 $form->addElement($code, true);
31 31
 
32 32
 $password = new Xoops\Form\Password('Password', 'password', null, null, '', 'off', 'Enter Password');
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 $checkbox->setDescription('Description Checkbox');
73 73
 $form->addElement($checkbox, true);
74 74
 
75
-$label= new Xoops\Form\Label('Label', 'label', 'label');
75
+$label = new Xoops\Form\Label('Label', 'label', 'label');
76 76
 $label->setDescription('Description Label');
77 77
 $form->addElement($label, true);
78 78
 
Please login to merge, or discard this patch.
htdocs/modules/codex/system-plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @author          trabis <[email protected]>
16 16
  */
17 17
 
18
-include dirname(dirname(__DIR__)) . '/mainfile.php';
18
+include dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
@@ -26,5 +26,5 @@  discard block
 block discarded – undo
26 26
 See how Codex module hooks into the system module just by using this codex/class/plugin/system.php
27 27
 ";
28 28
 
29
-\Xoops\Utils::dumpFile(__DIR__ . '/class/plugin/system.php');
29
+\Xoops\Utils::dumpFile(__DIR__.'/class/plugin/system.php');
30 30
 $xoops->footer();
Please login to merge, or discard this patch.
htdocs/modules/codex/qrcode.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
  * @author    Laurent JEN - aka DuGris
16 16
  */
17 17
 
18
-include dirname(dirname(__DIR__)) . '/mainfile.php';
18
+include dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
Please login to merge, or discard this patch.
htdocs/modules/codex/form-element-factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * @author    trabis <[email protected]>
19 19
  */
20 20
 
21
-include dirname(dirname(__DIR__)) . '/mainfile.php';
21
+include dirname(dirname(__DIR__)).'/mainfile.php';
22 22
 
23 23
 $xoops = Xoops::getInstance();
24 24
 $xoops->header();
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     'caption' => 'Sub Cat',
160 160
     'name' => 'select_subcat',
161 161
     'size' => 5,
162
-    'value' => [2,4,6],
162
+    'value' => [2, 4, 6],
163 163
     'option' => [
164 164
         1 => 'Sub 1',
165 165
         2 => 'Sub 2',
Please login to merge, or discard this patch.
htdocs/modules/codex/form-tab.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @author    trabis <[email protected]>
16 16
  */
17 17
 
18
-include dirname(dirname(__DIR__)) . '/mainfile.php';
18
+include dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 $code = new Xoops\Form\Text('Code', 'code', 2, 25, '', 'Code...');
41 41
 $code->setDescription('Description code');
42 42
 $code->setPattern('^.{3,}$', 'You need at least 3 characters');
43
-$code->setDatalist(array('list 1','list 2','list 3'));
43
+$code->setDatalist(array('list 1', 'list 2', 'list 3'));
44 44
 $tab1->addElement($code, true);
45 45
 
46 46
 $password = new Xoops\Form\Password('Password', 'password', null, null, '', 'off', 'Enter Password');
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 $checkbox->setDescription('Description Checkbox');
87 87
 $tab3->addElement($checkbox, true);
88 88
 
89
-$label= new Xoops\Form\Label('Label', 'label', 'label');
89
+$label = new Xoops\Form\Label('Label', 'label', 'label');
90 90
 $label->setDescription('Description Label');
91 91
 $tab3->addElement($label, true);
92 92
 
Please login to merge, or discard this patch.
htdocs/modules/codex/menus-plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @author    trabis <[email protected]>
16 16
  */
17 17
 
18
-include dirname(dirname(__DIR__)) . '/mainfile.php';
18
+include dirname(dirname(__DIR__)).'/mainfile.php';
19 19
 
20 20
 $xoops = Xoops::getInstance();
21 21
 $xoops->header();
@@ -28,5 +28,5 @@  discard block
 block discarded – undo
28 28
 See how Codex module hooks into the menus module just by using this codex/class/plugin/menus.php
29 29
 ";
30 30
 
31
-\Xoops\Utils::dumpFile(__DIR__ . '/class/plugin/menus.php');
31
+\Xoops\Utils::dumpFile(__DIR__.'/class/plugin/menus.php');
32 32
 $xoops->footer();
Please login to merge, or discard this patch.