Passed
Push — master ( e36bde...031e8f )
by Goffy
03:34
created
class/Common/FilesManagement.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                     throw new \RuntimeException(\sprintf('Unable to create the %s directory', $folder));
36 36
                 }
37 37
 
38
-                \file_put_contents($folder . '/index.html', '<script>history.go(-1);</script>');
38
+                \file_put_contents($folder.'/index.html', '<script>history.go(-1);</script>');
39 39
             }
40 40
         } catch (\Exception $e) {
41 41
             echo 'Caught exception: ', $e->getMessage(), '<br>';
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
         $dir = \opendir($src);
62 62
         //        @\mkdir($dst);
63 63
         if (!@\mkdir($dst) && !\is_dir($dst)) {
64
-            throw new \RuntimeException('The directory ' . $dst . ' could not be created.');
64
+            throw new \RuntimeException('The directory '.$dst.' could not be created.');
65 65
         }
66 66
         while (false !== ($file = \readdir($dir))) {
67 67
             if (('.' !== $file) && ('..' !== $file)) {
68
-                if (\is_dir($src . '/' . $file)) {
69
-                    self::recurseCopy($src . '/' . $file, $dst . '/' . $file);
68
+                if (\is_dir($src.'/'.$file)) {
69
+                    self::recurseCopy($src.'/'.$file, $dst.'/'.$file);
70 70
                 } else {
71
-                    \copy($src . '/' . $file, $dst . '/' . $file);
71
+                    \copy($src.'/'.$file, $dst.'/'.$file);
72 72
                 }
73 73
             }
74 74
         }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                 self::rrmdir($fObj->getPathname());
208 208
             }
209 209
         }
210
-        $iterator = null;   // clear iterator Obj to close file/directory
210
+        $iterator = null; // clear iterator Obj to close file/directory
211 211
         return \rmdir($src); // remove the directory & return results
212 212
     }
213 213
 
@@ -240,14 +240,14 @@  discard block
 block discarded – undo
240 240
         $iterator = new \DirectoryIterator($src);
241 241
         foreach ($iterator as $fObj) {
242 242
             if ($fObj->isFile()) {
243
-                \rename($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
243
+                \rename($fObj->getPathname(), "{$dest}/".$fObj->getFilename());
244 244
             } elseif (!$fObj->isDot() && $fObj->isDir()) {
245 245
                 // Try recursively on directory
246
-                self::rmove($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
246
+                self::rmove($fObj->getPathname(), "{$dest}/".$fObj->getFilename());
247 247
                 //                \rmdir($fObj->getPath()); // now delete the directory
248 248
             }
249 249
         }
250
-        $iterator = null;   // clear iterator Obj to close file/directory
250
+        $iterator = null; // clear iterator Obj to close file/directory
251 251
         return \rmdir($src); // remove the directory & return results
252 252
     }
253 253
 
@@ -283,9 +283,9 @@  discard block
 block discarded – undo
283 283
         $iterator = new \DirectoryIterator($src);
284 284
         foreach ($iterator as $fObj) {
285 285
             if ($fObj->isFile()) {
286
-                \copy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
286
+                \copy($fObj->getPathname(), "{$dest}/".$fObj->getFilename());
287 287
             } elseif (!$fObj->isDot() && $fObj->isDir()) {
288
-                self::rcopy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename());
288
+                self::rcopy($fObj->getPathname(), "{$dest}/".$fObj->getFilename());
289 289
             }
290 290
         }
291 291
 
Please login to merge, or discard this patch.
tests/github-api.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 use XoopsModules\Wggithub;
31 31
 use XoopsModules\Wggithub\Github;
32 32
 
33
-require __DIR__ . '/header.php';
33
+require __DIR__.'/header.php';
34 34
 // It recovered the value of argument op in URL$
35 35
 
