@@ -37,10 +37,10 @@ discard block |
||
| 37 | 37 | 'license_url' => 'http://www.gnu.org/licenses/gpl-3.0.en.html', |
| 38 | 38 | 'help' => 'page=help', |
| 39 | 39 | 'release_info' => 'release_info', |
| 40 | - 'release_file' => XOOPS_URL . '/modules/wggithub/docs/release_info file', |
|
| 40 | + 'release_file' => XOOPS_URL.'/modules/wggithub/docs/release_info file', |
|
| 41 | 41 | 'release_date' => '2021/01/13', |
| 42 | 42 | 'manual' => 'link to manual file', |
| 43 | - 'manual_file' => XOOPS_URL . '/modules/wggithub/docs/install.txt', |
|
| 43 | + 'manual_file' => XOOPS_URL.'/modules/wggithub/docs/install.txt', |
|
| 44 | 44 | 'min_php' => '7.2', |
| 45 | 45 | 'min_xoops' => '2.5.11', |
| 46 | 46 | 'min_admin' => '1.2', |
@@ -270,8 +270,8 @@ discard block |
||
| 270 | 270 | // Make Sample button visible? |
| 271 | 271 | $modversion['config'][] = [ |
| 272 | 272 | 'name' => 'displaySampleButton', |
| 273 | - 'title' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLE_BUTTON', |
|
| 274 | - 'description' => 'CO_' . $moduleDirNameUpper . '_' . 'SHOW_SAMPLE_BUTTON_DESC', |
|
| 273 | + 'title' => 'CO_'.$moduleDirNameUpper.'_'.'SHOW_SAMPLE_BUTTON', |
|
| 274 | + 'description' => 'CO_'.$moduleDirNameUpper.'_'.'SHOW_SAMPLE_BUTTON_DESC', |
|
| 275 | 275 | 'formtype' => 'yesno', |
| 276 | 276 | 'valuetype' => 'int', |
| 277 | 277 | 'default' => 1, |
@@ -27,7 +27,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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&start=' . $start . '&limit=' . $limit, 2, _AM_WGGITHUB_FORM_OK); |
|
| 106 | + \redirect_header('directories.php?op=list&start='.$start.'&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 |
||
| 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 |
||
| 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 |
||
| 181 | 181 | $dirName = $directoriesObj->getVar('dir_name'); |
| 182 | 182 | $githubClient = GithubClient::getInstance(); |
| 183 | 183 | $result = $githubClient->executeUpdate($dirName); |
| 184 | - $redir = 'directories.php?op=list&start=' . $start . '&limit=' . $limit; |
|
| 184 | + $redir = 'directories.php?op=list&start='.$start.'&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 |
||
| 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&start=' . $start . '&limit=' . $limit, 2, _AM_WGGITHUB_FORM_OK); |
|
| 197 | + \redirect_header('directories.php?op=list&start='.$start.'&limit='.$limit, 2, _AM_WGGITHUB_FORM_OK); |
|
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | 200 | break; |
@@ -207,4 +207,4 @@ discard block |
||
| 207 | 207 | } |
| 208 | 208 | break; |
| 209 | 209 | } |
| 210 | -require __DIR__ . '/footer.php'; |
|
| 210 | +require __DIR__.'/footer.php'; |
|
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | $ret = wggithub_check_db($module); |
| 40 | 40 | |
| 41 | 41 | //check upload directory |
| 42 | - include_once __DIR__ . '/install.php'; |
|
| 42 | + include_once __DIR__.'/install.php'; |
|
| 43 | 43 | $ret = xoops_module_install_wggithub($module); |
| 44 | 44 | |
| 45 | 45 | $errors = $module->getErrors(); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | { |
| 62 | 62 | global $xoopsDB; |
| 63 | 63 | $result = $xoopsDB->query( |
| 64 | - 'SELECT t1.tpl_id FROM ' . $xoopsDB->prefix('tplfile') . ' t1, ' . $xoopsDB->prefix('tplfile') . ' t2 WHERE t1.tpl_refid = t2.tpl_refid AND t1.tpl_module = t2.tpl_module AND t1.tpl_tplset=t2.tpl_tplset AND t1.tpl_file = t2.tpl_file AND t1.tpl_type = t2.tpl_type AND t1.tpl_id > t2.tpl_id' |
|
| 64 | + 'SELECT t1.tpl_id FROM '.$xoopsDB->prefix('tplfile').' t1, '.$xoopsDB->prefix('tplfile').' t2 WHERE t1.tpl_refid = t2.tpl_refid AND t1.tpl_module = t2.tpl_module AND t1.tpl_tplset=t2.tpl_tplset AND t1.tpl_file = t2.tpl_file AND t1.tpl_type = t2.tpl_type AND t1.tpl_id > t2.tpl_id' |
|
| 65 | 65 | ); |
| 66 | 66 | $tplids = []; |
| 67 | 67 | while (false !== (list($tplid) = $xoopsDB->fetchRow($result))) { |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | } |
| 70 | 70 | if (\count($tplids) > 0) { |
| 71 | 71 | $tplfileHandler = \xoops_getHandler('tplfile'); |
| 72 | - $duplicate_files = $tplfileHandler->getObjects(new \Criteria('tpl_id', '(' . \implode(',', $tplids) . ')', 'IN')); |
|
| 72 | + $duplicate_files = $tplfileHandler->getObjects(new \Criteria('tpl_id', '('.\implode(',', $tplids).')', 'IN')); |
|
| 73 | 73 | |
| 74 | 74 | if (\count($duplicate_files) > 0) { |
| 75 | 75 | foreach (\array_keys($duplicate_files) as $i) { |
@@ -77,9 +77,9 @@ discard block |
||
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | - $sql = 'SHOW INDEX FROM ' . $xoopsDB->prefix('tplfile') . " WHERE KEY_NAME = 'tpl_refid_module_set_file_type'"; |
|
| 80 | + $sql = 'SHOW INDEX FROM '.$xoopsDB->prefix('tplfile')." WHERE KEY_NAME = 'tpl_refid_module_set_file_type'"; |
|
| 81 | 81 | if (!$result = $xoopsDB->queryF($sql)) { |
| 82 | - xoops_error($xoopsDB->error() . '<br>' . $sql); |
|
| 82 | + xoops_error($xoopsDB->error().'<br>'.$sql); |
|
| 83 | 83 | |
| 84 | 84 | return false; |
| 85 | 85 | } |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | return true; |
| 94 | 94 | } |
| 95 | - $sql = 'ALTER TABLE ' . $xoopsDB->prefix('tplfile') . ' ADD UNIQUE tpl_refid_module_set_file_type ( tpl_refid, tpl_module, tpl_tplset, tpl_file, tpl_type )'; |
|
| 95 | + $sql = 'ALTER TABLE '.$xoopsDB->prefix('tplfile').' ADD UNIQUE tpl_refid_module_set_file_type ( tpl_refid, tpl_module, tpl_tplset, tpl_file, tpl_type )'; |
|
| 96 | 96 | if (!$result = $xoopsDB->queryF($sql)) { |
| 97 | - xoops_error($xoopsDB->error() . '<br>' . $sql); |
|
| 97 | + xoops_error($xoopsDB->error().'<br>'.$sql); |
|
| 98 | 98 | $module->setErrors("'tpl_refid_module_set_file_type' unique index is not added to 'tplfile' table. Warning: do not use XOOPS until you add this unique index."); |
| 99 | 99 | |
| 100 | 100 | return false; |
@@ -118,12 +118,12 @@ discard block |
||
| 118 | 118 | // update table (add new field) |
| 119 | 119 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_repositories'); |
| 120 | 120 | $field = 'repo_release'; |
| 121 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 121 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 122 | 122 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 123 | 123 | if (!$numRows) { |
| 124 | 124 | $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `repo_htmlurl`;"; |
| 125 | 125 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 126 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 126 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 127 | 127 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 128 | 128 | $ret = false; |
| 129 | 129 | } |
@@ -132,12 +132,12 @@ discard block |
||
| 132 | 132 | // update table (add new field) |
| 133 | 133 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_repositories'); |
| 134 | 134 | $field = 'repo_prerelease'; |
| 135 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 135 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 136 | 136 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 137 | 137 | if (!$numRows) { |
| 138 | 138 | $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `repo_htmlurl`;"; |
| 139 | 139 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 140 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 140 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 141 | 141 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 142 | 142 | $ret = false; |
| 143 | 143 | } |
@@ -145,12 +145,12 @@ discard block |
||
| 145 | 145 | // update table (add new field) |
| 146 | 146 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_repositories'); |
| 147 | 147 | $field = 'repo_readme'; |
| 148 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 148 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 149 | 149 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 150 | 150 | if (!$numRows) { |
| 151 | 151 | $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `repo_htmlurl`;"; |
| 152 | 152 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 153 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 153 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 154 | 154 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 155 | 155 | $ret = false; |
| 156 | 156 | } |
@@ -159,12 +159,12 @@ discard block |
||
| 159 | 159 | // update table (add new field) |
| 160 | 160 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_directories'); |
| 161 | 161 | $field = 'dir_filterrelease'; |
| 162 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 162 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 163 | 163 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 164 | 164 | if (!$numRows) { |
| 165 | 165 | $sql = "ALTER TABLE `$table` ADD `$field` INT(1) NOT NULL DEFAULT '0' AFTER `dir_online`;"; |
| 166 | 166 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 167 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 167 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 168 | 168 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 169 | 169 | $ret = false; |
| 170 | 170 | } |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | PRIMARY KEY (`log_id`) |
| 187 | 187 | ) ENGINE=InnoDB;"; |
| 188 | 188 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 189 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 189 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 190 | 190 | $module->setErrors("Error when creating table '$table'."); |
| 191 | 191 | $ret = false; |
| 192 | 192 | } |
@@ -195,12 +195,12 @@ discard block |
||
| 195 | 195 | // update table (add new field) |
| 196 | 196 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_directories'); |
| 197 | 197 | $field = 'dir_content'; |
| 198 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 198 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 199 | 199 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 200 | 200 | if (!$numRows) { |
| 201 | 201 | $sql = "ALTER TABLE `$table` ADD `$field` INT(10) NOT NULL DEFAULT '0' AFTER `dir_type`;"; |
| 202 | 202 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 203 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 203 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 204 | 204 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 205 | 205 | $ret = false; |
| 206 | 206 | } |
@@ -209,12 +209,12 @@ discard block |
||
| 209 | 209 | // update table (add new field) |
| 210 | 210 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_directories'); |
| 211 | 211 | $field = 'dir_descr'; |
| 212 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 212 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 213 | 213 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 214 | 214 | if (!$numRows) { |
| 215 | 215 | $sql = "ALTER TABLE `$table` ADD `$field` TEXT NOT NULL AFTER `dir_type`;"; |
| 216 | 216 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 217 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 217 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 218 | 218 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 219 | 219 | $ret = false; |
| 220 | 220 | } |
@@ -223,12 +223,12 @@ discard block |
||
| 223 | 223 | // update table (add new field) |
| 224 | 224 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_readmes'); |
| 225 | 225 | $field = 'rm_baseurl'; |
| 226 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 226 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 227 | 227 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 228 | 228 | if (!$numRows) { |
| 229 | 229 | $sql = "ALTER TABLE `$table` ADD `$field` VARCHAR(255) NOT NULL DEFAULT '' AFTER `rm_downloadurl`;"; |
| 230 | 230 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 231 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 231 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 232 | 232 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 233 | 233 | $ret = false; |
| 234 | 234 | } |
@@ -237,12 +237,12 @@ discard block |
||
| 237 | 237 | // update table (add new field) |
| 238 | 238 | $table = $GLOBALS['xoopsDB']->prefix('wggithub_directories'); |
| 239 | 239 | $field = 'dir_weight'; |
| 240 | - $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `' . $table . "` LIKE '" . $field . "'"); |
|
| 240 | + $check = $GLOBALS['xoopsDB']->queryF('SHOW COLUMNS FROM `'.$table."` LIKE '".$field."'"); |
|
| 241 | 241 | $numRows = $GLOBALS['xoopsDB']->getRowsNum($check); |
| 242 | 242 | if (!$numRows) { |
| 243 | 243 | $sql = "ALTER TABLE `$table` ADD `$field` INT(10) NOT NULL DEFAULT '0' AFTER `dir_filterrelease`;"; |
| 244 | 244 | if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { |
| 245 | - xoops_error($GLOBALS['xoopsDB']->error() . '<br>' . $sql); |
|
| 245 | + xoops_error($GLOBALS['xoopsDB']->error().'<br>'.$sql); |
|
| 246 | 246 | $module->setErrors("Error when adding '$field' to table '$table'."); |
| 247 | 247 | $ret = false; |
| 248 | 248 | } |
@@ -176,10 +176,10 @@ |
||
| 176 | 176 | break; |
| 177 | 177 | } |
| 178 | 178 | $ret['content_shorttext'] = Utility::truncateHtml($content_text); |
| 179 | - $ret['autoupdate'] = (int)$this->getVar('dir_autoupdate') > 0 ? _YES : _NO; |
|
| 180 | - $ret['online'] = (int)$this->getVar('dir_online') > 0 ? _YES : _NO; |
|
| 181 | - $ret['filterrelease'] = (int)$this->getVar('dir_filterrelease') > 0 ? _YES : _NO; |
|
| 182 | - $ret['weight'] = (int)$this->getVar('dir_weight'); |
|
| 179 | + $ret['autoupdate'] = (int) $this->getVar('dir_autoupdate') > 0 ? _YES : _NO; |
|
| 180 | + $ret['online'] = (int) $this->getVar('dir_online') > 0 ? _YES : _NO; |
|
| 181 | + $ret['filterrelease'] = (int) $this->getVar('dir_filterrelease') > 0 ? _YES : _NO; |
|
| 182 | + $ret['weight'] = (int) $this->getVar('dir_weight'); |
|
| 183 | 183 | $ret['datecreated'] = \formatTimestamp($this->getVar('dir_datecreated'), 's'); |
| 184 | 184 | $ret['submitter'] = \XoopsUser::getUnameFromId($this->getVar('dir_submitter')); |
| 185 | 185 | return $ret; |