@@ -17,9 +17,9 @@ discard block |
||
| 17 | 17 | // Стили |
| 18 | 18 | $xoTheme->addStylesheet(XOOPS_URL . '/modules/' . $moduleDirName . '/assets/css/style.css'); |
| 19 | 19 | // |
| 20 | -$cid = isset($_GET['cid']) ? (int)$_GET['cid'] : 0; |
|
| 20 | +$cid = isset($_GET['cid']) ? (int) $_GET['cid'] : 0; |
|
| 21 | 21 | // |
| 22 | -$start = isset($_GET['start']) ? (int)$_GET['start'] : 0; |
|
| 22 | +$start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
| 23 | 23 | // |
| 24 | 24 | |
| 25 | 25 | //mb $limit = xoops_getModuleOption('perpagemain', 'instruction'); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | // Если есть категория |
| 64 | 64 | if ($cid) { |
| 65 | 65 | // Если нельзя просматривать эту категорию |
| 66 | - if (!in_array($cid, $categories)) { |
|
| 66 | + if ( ! in_array($cid, $categories)) { |
|
| 67 | 67 | redirect_header('index.php', 3, _MD_INSTRUCTION_NOPERM_CAT); |
| 68 | 68 | } |
| 69 | 69 | $criteria->add(new \Criteria('cid', $cid, '=')); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | break; |
| 52 | 52 | } |
| 53 | 53 | } else { |
| 54 | - if ((int)$v > 0) { // handles versions like x.x.x.0_RC2 |
|
| 54 | + if ((int) $v > 0) { // handles versions like x.x.x.0_RC2 |
|
| 55 | 55 | $success = false; |
| 56 | 56 | break; |
| 57 | 57 | } |
@@ -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"; |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | */ |
| 64 | 64 | public function render() |
| 65 | 65 | { |
| 66 | - if (!isset($GLOBALS['xoTheme']) || !is_object($GLOBALS['xoTheme'])) { |
|
| 66 | + if ( ! isset($GLOBALS['xoTheme']) || ! is_object($GLOBALS['xoTheme'])) { |
|
| 67 | 67 | require_once $GLOBALS['xoops']->path('class/theme.php'); |
| 68 | 68 | $GLOBALS['xoTheme'] = new xos_opal_Theme(); |
| 69 | 69 | } |
@@ -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)); |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | break; |
| 65 | 65 | case 'int': |
| 66 | 66 | default: |
| 67 | - $ret = isset($global[$key]) ? (int)$global[$key] : (int)$default; |
|
| 67 | + $ret = isset($global[$key]) ? (int) $global[$key] : (int) $default; |
|
| 68 | 68 | break; |
| 69 | 69 | } |
| 70 | 70 | if (false === $ret) { |
@@ -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 | // |