36 36
 /*
@@ -45,46 +45,46 @@  discard block
 block discarded – undo
45 45
 
46 46
 $data = [];
47 47
 $url = '/orgs/XoopsModules25x/repos?per_page=100&page=1';
48
-echo "<br>Test read org repo:" . $url;
48
+echo "<br>Test read org repo:".$url;
49 49
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
50 50
 $data = $api->testMilo($url);
51 51
 $count = 0;
52 52
 foreach ($data as $key => $repo) {
53
-    echo "<br>key:" . $key . ' repo:' . $repo['name'];
53
+    echo "<br>key:".$key.' repo:'.$repo['name'];
54 54
     $count++;
55
-    if ($count>5) {break;}
55
+    if ($count > 5) {break; }
56 56
 }
57 57
 
58 58
 
59 59
 $data = [];
60 60
 $url = '/users/ggoffy/repos?per_page=100&page=1';
61
-echo "<br><br>Test read user repo:" . $url;
61
+echo "<br><br>Test read user repo:".$url;
62 62
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
63 63
 $data = $api->testMilo($url);
64 64
 $count = 0;
65 65
 foreach ($data as $key => $repo) {
66
-    echo "<br>key:" . $key . ' repo:' . $repo['name'];
66
+    echo "<br>key:".$key.' repo:'.$repo['name'];
67 67
     $count++;
68
-    if ($count>5) {break;}
68
+    if ($count > 5) {break; }
69 69
 }
70 70
 
71 71
 
72 72
 $data = [];
73 73
 $url = '/repos/XoopsModules25x/smallworld/readme';
74
-echo "<br><br>test read readme orgs:" . $url;
74
+echo "<br><br>test read readme orgs:".$url;
75 75
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
76 76
 $data = $api->testMilo($url);
77
-echo '<br>name:' . $data['name'];
78
-echo '<br>download_url:' . $data['download_url'];
77
+echo '<br>name:'.$data['name'];
78
+echo '<br>download_url:'.$data['download_url'];
79 79
 
80 80
 
81 81
 $data = [];
82 82
 $url = '/repos/ggoffy/wggithub/readme';
83
-echo "<br><br>test read readme user:" . $url;
83
+echo "<br><br>test read readme user:".$url;
84 84
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
85 85
 $data = $api->testMilo($url);
86
-echo '<br>name:' . $data['name'];
87
-echo '<br>download_url:' . $data['download_url'];
86
+echo '<br>name:'.$data['name'];
87
+echo '<br>download_url:'.$data['download_url'];
88 88
 
89 89
 
90 90
 echo "<br><br><br>-----------------------------------";
@@ -93,45 +93,45 @@  discard block
 block discarded – undo
93 93
 
94 94
 $data = [];
95 95
 $url = '/orgs/XoopsModules25x/repos?per_page=100&page=1';
96
-echo "<br>Test read org repo:" . $url;
96
+echo "<br>Test read org repo:".$url;
97 97
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
98 98
 $data = $api->testMilo2($url);
99 99
 $count = 0;
100 100
 foreach ($data as $key => $repo) {
101
-    echo "<br>key:" . $key . ' repo:' . $repo['name'];
101
+    echo "<br>key:".$key.' repo:'.$repo['name'];
102 102
     $count++;
103
-    if ($count>5) {break;}
103
+    if ($count > 5) {break; }
104 104
 }
105 105
 
106 106
 
107 107
 $data = [];
108 108
 $url = '/users/ggoffy/repos?per_page=100&page=1';
109
-echo "<br><br>Test read user repo:" . $url;
109
+echo "<br><br>Test read user repo:".$url;
110 110
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
111 111
 $data = $api->testMilo2($url);
112 112
 $count = 0;
113 113
 foreach ($data as $key => $repo) {
114
-    echo "<br>key:" . $key . ' repo:' . $repo['name'];
114
+    echo "<br>key:".$key.' repo:'.$repo['name'];
115 115
     $count++;
116
-    if ($count>5) {break;}
116
+    if ($count > 5) {break; }
117 117
 }
118 118
 
119 119
 
120 120
 $data = [];
121 121
 $url = '/repos/XoopsModules25x/smallworld/readme';
122
-echo "<br><br>test read readme orgs:" . $url;
122
+echo "<br><br>test read readme orgs:".$url;
123 123
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
124 124
 $data = $api->testMilo2($url);
125
-echo '<br>name:' . $data['name'];
126
-echo '<br>download_url:' . $data['download_url'];
125
+echo '<br>name:'.$data['name'];
126
+echo '<br>download_url:'.$data['download_url'];
127 127
 
128 128
 
129 129
 $data = [];
130 130
 $url = '/repos/ggoffy/wggithub/readme';
131
-echo "<br><br>test read readme user:" . $url;
131
+echo "<br><br>test read readme user:".$url;
132 132
 $api = new \XoopsModules\Wggithub\Github\GithubClient();
133 133
 $data = $api->testMilo2($url);
134
-echo '<br>name:' . $data['name'];
135
-echo '<br>download_url:' . $data['download_url'];
134
+echo '<br>name:'.$data['name'];
135
+echo '<br>download_url:'.$data['download_url'];
136 136
 
137 137
 
Please login to merge, or discard this patch.
preloads/autoloader.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@  discard block
 block discarded – undo
4 4
  * @see http://www.php-fig.org/psr/psr-4/examples/
5 5
  */
