@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $html .= "<ul>\n"; |
| 44 | 44 | // |
| 45 | 45 | $gdlib = function_exists('gd_info') ? '<span style="color: green;">' . constant('CO_' . $moduleDirNameUpper . '_GDON') . '</span>' : '<span style="color: red;">' . constant('CO_' . $moduleDirNameUpper . '_GDOFF') . '</span>'; |
| 46 | - $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_GDLIBSTATUS') . $gdlib; |
|
| 46 | + $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_GDLIBSTATUS') . $gdlib; |
|
| 47 | 47 | if (function_exists('gd_info')) { |
| 48 | 48 | if ($gdlib = (true === gd_info())) { |
| 49 | 49 | $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_GDLIBVERSION') . '<b>' . $gdlib['GD Version'] . '</b>'; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | // $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_REGISTERGLOBALS . $registerglobals; |
| 58 | 58 | // |
| 59 | 59 | $downloads = ini_get('file_uploads') ? '<span style="color: green;">' . constant('CO_' . $moduleDirNameUpper . '_ON') . '</span>' : '<span style="color: red;">' . constant('CO_' . $moduleDirNameUpper . '_OFF') . '</span>'; |
| 60 | - $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_SERVERUPLOADSTATUS') . $downloads; |
|
| 60 | + $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_SERVERUPLOADSTATUS') . $downloads; |
|
| 61 | 61 | // |
| 62 | 62 | $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_MAXUPLOADSIZE') . ' <b><span style="color: blue;">' . ini_get('upload_max_filesize') . "</span></b>\n"; |
| 63 | 63 | $html .= '<li>' . constant('CO_' . $moduleDirNameUpper . '_MAXPOSTSIZE') . ' <b><span style="color: blue;">' . ini_get('post_max_size') . "</span></b>\n"; |
@@ -28,8 +28,8 @@ discard block |
||
| 28 | 28 | public static function createFolder($folder) |
| 29 | 29 | { |
| 30 | 30 | try { |
| 31 | - if (!file_exists($folder)) { |
|
| 32 | - if (!mkdir($folder) && !is_dir($folder)) { |
|
| 31 | + if ( ! file_exists($folder)) { |
|
| 32 | + if ( ! mkdir($folder) && ! is_dir($folder)) { |
|
| 33 | 33 | throw new \RuntimeException(sprintf('Unable to create the %s directory', $folder)); |
| 34 | 34 | } |
| 35 | 35 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | public static function deleteDirectory($src) |
| 86 | 86 | { |
| 87 | 87 | // Only continue if user is a 'global' Admin |
| 88 | - if (!($GLOBALS['xoopsUser'] instanceof XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
|
| 88 | + if ( ! ($GLOBALS['xoopsUser'] instanceof XoopsUser) || ! $GLOBALS['xoopsUser']->isAdmin()) { |
|
| 89 | 89 | return false; |
| 90 | 90 | } |
| 91 | 91 | |
@@ -99,12 +99,12 @@ discard block |
||
| 99 | 99 | $fileInfo = new \SplFileInfo("{$src}/{$v}"); |
| 100 | 100 | if ($fileInfo->isDir()) { |
| 101 | 101 | // recursively handle subdirectories |
| 102 | - if (!$success = self::deleteDirectory($fileInfo->getRealPath())) { |
|
| 102 | + if ( ! $success = self::deleteDirectory($fileInfo->getRealPath())) { |
|
| 103 | 103 | break; |
| 104 | 104 | } |
| 105 | 105 | } else { |
| 106 | 106 | // delete the file |
| 107 | - if (!($success = unlink($fileInfo->getRealPath()))) { |
|
| 107 | + if ( ! ($success = unlink($fileInfo->getRealPath()))) { |
|
| 108 | 108 | break; |
| 109 | 109 | } |
| 110 | 110 | } |
@@ -133,12 +133,12 @@ discard block |
||
| 133 | 133 | public static function rrmdir($src) |
| 134 | 134 | { |
| 135 | 135 | // Only continue if user is a 'global' Admin |
| 136 | - if (!($GLOBALS['xoopsUser'] instanceof XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
|
| 136 | + if ( ! ($GLOBALS['xoopsUser'] instanceof XoopsUser) || ! $GLOBALS['xoopsUser']->isAdmin()) { |
|
| 137 | 137 | return false; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | // If source is not a directory stop processing |
| 141 | - if (!is_dir($src)) { |
|
| 141 | + if ( ! is_dir($src)) { |
|
| 142 | 142 | return false; |
| 143 | 143 | } |
| 144 | 144 | |
@@ -150,15 +150,15 @@ discard block |
||
| 150 | 150 | if ($fObj->isFile()) { |
| 151 | 151 | $filename = $fObj->getPathname(); |
| 152 | 152 | $fObj = null; // clear this iterator object to close the file |
| 153 | - if (!unlink($filename)) { |
|
| 153 | + if ( ! unlink($filename)) { |
|
| 154 | 154 | return false; // couldn't delete the file |
| 155 | 155 | } |
| 156 | - } elseif (!$fObj->isDot() && $fObj->isDir()) { |
|
| 156 | + } elseif ( ! $fObj->isDot() && $fObj->isDir()) { |
|
| 157 | 157 | // Try recursively on directory |
| 158 | 158 | self::rrmdir($fObj->getPathname()); |
| 159 | 159 | } |
| 160 | 160 | } |
| 161 | - $iterator = null; // clear iterator Obj to close file/directory |
|
| 161 | + $iterator = null; // clear iterator Obj to close file/directory |
|
| 162 | 162 | return rmdir($src); // remove the directory & return results |
| 163 | 163 | } |
| 164 | 164 | |
@@ -173,17 +173,17 @@ discard block |
||
| 173 | 173 | public static function rmove($src, $dest) |
| 174 | 174 | { |
| 175 | 175 | // Only continue if user is a 'global' Admin |
| 176 | - if (!($GLOBALS['xoopsUser'] instanceof XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
|
| 176 | + if ( ! ($GLOBALS['xoopsUser'] instanceof XoopsUser) || ! $GLOBALS['xoopsUser']->isAdmin()) { |
|
| 177 | 177 | return false; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | // If source is not a directory stop processing |
| 181 | - if (!is_dir($src)) { |
|
| 181 | + if ( ! is_dir($src)) { |
|
| 182 | 182 | return false; |
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | // If the destination directory does not exist and could not be created stop processing |
| 186 | - if (!is_dir($dest) && !mkdir($dest, 0755)) { |
|
| 186 | + if ( ! is_dir($dest) && ! mkdir($dest, 0755)) { |
|
| 187 | 187 | return false; |
| 188 | 188 | } |
| 189 | 189 | |
@@ -192,13 +192,13 @@ discard block |
||
| 192 | 192 | foreach ($iterator as $fObj) { |
| 193 | 193 | if ($fObj->isFile()) { |
| 194 | 194 | rename($fObj->getPathname(), "{$dest}/" . $fObj->getFilename()); |
| 195 | - } elseif (!$fObj->isDot() && $fObj->isDir()) { |
|
| 195 | + } elseif ( ! $fObj->isDot() && $fObj->isDir()) { |
|
| 196 | 196 | // Try recursively on directory |
| 197 | 197 | self::rmove($fObj->getPathname(), "{$dest}/" . $fObj->getFilename()); |
| 198 | 198 | // rmdir($fObj->getPath()); // now delete the directory |
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | - $iterator = null; // clear iterator Obj to close file/directory |
|
| 201 | + $iterator = null; // clear iterator Obj to close file/directory |
|
| 202 | 202 | return rmdir($src); // remove the directory & return results |
| 203 | 203 | } |
| 204 | 204 | |
@@ -216,17 +216,17 @@ discard block |
||
| 216 | 216 | public static function rcopy($src, $dest) |
| 217 | 217 | { |
| 218 | 218 | // Only continue if user is a 'global' Admin |
| 219 | - if (!($GLOBALS['xoopsUser'] instanceof XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) { |
|
| 219 | + if ( ! ($GLOBALS['xoopsUser'] instanceof XoopsUser) || ! $GLOBALS['xoopsUser']->isAdmin()) { |
|
| 220 | 220 | return false; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | // If source is not a directory stop processing |
| 224 | - if (!is_dir($src)) { |
|
| 224 | + if ( ! is_dir($src)) { |
|
| 225 | 225 | return false; |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | // If the destination directory does not exist and could not be created stop processing |
| 229 | - if (!is_dir($dest) && !mkdir($dest, 0755)) { |
|
| 229 | + if ( ! is_dir($dest) && ! mkdir($dest, 0755)) { |
|
| 230 | 230 | return false; |
| 231 | 231 | } |
| 232 | 232 | |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | foreach ($iterator as $fObj) { |
| 236 | 236 | if ($fObj->isFile()) { |
| 237 | 237 | copy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename()); |
| 238 | - } elseif (!$fObj->isDot() && $fObj->isDir()) { |
|
| 238 | + } elseif ( ! $fObj->isDot() && $fObj->isDir()) { |
|
| 239 | 239 | self::rcopy($fObj->getPathname(), "{$dest}/" . $fObj->getFilename()); |
| 240 | 240 | } |
| 241 | 241 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | // $categoryHandler = xoops_getModuleHandler('category', 'instruction'); |
| 93 | 93 | $criteria = new \CriteriaCompo(); |
| 94 | 94 | // Если мы редактируем, то убрать текущую категорию из списка выбора родительской |
| 95 | - if (!$this->isNew()) { |
|
| 95 | + if ( ! $this->isNew()) { |
|
| 96 | 96 | $criteria->add(new \Criteria('cid', $this->getVar('cid'), '<>')); |
| 97 | 97 | } |
| 98 | 98 | $criteria->setSort('weight ASC, title'); |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | // Права на просмотр |
| 139 | 139 | $groups_ids = []; |
| 140 | 140 | // Если мы редактируем |
| 141 | - if (!$this->isNew()) { |
|
| 141 | + if ( ! $this->isNew()) { |
|
| 142 | 142 | $groups_ids = $gpermHandler->getGroupIds('instruction_view', $this->getVar('cid'), $GLOBALS['xoopsModule']->getVar('mid')); |
| 143 | 143 | $groups_ids = array_values($groups_ids); |
| 144 | 144 | $groups_instr_view = new \XoopsFormCheckBox(_AM_INSTRUCTION_PERM_VIEW, 'groups_instr_view', $groups_ids); |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | // Права на отправку |
| 152 | 152 | $groups_ids = []; |
| 153 | - if (!$this->isNew()) { |
|
| 153 | + if ( ! $this->isNew()) { |
|
| 154 | 154 | $groups_ids = $gpermHandler->getGroupIds('instruction_submit', $this->getVar('cid'), $GLOBALS['xoopsModule']->getVar('mid')); |
| 155 | 155 | $groups_ids = array_values($groups_ids); |
| 156 | 156 | $groups_instr_submit = new \XoopsFormCheckBox(_AM_INSTRUCTION_PERM_SUBMIT, 'groups_instr_submit', $groups_ids); |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | |
| 163 | 163 | // Права на редактирование |
| 164 | 164 | $groups_ids = []; |
| 165 | - if (!$this->isNew()) { |
|
| 165 | + if ( ! $this->isNew()) { |
|
| 166 | 166 | $groups_ids = $gpermHandler->getGroupIds('instruction_edit', $this->getVar('cid'), $GLOBALS['xoopsModule']->getVar('mid')); |
| 167 | 167 | $groups_ids = array_values($groups_ids); |
| 168 | 168 | $groups_instr_edit = new \XoopsFormCheckBox(_AM_INSTRUCTION_PERM_EDIT, 'groups_instr_edit', $groups_ids); |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | // ========================================================== |
| 177 | 177 | |
| 178 | 178 | // Если мы редактируем категорию |
| 179 | - if (!$this->isNew()) { |
|
| 179 | + if ( ! $this->isNew()) { |
|
| 180 | 180 | $form->addElement(new \XoopsFormHidden('cid', $this->getVar('cid'))); |
| 181 | 181 | //$form->addElement( new \XoopsFormHidden( 'catmodify', true)); |
| 182 | 182 | } |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | // Находим все страницы данной инструкции |
| 87 | 87 | $criteria->add(new \Criteria('instrid', $instrid_page, '=')); |
| 88 | 88 | // Если мы редактируем, то убрать текущую страницу из списка выбора родительской |
| 89 | - if (!$this->isNew()) { |
|
| 89 | + if ( ! $this->isNew()) { |
|
| 90 | 90 | $criteria->add(new \Criteria('pageid', $this->getVar('pageid'), '<>')); |
| 91 | 91 | } |
| 92 | 92 | $criteria->setSort('weight'); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | $form->addElement($option_tray); |
| 152 | 152 | |
| 153 | 153 | // Если мы редактируем страницу |
| 154 | - if (!$this->isNew()) { |
|
| 154 | + if ( ! $this->isNew()) { |
|
| 155 | 155 | $form->addElement(new \XoopsFormHidden('pageid', $this->getVar('pageid'))); |
| 156 | 156 | } else { |
| 157 | 157 | $form->addElement(new \XoopsFormHidden('pageid', 0)); |
@@ -34,9 +34,9 @@ |
||
| 34 | 34 | public function updateDateupdated($cid = 0, $time = null) |
| 35 | 35 | { |
| 36 | 36 | // Если не передали время |
| 37 | - $time = null === $time ? time() : (int)$time; |
|
| 37 | + $time = null === $time ? time() : (int) $time; |
|
| 38 | 38 | // |
| 39 | - $sql = sprintf('UPDATE `%s` SET `dateupdated` = %u WHERE `cid` = %u', $this->table, $time, (int)$cid); |
|
| 39 | + $sql = sprintf('UPDATE `%s` SET `dateupdated` = %u WHERE `cid` = %u', $this->table, $time, (int) $cid); |
|
| 40 | 40 | // |
| 41 | 41 | return $this->db->query($sql); |
| 42 | 42 | } |
@@ -118,7 +118,7 @@ |
||
| 118 | 118 | $form->addElement(new \XoopsFormText(_AM_INSTRUCTION_METADESCRIPTIONC, 'metadescription', 50, 255, $this->getVar('metadescription')), false); |
| 119 | 119 | |
| 120 | 120 | // Если мы редактируем категорию |
| 121 | - if (!$this->isNew()) { |
|
| 121 | + if ( ! $this->isNew()) { |
|
| 122 | 122 | $form->addElement(new \XoopsFormHidden('instrid', $this->getVar('instrid'))); |
| 123 | 123 | } |
| 124 | 124 | // |
@@ -32,9 +32,9 @@ |
||
| 32 | 32 | public function updateDateupdated($instrid = 0, $time = null) |
| 33 | 33 | { |
| 34 | 34 | // Если не передали время |
| 35 | - $time = null === $time ? time() : (int)$time; |
|
| 35 | + $time = null === $time ? time() : (int) $time; |
|
| 36 | 36 | // |
| 37 | - $sql = sprintf('UPDATE `%s` SET `dateupdated` = %u WHERE `instrid` = %u', $this->table, $time, (int)$instrid); |
|
| 37 | + $sql = sprintf('UPDATE `%s` SET `dateupdated` = %u WHERE `instrid` = %u', $this->table, $time, (int) $instrid); |
|
| 38 | 38 | // |
| 39 | 39 | return $this->db->query($sql); |
| 40 | 40 | } |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | |
| 70 | 70 | $debug = false; |
| 71 | 71 | |
| 72 | -if (!isset($GLOBALS['xoopsTpl']) || !($GLOBALS['xoopsTpl'] instanceof XoopsTpl)) { |
|
| 72 | +if ( ! isset($GLOBALS['xoopsTpl']) || ! ($GLOBALS['xoopsTpl'] instanceof XoopsTpl)) { |
|
| 73 | 73 | require_once $GLOBALS['xoops']->path('class/template.php'); |
| 74 | 74 | $xoopsTpl = new \XoopsTpl(); |
| 75 | 75 | } |
@@ -7,14 +7,14 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | function instruction_tag_iteminfo(&$items) |
| 9 | 9 | { |
| 10 | - if (empty($items) || !is_array($items)) { |
|
| 10 | + if (empty($items) || ! is_array($items)) { |
|
| 11 | 11 | return false; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | $items_id = []; |
| 15 | 15 | foreach (array_keys($items) as $cat_id) { |
| 16 | 16 | foreach (array_keys($items[$cat_id]) as $item_id) { |
| 17 | - $items_id[] = (int)$item_id; |
|
| 17 | + $items_id[] = (int) $item_id; |
|
| 18 | 18 | } |
| 19 | 19 | } |
| 20 | 20 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | . ' OR aa.status < 1' |
| 71 | 71 | . ' )'; |
| 72 | 72 | endif; |
| 73 | - if (!$result = $linkHandler->db->queryF($sql)) { |
|
| 73 | + if ( ! $result = $linkHandler->db->queryF($sql)) { |
|
| 74 | 74 | //xoops_error($linkHandler->db->error()); |
| 75 | 75 | } |
| 76 | 76 | } |