6 6
 spl_autoload_register(
7
-    static function ($class) {
7
+    static function($class) {
8 8
         // project-specific namespace prefix
9
-        $prefix = 'XoopsModules\\' . \ucfirst(\basename(\dirname(__DIR__)));
9
+        $prefix = 'XoopsModules\\'.\ucfirst(\basename(\dirname(__DIR__)));
10 10
 
11 11
         // base directory for the namespace prefix
12
-        $baseDir = __DIR__ . '/../class/';
12
+        $baseDir = __DIR__.'/../class/';
13 13
 
14 14
         // does the class use the namespace prefix?
15 15
         $len = \mb_strlen($prefix);
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         // replace the namespace prefix with the base directory, replace namespace
25 25
         // separators with directory separators in the relative class name, append
26 26
         // with .php
27
-        $file = $baseDir . \str_replace('\\', '/', $relativeClass) . '.php';
27
+        $file = $baseDir.\str_replace('\\', '/', $relativeClass).'.php';
28 28
 
29 29
         // if the file exists, require it
30 30
         if (\file_exists($file)) {
Please login to merge, or discard this patch.
blocks/repositories.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 use XoopsModules\Wggithub\Helper;
25 25
 use XoopsModules\Wggithub\Constants;
26 26
 
27
-include_once \XOOPS_ROOT_PATH . '/modules/wggithub/include/common.php';
27
+include_once \XOOPS_ROOT_PATH.'/modules/wggithub/include/common.php';
28 28
 
29 29
 /**
30 30
  * Function show block
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function b_wggithub_repositories_show($options)
35 35
 {
36
-    include_once \XOOPS_ROOT_PATH . '/modules/wggithub/class/repositories.php';
36
+    include_once \XOOPS_ROOT_PATH.'/modules/wggithub/class/repositories.php';
37 37
     $myts = MyTextSanitizer::getInstance();
38 38
     $GLOBALS['xoopsTpl']->assign('wggithub_upload_url', \WGGITHUB_UPLOAD_URL);
39 39
     $block       = [];
@@ -99,14 +99,14 @@  discard block
 block discarded – undo
99 99
  */
100 100
 function b_wggithub_repositories_edit($options)
101 101
 {
102
-    include_once \XOOPS_ROOT_PATH . '/modules/wggithub/class/repositories.php';
102
+    include_once \XOOPS_ROOT_PATH.'/modules/wggithub/class/repositories.php';
103 103
     $helper = Helper::getInstance();
104 104
     $repositoriesHandler = $helper->getHandler('Repositories');
105 105
     $GLOBALS['xoopsTpl']->assign('wggithub_upload_url', \WGGITHUB_UPLOAD_URL);
106 106
     $form = \_MB_WGGITHUB_DISPLAY;
107 107
     $form .= "<input type='hidden' name='options[0]' value='".$options[0]."' />";
108
-    $form .= "<input type='text' name='options[1]' size='5' maxlength='255' value='" . $options[1] . "' />&nbsp;<br>";
109
-    $form .= \_MB_WGGITHUB_TITLE_LENGTH . " : <input type='text' name='options[2]' size='5' maxlength='255' value='" . $options[2] . "' /><br><br>";
108
+    $form .= "<input type='text' name='options[1]' size='5' maxlength='255' value='".$options[1]."' />&nbsp;<br>";
109
+    $form .= \_MB_WGGITHUB_TITLE_LENGTH." : <input type='text' name='options[2]' size='5' maxlength='255' value='".$options[2]."' /><br><br>";
110 110
     \array_shift($options);
111 111
     \array_shift($options);
112 112
     \array_shift($options);
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
     $crRepositories->setOrder('ASC');
118 118
     $repositoriesAll = $repositoriesHandler->getAll($crRepositories);
119 119
     unset($crRepositories);
120
-    $form .= \_MB_WGGITHUB_REPOSITORIES_TO_DISPLAY . "<br><select name='options[]' multiple='multiple' size='5'>";
121
-    $form .= "<option value='0' " . (\in_array(0, $options) == false ? '' : "selected='selected'") . '>' . \_MB_WGGITHUB_ALL_REPOSITORIES . '</option>';
120
+    $form .= \_MB_WGGITHUB_REPOSITORIES_TO_DISPLAY."<br><select name='options[]' multiple='multiple' size='5'>";
121
+    $form .= "<option value='0' ".(\in_array(0, $options) == false ? '' : "selected='selected'").'>'.\_MB_WGGITHUB_ALL_REPOSITORIES.'</option>';
122 122
     foreach (\array_keys($repositoriesAll) as $i) {
123 123
         $repo_id = $repositoriesAll[$i]->getVar('repo_id');
124
-        $form .= "<option value='" . $repo_id . "' " . (\in_array($repo_id, $options) == false ? '' : "selected='selected'") . '>' . $repositoriesAll[$i]->getVar('repo_name') . '</option>';
124
+        $form .= "<option value='".$repo_id."' ".(\in_array($repo_id, $options) == false ? '' : "selected='selected'").'>'.$repositoriesAll[$i]->getVar('repo_name').'</option>';
125 125
     }
126 126
     $form .= '</select>';
127 127
 
Please login to merge, or discard this patch.
admin/directories.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     Github\GithubClient
28 28
 };
29 29
 
30
-require __DIR__ . '/header.php';
30
+require __DIR__.'/header.php';
31 31
 // It recovered the value of argument op in URL$
32 32
 $op    = Request::getCmd('op', 'list');
33 33
 $dirId = Request::getInt('dir_id');
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
     default:
42 42
         // Define Stylesheet
43 43
         $GLOBALS['xoTheme']->addStylesheet($style, null);
44
-        $GLOBALS['xoTheme']->addScript(\WGGITHUB_URL . '/assets/js/jquery-ui.js');
45
-        $GLOBALS['xoTheme']->addScript(\WGGITHUB_URL . '/assets/js/sortable.js');
44
+        $GLOBALS['xoTheme']->addScript(\WGGITHUB_URL.'/assets/js/jquery-ui.js');
45
+        $GLOBALS['xoTheme']->addScript(\WGGITHUB_URL.'/assets/js/sortable.js');
46 46
         $templateMain = 'wggithub_admin_directories.tpl';
47 47
         $GLOBALS['xoopsTpl']->assign('navigation', $adminObject->displayNavigation('directories.php'));
48 48
         $adminObject->addItemButton(\_AM_WGGITHUB_ADD_DIRECTORY, 'directories.php?op=new', 'add');
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $GLOBALS['xoopsTpl']->assign('directories_count', $directoriesCount);
53 53
         $GLOBALS['xoopsTpl']->assign('wggithub_url', \WGGITHUB_URL);
54 54
         $GLOBALS['xoopsTpl']->assign('wggithub_upload_url', \WGGITHUB_UPLOAD_URL);
55
-        $GLOBALS['xoopsTpl']->assign('wggithub_icons_url_16', \WGGITHUB_ICONS_URL . '/16');
55
+        $GLOBALS['xoopsTpl']->assign('wggithub_icons_url_16', \WGGITHUB_ICONS_URL.'/16');
56 56
         // Table view directories
57 57
         if ($directoriesCount > 0) {
58 58
             foreach (\array_keys($directoriesAll) as $i) {
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
             }
63 63
             // Display Navigation
64 64
             if ($directoriesCount > $limit) {
65
-                include_once \XOOPS_ROOT_PATH . '/class/pagenav.php';
66
-                $pagenav = new \XoopsPageNav($directoriesCount, $limit, $start, 'start', 'op=list&limit=' . $limit);
65
+                include_once \XOOPS_ROOT_PATH.'/class/pagenav.php';
66
+                $pagenav = new \XoopsPageNav($directoriesCount, $limit, $start, 'start', 'op=list&limit='.$limit);
67 67
                 $GLOBALS['xoopsTpl']->assign('pagenav', $pagenav->renderNav(4));
68 68
             }
69 69
         } else {
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $directoriesObj->setVar('dir_submitter', Request::getInt('dir_submitter', 0));
104 104
         // Insert Data
105 105
         if ($directoriesHandler->insert($directoriesObj)) {
106
-            \redirect_header('directories.php?op=list&amp;start=' . $start . '&amp;limit=' . $limit, 2, \_AM_WGGITHUB_FORM_OK);
106
+            \redirect_header('directories.php?op=list&amp;start='.$start.'&amp;limit='.$limit, 2, \_AM_WGGITHUB_FORM_OK);
107 107
         }
108 108
         // Get Form
109 109
         $GLOBALS['xoopsTpl']->assign('error', $directoriesObj->getHtmlErrors());
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                     $crReadmes = new \CriteriaCompo();
143 143
                     $crReadmes->add(new \Criteria('rm_repoid', $repoId));
144 144
                     if (!$readmesHandler->deleteAll($crReadmes)) {
145
-                        $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA . ' READMES';
145
+                        $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA.' READMES';
146 146
                     }
147 147
                 }
148 148
                 if ($repositoriesAll[$i]->getVar('repo_release') > 0 || $repositoriesAll[$i]->getVar('repo_prerelease') > 0) {
@@ -150,17 +150,17 @@  discard block
 block discarded – undo
150 150
                     $crReleases = new \CriteriaCompo();
151 151
                     $crReleases->add(new \Criteria('rel_repoid', $repoId));
152 152
                     if (!$releasesHandler->deleteAll($crReleases)) {
153
-                        $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA . ' RELEASES';
153
+                        $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA.' RELEASES';
154 154
                     }
155 155
                 }
156 156
             }
157 157
             if (!$repositoriesHandler->deleteAll($crRepositories)) {
158
-                $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA . ' REPOSITORIES';
158
+                $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA.' REPOSITORIES';
159 159
             }
160 160
             unset($crReadmes, $crReleases, $repositoriesAll);
161 161
             //delete directory
162 162
             if (!$directoriesHandler->delete($directoriesObj)) {
163
-                $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA . ' DIRECTORIES - ' . $directoriesObj->getHtmlErrors();
163
+                $errors[] = \_AM_WGGITHUB_ERROR_DELETE_DATA.' DIRECTORIES - '.$directoriesObj->getHtmlErrors();
164 164
             }
165 165
             if (0 == \count($errors)) {
166 166
                 \redirect_header('directories.php', 3, \_AM_WGGITHUB_FORM_DELETE_OK);
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         $dirName = $directoriesObj->getVar('dir_name');
182 182
         $githubClient = GithubClient::getInstance();
183 183
         $result = $githubClient->executeUpdate($dirName);
184
-        $redir = 'directories.php?op=list&amp;start=' . $start . '&amp;limit=' . $limit;
184
+        $redir = 'directories.php?op=list&amp;start='.$start.'&amp;limit='.$limit;
185 185
         if ($result) {
186 186
             \redirect_header($redir, 2, \_MA_WGGITHUB_READGH_SUCCESS);
187 187
         } else {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
             $directoriesObj->setVar(Request::getString('field'), Request::getInt('value', 0));
195 195
             // Insert Data
196 196
             if ($directoriesHandler->insert($directoriesObj, true)) {
197
-                \redirect_header('directories.php?op=list&amp;start=' . $start . '&amp;limit=' . $limit, 2, \_AM_WGGITHUB_FORM_OK);
197
+                \redirect_header('directories.php?op=list&amp;start='.$start.'&amp;limit='.$limit, 2, \_AM_WGGITHUB_FORM_OK);
198 198
             }
199 199
         }
200 200
         break;
@@ -207,4 +207,4 @@  discard block
 block discarded – undo
207 207
         }
208 208
         break;
209 209
 }
210
-require __DIR__ . '/footer.php';
210
+require __DIR__.'/footer.php';
Please login to merge, or discard this patch.
admin/repositories.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 use XoopsModules\Wggithub\Constants;
26 26
 use XoopsModules\Wggithub\Common;
27 27
 
28
-require __DIR__ . '/header.php';
28
+require __DIR__.'/header.php';
29 29
 // It recovered the value of argument op in URL$
30 30
 $op     = Request::getCmd('op', 'list');
31 31
 $repoId = Request::getInt('repo_id');
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
         $templateMain = 'wggithub_admin_repositories.tpl';
44 44
         $GLOBALS['xoopsTpl']->assign('navigation', $adminObject->displayNavigation('repositories.php'));
45 45
 
46
-        $autoApproved = (int)$helper->getConfig('autoapproved');
46
+        $autoApproved = (int) $helper->getConfig('autoapproved');
47 47
         $GLOBALS['xoopsTpl']->assign('autoApproved', !$autoApproved);
48
-        $GLOBALS['xoopsTpl']->assign('wggithub_icons_url_16', \WGGITHUB_ICONS_URL . '/16');
48
+        $GLOBALS['xoopsTpl']->assign('wggithub_icons_url_16', \WGGITHUB_ICONS_URL.'/16');
49 49
 
50 50
         $filterValue = '';
51 51
         $filterStatus = 0;
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
             }
83 83
             // Display Navigation
84 84
             if ($repositoriesCount > $limit) {
85
-                include_once \XOOPS_ROOT_PATH . '/class/pagenav.php';
86
-                $pagenav = new \XoopsPageNav($repositoriesCount, $limit, $start, 'start', 'op=list&limit=' . $limit);
85
+                include_once \XOOPS_ROOT_PATH.'/class/pagenav.php';
86
+                $pagenav = new \XoopsPageNav($repositoriesCount, $limit, $start, 'start', 'op=list&limit='.$limit);
87 87
                 $GLOBALS['xoopsTpl']->assign('pagenav', $pagenav->renderNav(4));
88 88
             }
89 89
         } else {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         $repositoriesObj->setVar('repo_submitter', Request::getInt('repo_submitter', 0));
125 125
         // Insert Data
126 126
         if ($repositoriesHandler->insert($repositoriesObj)) {
127
-            \redirect_header('repositories.php?op=list&amp;start=' . $start . '&amp;limit=' . $limit, 2, \_AM_WGGITHUB_FORM_OK);
127
+            \redirect_header('repositories.php?op=list&amp;start='.$start.'&amp;limit='.$limit, 2, \_AM_WGGITHUB_FORM_OK);
128 128
         }
129 129
         // Get Form
130 130
         $GLOBALS['xoopsTpl']->assign('error', $repositoriesObj->getHtmlErrors());
@@ -170,9 +170,9 @@  discard block
 block discarded – undo
170 170
             $repositoriesObj->setVar(Request::getString('field'), Request::getInt('value', 0));
171 171
             // Insert Data
172 172
             if ($repositoriesHandler->insert($repositoriesObj, true)) {
173
-                \redirect_header('repositories.php?op=list&amp;start=' . $start . '&amp;limit=' . $limit, 2, \_AM_WGGITHUB_FORM_OK);
173
+                \redirect_header('repositories.php?op=list&amp;start='.$start.'&amp;limit='.$limit, 2, \_AM_WGGITHUB_FORM_OK);
174 174
             }
175 175
         }
176 176
         break;
177 177
 }
178
-require __DIR__ . '/footer.php';
178
+require __DIR__.'/footer.php';
Please login to merge, or discard this patch.
admin/header.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
  * @author         Goffy - XOOPS Development Team - Email:<[email protected]> - Website:<https://wedega.com>
21 21
  */
22 22
 
23
-include \dirname(__DIR__, 3) . '/include/cp_header.php';
24
-include_once \dirname(__DIR__) . '/include/common.php';
23
+include \dirname(__DIR__, 3).'/include/cp_header.php';
24
+include_once \dirname(__DIR__).'/include/common.php';
25 25
 
26
-$sysPathIcon16   = '../' . $GLOBALS['xoopsModule']->getInfo('sysicons16');
27
-$sysPathIcon32   = '../' . $GLOBALS['xoopsModule']->getInfo('sysicons32');
26
+$sysPathIcon16   = '../'.$GLOBALS['xoopsModule']->getInfo('sysicons16');
27
+$sysPathIcon32   = '../'.$GLOBALS['xoopsModule']->getInfo('sysicons32');
28 28
 $pathModuleAdmin = $GLOBALS['xoopsModule']->getInfo('dirmoduleadmin');
29
-$modPathIcon16   = \WGGITHUB_URL . '/' . $GLOBALS['xoopsModule']->getInfo('modicons16') . '/';
30
-$modPathIcon32   = \WGGITHUB_URL . '/' . $GLOBALS['xoopsModule']->getInfo('modicons32') . '/';
29
+$modPathIcon16   = \WGGITHUB_URL.'/'.$GLOBALS['xoopsModule']->getInfo('modicons16').'/';
30
+$modPathIcon32   = \WGGITHUB_URL.'/'.$GLOBALS['xoopsModule']->getInfo('modicons32').'/';
31 31
 
32 32
 // Get instance of module
33 33
 $helper = \XoopsModules\Wggithub\Helper::getInstance();
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 $myts = MyTextSanitizer::getInstance();
41 41
 // 
42 42
 if (!isset($xoopsTpl) || !\is_object($xoopsTpl)) {
43
-    include_once \XOOPS_ROOT_PATH . '/class/template.php';
43
+    include_once \XOOPS_ROOT_PATH.'/class/template.php';
44 44
     $xoopsTpl = new \XoopsTpl();
45 45
 }
46 46
 
@@ -64,4 +64,4 @@  discard block
 block discarded – undo
64 64
 $GLOBALS['xoopsTpl']->assign('modPathIcon32', $modPathIcon32);
65 65
 
66 66
 $adminObject = \Xmf\Module\Admin::getInstance();
67
-$style = \WGGITHUB_URL . '/assets/css/admin/style.css';
67
+$style = \WGGITHUB_URL.'/assets/css/admin/style.css';
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,15 +28,15 @@  discard block
 block discarded – undo
28 28
     Github\GithubClient
29 29
 };
30 30
 
31
-require __DIR__ . '/header.php';
31
+require __DIR__.'/header.php';
32 32
 $GLOBALS['xoopsOption']['template_main'] = 'wggithub_index.tpl';
33
-include_once \XOOPS_ROOT_PATH . '/header.php';
33
+include_once \XOOPS_ROOT_PATH.'/header.php';
34 34
 
35 35
 // Permissions
36 36
 $permGlobalView = $permissionsHandler->getPermGlobalView();
37 37
 if (!$permGlobalView) {
38 38
     $GLOBALS['xoopsTpl']->assign('error', _NOPERM);
39
-    require __DIR__ . '/footer.php';
39
+    require __DIR__.'/footer.php';
40 40
 }
41 41
 $permGlobalRead   = $permissionsHandler->getPermGlobalRead();
42 42
 $permReadmeUpdate = $permissionsHandler->getPermReadmeUpdate();
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
 // Define Stylesheet
53 53
 $GLOBALS['xoTheme']->addStylesheet($style, null);
54
-$GLOBALS['xoTheme']->addStylesheet(\WGGITHUB_URL . '/assets/css/tabs.css', null);
54
+$GLOBALS['xoTheme']->addStylesheet(\WGGITHUB_URL.'/assets/css/tabs.css', null);
55 55
 $keywords = [];
56 56
 // 
57 57
 $GLOBALS['xoopsTpl']->assign('xoops_icons32_url', XOOPS_ICONS32_URL);
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         }
145 145
         unset($crLogs);
146 146
 
147
-        $menu  = Request::getInt('menu', 0);
147
+        $menu = Request::getInt('menu', 0);
148 148
 
149 149
         $crDirectories = new \CriteriaCompo();
150 150
         $crDirectories->add(new \Criteria('dir_online', 1));
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
             foreach (\array_keys($directoriesAll) as $i) {
160 160
                 $directories[$i] = $directoriesAll[$i]->getValuesDirectories();
161 161
                 $dirName = $directoriesAll[$i]->getVar('dir_name');
162
-                $dirFilterRelease = (bool)$directoriesAll[$i]->getVar('dir_filterrelease');
162
+                $dirFilterRelease = (bool) $directoriesAll[$i]->getVar('dir_filterrelease');
163 163
                 $repos = [];
164 164
                 $crRepositories = new \CriteriaCompo();
165 165
                 //first block/parentheses
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                 $crRepo2->add(new \Criteria('repo_status', Constants::STATUS_UPTODATE), 'OR');
173 173
                 $crRepositories->add($crRepo2);
174 174
                 //third
175
-                $autoApproved = (int)$helper->getConfig('autoapproved');
175
+                $autoApproved = (int) $helper->getConfig('autoapproved');
176 176
                 if (!$autoApproved) {
177 177
                     //third
178 178
                     $crRepo3 = new \CriteriaCompo();
@@ -251,9 +251,9 @@  discard block
 block discarded – undo
251 251
                 }
252 252
                 $directories[$i]['repos'] = $repos;
253 253
                 $directories[$i]['previousRepos'] = $dirStart[$i] > 0;
254
-                $directories[$i]['previousOp'] = '&amp;dirId=' . $i . '&amp;start=' . ($dirStart[$i] - $dirLimit[$i]) . '&amp;limit=' . $dirLimit[$i] . '&amp;frelease=' . $filterRelease . '&amp;fsortby=' . $filterSortby;
254
+                $directories[$i]['previousOp'] = '&amp;dirId='.$i.'&amp;start='.($dirStart[$i] - $dirLimit[$i]).'&amp;limit='.$dirLimit[$i].'&amp;frelease='.$filterRelease.'&amp;fsortby='.$filterSortby;
255 255
                 $directories[$i]['nextRepos'] = ($repositoriesCount - $dirStart[$i]) > $dirLimit[$i];
256
-                $directories[$i]['nextOp'] = '&amp;dirId=' . $i . '&amp;start=' . ($dirStart[$i] + $dirLimit[$i]) . '&amp;limit=' . $dirLimit[$i] . '&amp;frelease=' . $filterRelease . '&amp;fsortby=' . $filterSortby;
256
+                $directories[$i]['nextOp'] = '&amp;dirId='.$i.'&amp;start='.($dirStart[$i] + $dirLimit[$i]).'&amp;limit='.$dirLimit[$i].'&amp;frelease='.$filterRelease.'&amp;fsortby='.$filterSortby;
257 257
                 $GLOBALS['xoopsTpl']->assign('menu', $menu);
258 258
                 $GLOBALS['xoopsTpl']->assign('directories', $directories);
259 259
             }
@@ -271,10 +271,10 @@  discard block
 block discarded – undo
271 271
         // Permissions
272 272
         if (!$permGlobalRead) {
273 273
             $GLOBALS['xoopsTpl']->assign('error', \_NOPERM);
274
-            require __DIR__ . '/footer.php';
274
+            require __DIR__.'/footer.php';
275 275
         }
276 276
         $dirName = Request::getString('dir_name', '');
277
-        $redir   = 'index.php?op=list_afterupdate&amp;frelease=' . $filterRelease . '&amp;fsortby=' . $filterSortby;
277
+        $redir   = 'index.php?op=list_afterupdate&amp;frelease='.$filterRelease.'&amp;fsortby='.$filterSortby;
278 278
         $githubClient = GithubClient::getInstance();
279 279
         $result = $githubClient->executeUpdate($dirName);
280 280
         if ($result) {
@@ -288,12 +288,12 @@  discard block
 block discarded – undo
288 288
         // Permissions
289 289
         if (!$permReadmeUpdate) {
290 290
             $GLOBALS['xoopsTpl']->assign('error', \_NOPERM);
291
-            require __DIR__ . '/footer.php';
291
+            require __DIR__.'/footer.php';
292 292
         }
293 293
         $repoId   = Request::getInt('repo_id', 0);
294 294
         $repoUser = Request::getString('repo_user', 'none');
295 295
         $repoName = Request::getString('repo_name', 'none');
296
-        $redir    = 'index.php?op=list_afterupdate&amp;frelease=' . $filterRelease . '&amp;fsortby=' . $filterSortby;
296
+        $redir    = 'index.php?op=list_afterupdate&amp;frelease='.$filterRelease.'&amp;fsortby='.$filterSortby;
297 297
         $result = $helper->getHandler('Readmes')->updateReadmes($repoId, $repoUser, $repoName);
298 298
         if ($result) {
299 299
             \redirect_header($redir, 2, \_MA_WGGITHUB_READGH_SUCCESS);
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
         }
303 303
         break;
304 304
     case 'api_error':
305
-        $error = Request::getString('message') . '<br>' . Request::getString('url');
305
+        $error = Request::getString('message').'<br>'.Request::getString('url');
306 306
         $GLOBALS['xoopsTpl']->assign('error', $error);
307 307
         break;
308 308
 }
@@ -311,11 +311,11 @@  discard block
 block discarded – undo
311 311
 // Breadcrumbs
312 312
 $xoBreadcrumbs[] = ['title' => \_MA_WGGITHUB_INDEX];
313 313
 // Keywords
314
-wggithubMetaKeywords($helper->getConfig('keywords') . ', ' . \implode(',', $keywords));
314
+wggithubMetaKeywords($helper->getConfig('keywords').', '.\implode(',', $keywords));
315 315
 unset($keywords);
316 316
 // Description
317 317
 wggithubMetaDescription(\_MA_WGGITHUB_INDEX_DESC);
318 318
 $GLOBALS['xoopsTpl']->assign('xoops_mpageurl', \WGGITHUB_URL.'/index.php');
319 319
 $GLOBALS['xoopsTpl']->assign('xoops_icons32_url', XOOPS_ICONS32_URL);
320 320
 $GLOBALS['xoopsTpl']->assign('wggithub_upload_url', \WGGITHUB_UPLOAD_URL);
321
-require __DIR__ . '/footer.php';
321
+require __DIR__.'/footer.php';
Please login to merge, or discard this patch.
header.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
  * @author         Goffy - XOOPS Development Team - Email:<[email protected]> - Website:<https://wedega.com>
21 21
  */
22 22
 
23
-include \dirname(__DIR__, 2) . '/mainfile.php';
24
-include __DIR__ . '/include/common.php';
23
+include \dirname(__DIR__, 2).'/mainfile.php';
24
+include __DIR__.'/include/common.php';
25 25
 $moduleDirName = \basename(__DIR__);
26 26
 
27 27
 $helper = \XoopsModules\Wggithub\Helper::getInstance();
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 $xoBreadcrumbs = [];
31 31
 if ($helper->getConfig('show_breadcrumbs')) {
32 32
     if (isset($GLOBALS['xoopsModule']) && \is_object($GLOBALS['xoopsModule'])) {
33
-        $xoBreadcrumbs[] = ['title' => $GLOBALS['xoopsModule']->getVar('name'), 'link' => \WGGITHUB_URL . '/'];
33
+        $xoBreadcrumbs[] = ['title' => $GLOBALS['xoopsModule']->getVar('name'), 'link' => \WGGITHUB_URL.'/'];
34 34
     }
35 35
 }
36 36
 // Get instance of module
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 // 
45 45
 $myts = MyTextSanitizer::getInstance();
46 46
 // Default Css Style
47
-$style = \WGGITHUB_URL . '/assets/css/style.css';
47
+$style = \WGGITHUB_URL.'/assets/css/style.css';
48 48
 // Smarty Default
49 49
 $sysPathIcon16 = $GLOBALS['xoopsModule']->getInfo('sysicons16');
50 50
 $sysPathIcon32 = $GLOBALS['xoopsModule']->getInfo('sysicons32');
Please login to merge, or discard this patch.