@@ -100,14 +100,14 @@ discard block |
||
| 100 | 100 | // get tplfile and tplsource |
| 101 | 101 | |
| 102 | 102 | $result = $db->query("SELECT tpl_refid,tpl_module,'" |
| 103 | - . addslashes($tplset_to) |
|
| 104 | - . "',tpl_file,tpl_desc,tpl_lastmodified,tpl_lastimported,tpl_type,tpl_source FROM " |
|
| 105 | - . $db->prefix('tplfile') |
|
| 106 | - . ' NATURAL LEFT JOIN ' |
|
| 107 | - . $db->prefix('tplsource') |
|
| 108 | - . " WHERE tpl_tplset='" |
|
| 109 | - . addslashes($tplset_from) |
|
| 110 | - . "' AND ($whr_append)"); |
|
| 103 | + . addslashes($tplset_to) |
|
| 104 | + . "',tpl_file,tpl_desc,tpl_lastmodified,tpl_lastimported,tpl_type,tpl_source FROM " |
|
| 105 | + . $db->prefix('tplfile') |
|
| 106 | + . ' NATURAL LEFT JOIN ' |
|
| 107 | + . $db->prefix('tplsource') |
|
| 108 | + . " WHERE tpl_tplset='" |
|
| 109 | + . addslashes($tplset_from) |
|
| 110 | + . "' AND ($whr_append)"); |
|
| 111 | 111 | |
| 112 | 112 | while (false !== ($row = $db->fetchArray($result))) { |
| 113 | 113 | $tpl_source = array_pop($row); |
@@ -135,18 +135,18 @@ discard block |
||
| 135 | 135 | // UPDATE mode |
| 136 | 136 | |
| 137 | 137 | $db->query('UPDATE ' |
| 138 | - . $db->prefix('tplfile') |
|
| 139 | - . " SET tpl_refid='" |
|
| 140 | - . addslashes($row['tpl_refid']) |
|
| 141 | - . "',tpl_desc='" |
|
| 142 | - . addslashes($row['tpl_desc']) |
|
| 143 | - . "',tpl_lastmodified='" |
|
| 144 | - . addslashes($row['tpl_lastmodified']) |
|
| 145 | - . "',tpl_lastimported='" |
|
| 146 | - . addslashes($row['tpl_lastimported']) |
|
| 147 | - . "',tpl_type='" |
|
| 148 | - . addslashes($row['tpl_type']) |
|
| 149 | - . "' WHERE tpl_id='$tpl_id'"); |
|
| 138 | + . $db->prefix('tplfile') |
|
| 139 | + . " SET tpl_refid='" |
|
| 140 | + . addslashes($row['tpl_refid']) |
|
| 141 | + . "',tpl_desc='" |
|
| 142 | + . addslashes($row['tpl_desc']) |
|
| 143 | + . "',tpl_lastmodified='" |
|
| 144 | + . addslashes($row['tpl_lastmodified']) |
|
| 145 | + . "',tpl_lastimported='" |
|
| 146 | + . addslashes($row['tpl_lastimported']) |
|
| 147 | + . "',tpl_type='" |
|
| 148 | + . addslashes($row['tpl_type']) |
|
| 149 | + . "' WHERE tpl_id='$tpl_id'"); |
|
| 150 | 150 | |
| 151 | 151 | $db->query('UPDATE ' . $db->prefix('tplsource') . " SET tpl_source='" . addslashes($tpl_source) . "' WHERE tpl_id='$tpl_id'"); |
| 152 | 152 | |
@@ -181,22 +181,22 @@ discard block |
||
| 181 | 181 | // INSERT mode |
| 182 | 182 | |
| 183 | 183 | $sql = 'INSERT INTO ' |
| 184 | - . $db->prefix('tplfile') |
|
| 185 | - . " SET tpl_refid='" |
|
| 186 | - . addslashes($row['tpl_refid']) |
|
| 187 | - . "',tpl_desc='" |
|
| 188 | - . addslashes($row['tpl_desc']) |
|
| 189 | - . "',tpl_lastmodified='" |
|
| 190 | - . addslashes($lastmodified) |
|
| 191 | - . "',tpl_type='" |
|
| 192 | - . addslashes($row['tpl_type']) |
|
| 193 | - . "',tpl_tplset='" |
|
| 194 | - . addslashes($tplset_to) |
|
| 195 | - . "',tpl_file='" |
|
| 196 | - . addslashes($row['tpl_file']) |
|
| 197 | - . "',tpl_module='" |
|
| 198 | - . addslashes($row['tpl_module']) |
|
| 199 | - . "'"; |
|
| 184 | + . $db->prefix('tplfile') |
|
| 185 | + . " SET tpl_refid='" |
|
| 186 | + . addslashes($row['tpl_refid']) |
|
| 187 | + . "',tpl_desc='" |
|
| 188 | + . addslashes($row['tpl_desc']) |
|
| 189 | + . "',tpl_lastmodified='" |
|
| 190 | + . addslashes($lastmodified) |
|
| 191 | + . "',tpl_type='" |
|
| 192 | + . addslashes($row['tpl_type']) |
|
| 193 | + . "',tpl_tplset='" |
|
| 194 | + . addslashes($tplset_to) |
|
| 195 | + . "',tpl_file='" |
|
| 196 | + . addslashes($row['tpl_file']) |
|
| 197 | + . "',tpl_module='" |
|
| 198 | + . addslashes($row['tpl_module']) |
|
| 199 | + . "'"; |
|
| 200 | 200 | |
| 201 | 201 | $db->query($sql); |
| 202 | 202 | |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -include_once XOOPS_ROOT_PATH . '/class/template.php'; |
|
| 4 | -include_once __DIR__ . '/altsys_functions.php'; |
|
| 3 | +include_once XOOPS_ROOT_PATH.'/class/template.php'; |
|
| 4 | +include_once __DIR__.'/altsys_functions.php'; |
|
| 5 | 5 | |
| 6 | 6 | /** |
| 7 | 7 | * @param $tplset |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | // check the file is valid template |
| 18 | 18 | |
| 19 | - list($count) = $db->fetchRow($db->query('SELECT COUNT(*) FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='default' AND tpl_file='" . addslashes($tpl_file) . "'")); |
|
| 19 | + list($count) = $db->fetchRow($db->query('SELECT COUNT(*) FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='default' AND tpl_file='".addslashes($tpl_file)."'")); |
|
| 20 | 20 | |
| 21 | 21 | if (!$count) { |
| 22 | 22 | return false; |
@@ -25,12 +25,12 @@ discard block |
||
| 25 | 25 | // check the template exists in the tplset |
| 26 | 26 | |
| 27 | 27 | if ('default' != $tplset) { |
| 28 | - list($count) = $db->fetchRow($db->query('SELECT COUNT(*) FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='" . addslashes($tplset) . "' AND tpl_file='" . addslashes($tpl_file) . "'")); |
|
| 28 | + list($count) = $db->fetchRow($db->query('SELECT COUNT(*) FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='".addslashes($tplset)."' AND tpl_file='".addslashes($tpl_file)."'")); |
|
| 29 | 29 | |
| 30 | 30 | if ($count <= 0) { |
| 31 | 31 | // copy from 'default' to the tplset |
| 32 | 32 | |
| 33 | - $result = $db->query('SELECT * FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='default' AND tpl_file='" . addslashes($tpl_file) . "'"); |
|
| 33 | + $result = $db->query('SELECT * FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='default' AND tpl_file='".addslashes($tpl_file)."'"); |
|
| 34 | 34 | |
| 35 | 35 | while (false !== ($row = $db->fetchArray($result))) { |
| 36 | 36 | $db->queryF('INSERT INTO ' |
@@ -51,19 +51,19 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | $tpl_id = $db->getInsertId(); |
| 53 | 53 | |
| 54 | - $db->queryF('INSERT INTO ' . $db->prefix('tplsource') . " SET tpl_id='$tpl_id', tpl_source=''"); |
|
| 54 | + $db->queryF('INSERT INTO '.$db->prefix('tplsource')." SET tpl_id='$tpl_id', tpl_source=''"); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // UPDATE just tpl_lastmodified and tpl_source |
| 60 | 60 | |
| 61 | - $drs = $db->query('SELECT tpl_id FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='" . addslashes($tplset) . "' AND tpl_file='" . addslashes($tpl_file) . "'"); |
|
| 61 | + $drs = $db->query('SELECT tpl_id FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='".addslashes($tplset)."' AND tpl_file='".addslashes($tpl_file)."'"); |
|
| 62 | 62 | |
| 63 | 63 | while (list($tpl_id) = $db->fetchRow($drs)) { |
| 64 | - $db->queryF('UPDATE ' . $db->prefix('tplfile') . " SET tpl_lastmodified='" . addslashes($lastmodified) . "',tpl_lastimported=UNIX_TIMESTAMP() WHERE tpl_id='$tpl_id'"); |
|
| 64 | + $db->queryF('UPDATE '.$db->prefix('tplfile')." SET tpl_lastmodified='".addslashes($lastmodified)."',tpl_lastimported=UNIX_TIMESTAMP() WHERE tpl_id='$tpl_id'"); |
|
| 65 | 65 | |
| 66 | - $db->queryF('UPDATE ' . $db->prefix('tplsource') . " SET tpl_source='" . addslashes($tpl_source) . "' WHERE tpl_id='$tpl_id'"); |
|
| 66 | + $db->queryF('UPDATE '.$db->prefix('tplsource')." SET tpl_source='".addslashes($tpl_source)."' WHERE tpl_id='$tpl_id'"); |
|
| 67 | 67 | |
| 68 | 68 | altsys_template_touch($tpl_id); |
| 69 | 69 | } |
@@ -112,22 +112,22 @@ discard block |
||
| 112 | 112 | while (false !== ($row = $db->fetchArray($result))) { |
| 113 | 113 | $tpl_source = array_pop($row); |
| 114 | 114 | |
| 115 | - $drs = $db->query('SELECT tpl_id FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='" . addslashes($tplset_to) . "' AND ($whr_append) AND tpl_file='" . addslashes($row['tpl_file']) . "' AND tpl_refid='" . addslashes($row['tpl_refid']) . "'"); |
|
| 115 | + $drs = $db->query('SELECT tpl_id FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='".addslashes($tplset_to)."' AND ($whr_append) AND tpl_file='".addslashes($row['tpl_file'])."' AND tpl_refid='".addslashes($row['tpl_refid'])."'"); |
|
| 116 | 116 | |
| 117 | 117 | if (!$db->getRowsNum($drs)) { |
| 118 | 118 | // INSERT mode |
| 119 | 119 | |
| 120 | - $sql = 'INSERT INTO ' . $db->prefix('tplfile') . ' (tpl_refid,tpl_module,tpl_tplset,tpl_file,tpl_desc,tpl_lastmodified,tpl_lastimported,tpl_type) VALUES ('; |
|
| 120 | + $sql = 'INSERT INTO '.$db->prefix('tplfile').' (tpl_refid,tpl_module,tpl_tplset,tpl_file,tpl_desc,tpl_lastmodified,tpl_lastimported,tpl_type) VALUES ('; |
|
| 121 | 121 | |
| 122 | 122 | foreach ($row as $colval) { |
| 123 | - $sql .= "'" . addslashes($colval) . "',"; |
|
| 123 | + $sql .= "'".addslashes($colval)."',"; |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - $db->query(mb_substr($sql, 0, -1) . ')'); |
|
| 126 | + $db->query(mb_substr($sql, 0, -1).')'); |
|
| 127 | 127 | |
| 128 | 128 | $tpl_id = $db->getInsertId(); |
| 129 | 129 | |
| 130 | - $db->query('INSERT INTO ' . $db->prefix('tplsource') . " SET tpl_id='$tpl_id', tpl_source='" . addslashes($tpl_source) . "'"); |
|
| 130 | + $db->query('INSERT INTO '.$db->prefix('tplsource')." SET tpl_id='$tpl_id', tpl_source='".addslashes($tpl_source)."'"); |
|
| 131 | 131 | |
| 132 | 132 | altsys_template_touch($tpl_id); |
| 133 | 133 | } else { |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | . addslashes($row['tpl_type']) |
| 149 | 149 | . "' WHERE tpl_id='$tpl_id'"); |
| 150 | 150 | |
| 151 | - $db->query('UPDATE ' . $db->prefix('tplsource') . " SET tpl_source='" . addslashes($tpl_source) . "' WHERE tpl_id='$tpl_id'"); |
|
| 151 | + $db->query('UPDATE '.$db->prefix('tplsource')." SET tpl_source='".addslashes($tpl_source)."' WHERE tpl_id='$tpl_id'"); |
|
| 152 | 152 | |
| 153 | 153 | altsys_template_touch($tpl_id); |
| 154 | 154 | } |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | // get tplsource |
| 168 | 168 | |
| 169 | - $result = $db->query('SELECT * FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='default' AND ($whr_append)"); |
|
| 169 | + $result = $db->query('SELECT * FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='default' AND ($whr_append)"); |
|
| 170 | 170 | |
| 171 | 171 | while (false !== ($row = $db->fetchArray($result))) { |
| 172 | 172 | $basefilepath = tplsadmin_get_basefilepath($row['tpl_module'], $row['tpl_type'], $row['tpl_file']); |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | $lastmodified = filemtime($basefilepath); |
| 177 | 177 | |
| 178 | - $drs = $db->query('SELECT tpl_id FROM ' . $db->prefix('tplfile') . " WHERE tpl_tplset='" . addslashes($tplset_to) . "' AND ($whr_append) AND tpl_file='" . addslashes($row['tpl_file']) . "' AND tpl_refid='" . addslashes($row['tpl_refid']) . "'"); |
|
| 178 | + $drs = $db->query('SELECT tpl_id FROM '.$db->prefix('tplfile')." WHERE tpl_tplset='".addslashes($tplset_to)."' AND ($whr_append) AND tpl_file='".addslashes($row['tpl_file'])."' AND tpl_refid='".addslashes($row['tpl_refid'])."'"); |
|
| 179 | 179 | |
| 180 | 180 | if (!$db->getRowsNum($drs)) { |
| 181 | 181 | // INSERT mode |
@@ -202,16 +202,16 @@ discard block |
||
| 202 | 202 | |
| 203 | 203 | $tpl_id = $db->getInsertId(); |
| 204 | 204 | |
| 205 | - $db->query('INSERT INTO ' . $db->prefix('tplsource') . " SET tpl_id='$tpl_id', tpl_source='" . addslashes($tpl_source) . "'"); |
|
| 205 | + $db->query('INSERT INTO '.$db->prefix('tplsource')." SET tpl_id='$tpl_id', tpl_source='".addslashes($tpl_source)."'"); |
|
| 206 | 206 | |
| 207 | 207 | altsys_template_touch($tpl_id); |
| 208 | 208 | } else { |
| 209 | 209 | while (list($tpl_id) = $db->fetchRow($drs)) { |
| 210 | 210 | // UPDATE mode |
| 211 | 211 | |
| 212 | - $db->query('UPDATE ' . $db->prefix('tplfile') . " SET tpl_lastmodified='" . addslashes($lastmodified) . "' WHERE tpl_id='$tpl_id'"); |
|
| 212 | + $db->query('UPDATE '.$db->prefix('tplfile')." SET tpl_lastmodified='".addslashes($lastmodified)."' WHERE tpl_id='$tpl_id'"); |
|
| 213 | 213 | |
| 214 | - $db->query('UPDATE ' . $db->prefix('tplsource') . " SET tpl_source='" . addslashes($tpl_source) . "' WHERE tpl_id='$tpl_id'"); |
|
| 214 | + $db->query('UPDATE '.$db->prefix('tplsource')." SET tpl_source='".addslashes($tpl_source)."' WHERE tpl_id='$tpl_id'"); |
|
| 215 | 215 | |
| 216 | 216 | altsys_template_touch($tpl_id); |
| 217 | 217 | } |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | { |
| 230 | 230 | // module instance |
| 231 | 231 | |
| 232 | - $path = $basefilepath = XOOPS_ROOT_PATH . '/modules/' . $dirname . '/templates/' . ('block' == $type ? 'blocks/' : '') . $tpl_file; |
|
| 232 | + $path = $basefilepath = XOOPS_ROOT_PATH.'/modules/'.$dirname.'/templates/'.('block' == $type ? 'blocks/' : '').$tpl_file; |
|
| 233 | 233 | |
| 234 | 234 | if (is_callable('Legacy_Utils::getTrustDirnameByDirname')) { |
| 235 | 235 | $mytrustdirname = Legacy_Utils::getTrustDirnameByDirname($dirname); |
@@ -240,19 +240,19 @@ discard block |
||
| 240 | 240 | if (defined('ALTSYS_TPLSADMIN_BASEPATH')) { |
| 241 | 241 | // Special hook |
| 242 | 242 | |
| 243 | - $path = ALTSYS_TPLSADMIN_BASEPATH . '/' . mb_substr($tpl_file, mb_strlen($dirname) + 1); |
|
| 244 | - } elseif ($mytrustdirname || @include XOOPS_ROOT_PATH . '/modules/' . $dirname . '/mytrustdirname.php') { |
|
| 243 | + $path = ALTSYS_TPLSADMIN_BASEPATH.'/'.mb_substr($tpl_file, mb_strlen($dirname) + 1); |
|
| 244 | + } elseif ($mytrustdirname || @include XOOPS_ROOT_PATH.'/modules/'.$dirname.'/mytrustdirname.php') { |
|
| 245 | 245 | // D3 module base |
| 246 | 246 | |
| 247 | 247 | if (!empty($mytrustdirname)) { |
| 248 | 248 | $mid_path = 'altsys' == $mytrustdirname ? '/libs/' : '/modules/'; |
| 249 | 249 | |
| 250 | - $path = XOOPS_TRUST_PATH . $mid_path . $mytrustdirname . '/templates/' . ('block' == $type ? 'blocks/' : '') . mb_substr($tpl_file, mb_strlen($dirname) + 1); |
|
| 250 | + $path = XOOPS_TRUST_PATH.$mid_path.$mytrustdirname.'/templates/'.('block' == $type ? 'blocks/' : '').mb_substr($tpl_file, mb_strlen($dirname) + 1); |
|
| 251 | 251 | |
| 252 | 252 | //new for xcck etc.other trust_module |
| 253 | 253 | |
| 254 | 254 | if (!file_exists($path)) { |
| 255 | - $path = XOOPS_TRUST_PATH . $mid_path . $mytrustdirname . '/templates/' . ('block' == $type ? 'blocks/' : '') . $tpl_file; |
|
| 255 | + $path = XOOPS_TRUST_PATH.$mid_path.$mytrustdirname.'/templates/'.('block' == $type ? 'blocks/' : '').$tpl_file; |
|
| 256 | 256 | |
| 257 | 257 | if (!file_exists($path)) { |
| 258 | 258 | $path = $basefilepath; |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | function tplsadmin_die($msg, $target_dirname = '', $wait = 2) |
| 273 | 273 | { |
| 274 | 274 | if ('post' === mb_strtolower($_SERVER['REQUEST_METHOD'])) { |
| 275 | - redirect_header('?mode=admin&lib=altsys&page=mytplsadmin&dirname=' . $target_dirname, $wait, $msg); |
|
| 275 | + redirect_header('?mode=admin&lib=altsys&page=mytplsadmin&dirname='.$target_dirname, $wait, $msg); |
|
| 276 | 276 | |
| 277 | 277 | exit; |
| 278 | 278 | } |
@@ -29,13 +29,13 @@ |
||
| 29 | 29 | $xoopsTpl->xoops_setDebugging(true); |
| 30 | 30 | } |
| 31 | 31 | $xoopsTpl->assign([ |
| 32 | - 'xoops_theme' => $xoopsConfig['theme_set'], |
|
| 33 | - 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 34 | - 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
|
| 35 | - 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
|
| 36 | - 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
|
| 37 | - 'xoops_slogan' => htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES), |
|
| 38 | - ]); |
|
| 32 | + 'xoops_theme' => $xoopsConfig['theme_set'], |
|
| 33 | + 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 34 | + 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
|
| 35 | + 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
|
| 36 | + 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
|
| 37 | + 'xoops_slogan' => htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES), |
|
| 38 | + ]); |
|
| 39 | 39 | // Meta tags |
| 40 | 40 | $configHandler = xoops_getHandler('config'); |
| 41 | 41 | $criteria = new CriteriaCompo(new Criteria('conf_modid', 0)); |
@@ -17,12 +17,12 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | // This is a mimic file from header.php of 2.0.16-JP |
| 19 | 19 | |
| 20 | -require_once dirname(__DIR__) . '/class/AltsysBreadcrumbs.class.php'; |
|
| 21 | -include_once XOOPS_ROOT_PATH . '/class/xoopsblock.php'; |
|
| 20 | +require_once dirname(__DIR__).'/class/AltsysBreadcrumbs.class.php'; |
|
| 21 | +include_once XOOPS_ROOT_PATH.'/class/xoopsblock.php'; |
|
| 22 | 22 | |
| 23 | 23 | $xoopsOption['theme_use_smarty'] = 1; |
| 24 | 24 | // include Smarty template engine and initialize it |
| 25 | -require_once XOOPS_ROOT_PATH . '/class/template.php'; |
|
| 25 | +require_once XOOPS_ROOT_PATH.'/class/template.php'; |
|
| 26 | 26 | $xoopsTpl = new XoopsTpl(); |
| 27 | 27 | $xoopsTpl->xoops_setCaching(2); |
| 28 | 28 | if (3 == $xoopsConfig['debug_mode']) { |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | } |
| 31 | 31 | $xoopsTpl->assign([ |
| 32 | 32 | 'xoops_theme' => $xoopsConfig['theme_set'], |
| 33 | - 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 33 | + 'xoops_imageurl' => XOOPS_THEME_URL.'/'.$xoopsConfig['theme_set'].'/', |
|
| 34 | 34 | 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
| 35 | 35 | 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
| 36 | 36 | 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | foreach (array_keys($config) as $i) { |
| 45 | 45 | // prefix each tag with 'xoops_' |
| 46 | 46 | |
| 47 | - $xoopsTpl->assign('xoops_' . $config[$i]->getVar('conf_name'), $config[$i]->getConfValueForOutput()); |
|
| 47 | + $xoopsTpl->assign('xoops_'.$config[$i]->getVar('conf_name'), $config[$i]->getConfValueForOutput()); |
|
| 48 | 48 | } |
| 49 | 49 | //unset($config); |
| 50 | 50 | // Weird, but need extra <script> tags for 2.0.x themes |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | if ($breadcrumbsObj->hasPaths()) { |
| 86 | 86 | $xoops_breadcrumbs = $breadcrumbsObj->getXoopsBreadcrumbs(); |
| 87 | 87 | } else { |
| 88 | - $mod_url = XOOPS_URL . '/modules/' . $target_module->getVar('dirname'); |
|
| 88 | + $mod_url = XOOPS_URL.'/modules/'.$target_module->getVar('dirname'); |
|
| 89 | 89 | |
| 90 | - $mod_path = XOOPS_ROOT_PATH . '/modules/' . $target_module->getVar('dirname'); |
|
| 90 | + $mod_path = XOOPS_ROOT_PATH.'/modules/'.$target_module->getVar('dirname'); |
|
| 91 | 91 | |
| 92 | 92 | $modinfo = &$target_module->getInfo(); |
| 93 | 93 | |
@@ -95,14 +95,14 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | if (!empty($modinfo['hasMain'])) { |
| 97 | 97 | $xoops_breadcrumbs[] = [ |
| 98 | - 'url' => $mod_url . '/', |
|
| 98 | + 'url' => $mod_url.'/', |
|
| 99 | 99 | 'name' => sprintf(_MD_A_AINTHEME_FMT_PUBLICTOP, $target_module->getVar('name')), |
| 100 | 100 | ]; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | if (!empty($modinfo['adminindex'])) { |
| 104 | 104 | $xoops_breadcrumbs[] = [ |
| 105 | - 'url' => $mod_url . '/' . $modinfo['adminindex'], |
|
| 105 | + 'url' => $mod_url.'/'.$modinfo['adminindex'], |
|
| 106 | 106 | 'name' => sprintf(_MD_A_AINTHEME_FMT_ADMINTOP, $target_module->getVar('name')), |
| 107 | 107 | ]; |
| 108 | 108 | } |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | if (!empty($GLOBALS['altsysAdminPageTitle'])) { |
| 111 | 111 | $xoops_breadcrumbs[] = ['name' => htmlspecialchars($GLOBALS['altsysAdminPageTitle'], ENT_QUOTES)]; |
| 112 | 112 | } elseif (!empty($modinfo['adminmenu'])) { |
| 113 | - @include $mod_path . '/' . $modinfo['adminmenu']; |
|
| 113 | + @include $mod_path.'/'.$modinfo['adminmenu']; |
|
| 114 | 114 | |
| 115 | 115 | if (is_array(@$adminmenu)) { |
| 116 | 116 | foreach ($adminmenu as $eachmenu) { |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | |
| 131 | 131 | $xoops_breadcrumbs = [ |
| 132 | 132 | [ |
| 133 | - 'url' => XOOPS_URL . '/admin.php', |
|
| 133 | + 'url' => XOOPS_URL.'/admin.php', |
|
| 134 | 134 | 'name' => _CPHOME, |
| 135 | 135 | ], |
| 136 | 136 | ]; |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | // get block_arr |
| 143 | 143 | $db = XoopsDatabaseFactory::getDatabaseConnection(); |
| 144 | -$sql = 'SELECT DISTINCT gperm_itemid FROM ' . $db->prefix('group_permission') . " WHERE gperm_name = 'block_read' AND gperm_modid = 1 AND gperm_groupid IN (" . implode(',', $xoopsUser->getGroups()) . ')'; |
|
| 144 | +$sql = 'SELECT DISTINCT gperm_itemid FROM '.$db->prefix('group_permission')." WHERE gperm_name = 'block_read' AND gperm_modid = 1 AND gperm_groupid IN (".implode(',', $xoopsUser->getGroups()).')'; |
|
| 145 | 145 | $result = $db->query($sql); |
| 146 | 146 | |
| 147 | 147 | $blockids = []; |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | global $block_arr, $i; // for piCal :-) |
| 153 | 153 | $block_arr = []; |
| 154 | 154 | if (!empty($blockids)) { |
| 155 | - $sql = 'SELECT b.* FROM ' . $db->prefix('newblocks') . ' b, ' . $db->prefix('block_module_link') . ' m WHERE m.block_id=b.bid AND b.isactive=1 AND b.visible=1 AND m.module_id=' . (int)$altsysModuleId . ' AND b.bid IN (' . implode(',', $blockids) . ') ORDER BY b.weight,b.bid'; |
|
| 155 | + $sql = 'SELECT b.* FROM '.$db->prefix('newblocks').' b, '.$db->prefix('block_module_link').' m WHERE m.block_id=b.bid AND b.isactive=1 AND b.visible=1 AND m.module_id='.(int)$altsysModuleId.' AND b.bid IN ('.implode(',', $blockids).') ORDER BY b.weight,b.bid'; |
|
| 156 | 156 | |
| 157 | 157 | $result = $db->query($sql); |
| 158 | 158 | |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | $btpl = $block_arr[$i]->getVar('template'); |
| 191 | 191 | |
| 192 | 192 | if ('' != $btpl) { |
| 193 | - if (empty($bcachetime) || !$xoopsTpl->is_cached('db:' . $btpl, 'blk_' . $block_arr[$i]->getVar('bid'))) { |
|
| 193 | + if (empty($bcachetime) || !$xoopsTpl->is_cached('db:'.$btpl, 'blk_'.$block_arr[$i]->getVar('bid'))) { |
|
| 194 | 194 | $xoopsLogger->addBlock($block_arr[$i]->getVar('name')); |
| 195 | 195 | |
| 196 | 196 | $bresult = $block_arr[$i]->buildBlock(); |
@@ -201,18 +201,18 @@ discard block |
||
| 201 | 201 | |
| 202 | 202 | $xoopsTpl->assign_by_ref('block', $bresult); |
| 203 | 203 | |
| 204 | - $bcontent = $xoopsTpl->fetch('db:' . $btpl, 'blk_' . $block_arr[$i]->getVar('bid')); |
|
| 204 | + $bcontent = $xoopsTpl->fetch('db:'.$btpl, 'blk_'.$block_arr[$i]->getVar('bid')); |
|
| 205 | 205 | |
| 206 | 206 | $xoopsTpl->clear_assign('block'); |
| 207 | 207 | } else { |
| 208 | 208 | $xoopsLogger->addBlock($block_arr[$i]->getVar('name'), true, $bcachetime); |
| 209 | 209 | |
| 210 | - $bcontent = $xoopsTpl->fetch('db:' . $btpl, 'blk_' . $block_arr[$i]->getVar('bid')); |
|
| 210 | + $bcontent = $xoopsTpl->fetch('db:'.$btpl, 'blk_'.$block_arr[$i]->getVar('bid')); |
|
| 211 | 211 | } |
| 212 | 212 | } else { |
| 213 | 213 | $bid = $block_arr[$i]->getVar('bid'); |
| 214 | 214 | |
| 215 | - if (empty($bcachetime) || !$xoopsTpl->is_cached('db:system_dummy.tpl', 'blk_' . $bid)) { |
|
| 215 | + if (empty($bcachetime) || !$xoopsTpl->is_cached('db:system_dummy.tpl', 'blk_'.$bid)) { |
|
| 216 | 216 | $xoopsLogger->addBlock($block_arr[$i]->getVar('name')); |
| 217 | 217 | |
| 218 | 218 | $bresult = $block_arr[$i]->buildBlock(); |
@@ -223,13 +223,13 @@ discard block |
||
| 223 | 223 | |
| 224 | 224 | $xoopsTpl->assign_by_ref('dummy_content', $bresult['content']); |
| 225 | 225 | |
| 226 | - $bcontent = $xoopsTpl->fetch('db:system_dummy.tpl', 'blk_' . $bid); |
|
| 226 | + $bcontent = $xoopsTpl->fetch('db:system_dummy.tpl', 'blk_'.$bid); |
|
| 227 | 227 | |
| 228 | 228 | $xoopsTpl->clear_assign('block'); |
| 229 | 229 | } else { |
| 230 | 230 | $xoopsLogger->addBlock($block_arr[$i]->getVar('name'), true, $bcachetime); |
| 231 | 231 | |
| 232 | - $bcontent = $xoopsTpl->fetch('db:system_dummy.tpl', 'blk_' . $bid); |
|
| 232 | + $bcontent = $xoopsTpl->fetch('db:system_dummy.tpl', 'blk_'.$bid); |
|
| 233 | 233 | } |
| 234 | 234 | } |
| 235 | 235 | |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | |
| 282 | 282 | // FALLBACK inserting admin_menu_block in admin side |
| 283 | 283 | if (!$adminmenublock_exists) { |
| 284 | - require_once XOOPS_ROOT_PATH . '/modules/altsys/blocks/blocks.php'; |
|
| 284 | + require_once XOOPS_ROOT_PATH.'/modules/altsys/blocks/blocks.php'; |
|
| 285 | 285 | |
| 286 | 286 | $admin_menu_block = [b_altsys_admin_menu_show(['altsys'])]; |
| 287 | 287 | |
@@ -162,20 +162,20 @@ |
||
| 162 | 162 | // assignment |
| 163 | 163 | |
| 164 | 164 | $xoopsTpl->assign([ |
| 165 | - 'xoops_theme' => $xoopsConfig['theme_set'], |
|
| 166 | - 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 167 | - 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
|
| 168 | - 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
|
| 169 | - 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
|
| 170 | - 'xoops_showlblock' => 1, |
|
| 171 | - // 'xoops_js' => '//--></script><script type="text/javascript" src="'.XOOPS_URL.'/include/xoops.js"></script><script type="text/javascript" src="'.XOOPS_URL.'/include/layersmenu.js"></script><script type="text/javascript"><!--'."\n".$xoops_admin_menu_js , |
|
| 172 | - 'xoops_js' => '//--></script><script type="text/javascript" src="' . XOOPS_URL . '/include/xoops.js"></script><script type="text/javascript"><!--' . "\n", |
|
| 173 | - 'xoops_runs_admin_side' => 1, |
|
| 174 | - 'xoops_breadcrumbs' => $xoops_breadcrumbs, |
|
| 175 | - 'xoops_slogan' => htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES), |
|
| 176 | - 'xoops_contents' => $xoops_admin_contents, //. '<div id="adminmenu_layers">' . $xoops_admin_menu_dv . '</div>' , |
|
| 177 | - 'xoops_module_header' => $xoops_module_header, |
|
| 178 | - ]); |
|
| 165 | + 'xoops_theme' => $xoopsConfig['theme_set'], |
|
| 166 | + 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 167 | + 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
|
| 168 | + 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
|
| 169 | + 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
|
| 170 | + 'xoops_showlblock' => 1, |
|
| 171 | + // 'xoops_js' => '//--></script><script type="text/javascript" src="'.XOOPS_URL.'/include/xoops.js"></script><script type="text/javascript" src="'.XOOPS_URL.'/include/layersmenu.js"></script><script type="text/javascript"><!--'."\n".$xoops_admin_menu_js , |
|
| 172 | + 'xoops_js' => '//--></script><script type="text/javascript" src="' . XOOPS_URL . '/include/xoops.js"></script><script type="text/javascript"><!--' . "\n", |
|
| 173 | + 'xoops_runs_admin_side' => 1, |
|
| 174 | + 'xoops_breadcrumbs' => $xoops_breadcrumbs, |
|
| 175 | + 'xoops_slogan' => htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES), |
|
| 176 | + 'xoops_contents' => $xoops_admin_contents, //. '<div id="adminmenu_layers">' . $xoops_admin_menu_dv . '</div>' , |
|
| 177 | + 'xoops_module_header' => $xoops_module_header, |
|
| 178 | + ]); |
|
| 179 | 179 | |
| 180 | 180 | // rendering |
| 181 | 181 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | return $s; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - list($tmp_s, $tmp_after) = explode("<td width='1%' background='" . XOOPS_URL . "/modules/system/images/bg_content.gif'>", $tmp_s); |
|
| 49 | + list($tmp_s, $tmp_after) = explode("<td width='1%' background='".XOOPS_URL."/modules/system/images/bg_content.gif'>", $tmp_s); |
|
| 50 | 50 | |
| 51 | 51 | if (empty($tmp_after)) { |
| 52 | 52 | define('ALTSYS_DONT_USE_ADMIN_IN_THEME', 1); |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | return $s; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - $xoops_admin_contents = $former_outputs . mb_substr(strrev(mb_strstr(strrev($tmp_s), strrev('</div>'))), 0, -6); |
|
| 57 | + $xoops_admin_contents = $former_outputs.mb_substr(strrev(mb_strstr(strrev($tmp_s), strrev('</div>'))), 0, -6); |
|
| 58 | 58 | |
| 59 | 59 | return ''; |
| 60 | 60 | } |
@@ -88,10 +88,10 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | // language files |
| 90 | 90 | |
| 91 | - if (is_file(dirname(__DIR__) . '/language/' . $xoopsConfig['language'] . '/admin_in_theme.php')) { |
|
| 92 | - include_once dirname(__DIR__) . '/language/' . $xoopsConfig['language'] . '/admin_in_theme.php'; |
|
| 91 | + if (is_file(dirname(__DIR__).'/language/'.$xoopsConfig['language'].'/admin_in_theme.php')) { |
|
| 92 | + include_once dirname(__DIR__).'/language/'.$xoopsConfig['language'].'/admin_in_theme.php'; |
|
| 93 | 93 | } else { |
| 94 | - include_once dirname(__DIR__) . '/language/english/admin_in_theme.php'; |
|
| 94 | + include_once dirname(__DIR__).'/language/english/admin_in_theme.php'; |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | // set the theme |
@@ -104,15 +104,15 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | error_reporting($original_error_level & ~E_NOTICE); |
| 106 | 106 | |
| 107 | - if (is_file(XOOPS_THEME_PATH . '/' . $xoopsConfig['theme_set'] . '/language/' . $xoopsConfig['language'] . '.php')) { |
|
| 108 | - include_once XOOPS_THEME_PATH . '/' . $xoopsConfig['theme_set'] . '/language/' . $xoopsConfig['language'] . '.php'; |
|
| 109 | - } elseif (is_file(XOOPS_THEME_PATH . '/' . $xoopsConfig['theme_set'] . '/language/english.php')) { |
|
| 110 | - include_once XOOPS_THEME_PATH . '/' . $xoopsConfig['theme_set'] . '/language/english.php'; |
|
| 107 | + if (is_file(XOOPS_THEME_PATH.'/'.$xoopsConfig['theme_set'].'/language/'.$xoopsConfig['language'].'.php')) { |
|
| 108 | + include_once XOOPS_THEME_PATH.'/'.$xoopsConfig['theme_set'].'/language/'.$xoopsConfig['language'].'.php'; |
|
| 109 | + } elseif (is_file(XOOPS_THEME_PATH.'/'.$xoopsConfig['theme_set'].'/language/english.php')) { |
|
| 110 | + include_once XOOPS_THEME_PATH.'/'.$xoopsConfig['theme_set'].'/language/english.php'; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | error_reporting($original_error_level); |
| 114 | 114 | |
| 115 | - include __DIR__ . '/admin_in_theme_header.inc.php'; |
|
| 115 | + include __DIR__.'/admin_in_theme_header.inc.php'; |
|
| 116 | 116 | |
| 117 | 117 | /* // include adminmenu |
| 118 | 118 | include XOOPS_CACHE_PATH.'/adminmenu.php' ; |
@@ -152,10 +152,10 @@ discard block |
||
| 152 | 152 | $xoops_module_header = ''; |
| 153 | 153 | |
| 154 | 154 | if (ALTSYS_CORE_TYPE_XCL21 == altsys_get_core_type()) { |
| 155 | - $xoops_module_header .= '<link rel="stylesheet" type="text/css" media="all" href="' . XOOPS_URL . '/modules/legacyRender/admin/css.php?file=style.css" />' . "\n"; |
|
| 155 | + $xoops_module_header .= '<link rel="stylesheet" type="text/css" media="all" href="'.XOOPS_URL.'/modules/legacyRender/admin/css.php?file=style.css" />'."\n"; |
|
| 156 | 156 | |
| 157 | 157 | if (is_object(@$xoopsModule)) { |
| 158 | - $xoops_module_header .= '<link rel="stylesheet" type="text/css" media="all" href="' . XOOPS_URL . '/modules/legacyRender/admin/css.php?file=module.css&dirname=' . $xoopsModule->getVar('dirname') . '" />' . "\n"; |
|
| 158 | + $xoops_module_header .= '<link rel="stylesheet" type="text/css" media="all" href="'.XOOPS_URL.'/modules/legacyRender/admin/css.php?file=module.css&dirname='.$xoopsModule->getVar('dirname').'" />'."\n"; |
|
| 159 | 159 | } |
| 160 | 160 | } |
| 161 | 161 | |
@@ -163,13 +163,13 @@ discard block |
||
| 163 | 163 | |
| 164 | 164 | $xoopsTpl->assign([ |
| 165 | 165 | 'xoops_theme' => $xoopsConfig['theme_set'], |
| 166 | - 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', |
|
| 166 | + 'xoops_imageurl' => XOOPS_THEME_URL.'/'.$xoopsConfig['theme_set'].'/', |
|
| 167 | 167 | 'xoops_themecss' => xoops_getcss($xoopsConfig['theme_set']), |
| 168 | 168 | 'xoops_requesturi' => htmlspecialchars($GLOBALS['xoopsRequestUri'], ENT_QUOTES), |
| 169 | 169 | 'xoops_sitename' => htmlspecialchars($xoopsConfig['sitename'], ENT_QUOTES), |
| 170 | 170 | 'xoops_showlblock' => 1, |
| 171 | 171 | // 'xoops_js' => '//--></script><script type="text/javascript" src="'.XOOPS_URL.'/include/xoops.js"></script><script type="text/javascript" src="'.XOOPS_URL.'/include/layersmenu.js"></script><script type="text/javascript"><!--'."\n".$xoops_admin_menu_js , |
| 172 | - 'xoops_js' => '//--></script><script type="text/javascript" src="' . XOOPS_URL . '/include/xoops.js"></script><script type="text/javascript"><!--' . "\n", |
|
| 172 | + 'xoops_js' => '//--></script><script type="text/javascript" src="'.XOOPS_URL.'/include/xoops.js"></script><script type="text/javascript"><!--'."\n", |
|
| 173 | 173 | 'xoops_runs_admin_side' => 1, |
| 174 | 174 | 'xoops_breadcrumbs' => $xoops_breadcrumbs, |
| 175 | 175 | 'xoops_slogan' => htmlspecialchars($xoopsConfig['slogan'], ENT_QUOTES), |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | // rendering |
| 181 | 181 | |
| 182 | - $xoopsTpl->display($xoopsConfig['theme_set'] . '/theme.html'); |
|
| 182 | + $xoopsTpl->display($xoopsConfig['theme_set'].'/theme.html'); |
|
| 183 | 183 | |
| 184 | 184 | // for XOOPS 2.0.14/15/16 from xoops.org |
| 185 | 185 | |
@@ -7,12 +7,12 @@ |
||
| 7 | 7 | if (preg_match('#(^/admin.php|^/modules/system/|^/modules/[a-zA-Z0-9_.-]+/admin/)#', $xoops_subpath)) { |
| 8 | 8 | // The request looks like admin |
| 9 | 9 | |
| 10 | - require_once __DIR__ . '/altsys_functions.php'; |
|
| 10 | + require_once __DIR__.'/altsys_functions.php'; |
|
| 11 | 11 | |
| 12 | - if (!empty($GLOBALS['altsysModuleConfig']['admin_in_theme']) && file_exists(XOOPS_THEME_PATH . '/' . $GLOBALS['altsysModuleConfig']['admin_in_theme'] . '/theme.html')) { |
|
| 12 | + if (!empty($GLOBALS['altsysModuleConfig']['admin_in_theme']) && file_exists(XOOPS_THEME_PATH.'/'.$GLOBALS['altsysModuleConfig']['admin_in_theme'].'/theme.html')) { |
|
| 13 | 13 | // configs OK |
| 14 | 14 | |
| 15 | - require_once __DIR__ . '/admin_in_theme_functions.php'; |
|
| 15 | + require_once __DIR__.'/admin_in_theme_functions.php'; |
|
| 16 | 16 | |
| 17 | 17 | // for security with register_globals=1 |
| 18 | 18 | |
@@ -34,11 +34,11 @@ discard block |
||
| 34 | 34 | public function _blockHeader($xbeg, $xlen, $ybeg, $ylen) |
| 35 | 35 | { |
| 36 | 36 | if (1 != $xlen) { |
| 37 | - $xbeg .= ',' . $xlen; |
|
| 37 | + $xbeg .= ','.$xlen; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | if (1 != $ylen) { |
| 41 | - $ybeg .= ',' . $ylen; |
|
| 41 | + $ybeg .= ','.$ylen; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | return "@@ -$xbeg +$ybeg @@"; |
@@ -72,6 +72,6 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | public function _changed($orig, $final) |
| 74 | 74 | { |
| 75 | - return $this->_deleted($orig) . $this->_added($final); |
|
| 75 | + return $this->_deleted($orig).$this->_added($final); |
|
| 76 | 76 | } |
| 77 | 77 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | /** |
| 30 | 30 | * Parent |
| 31 | 31 | */ |
| 32 | -include_once XOOPS_ROOT_PATH . '/class/xoopsform/formcheckbox.php'; |
|
| 32 | +include_once XOOPS_ROOT_PATH.'/class/xoopsform/formcheckbox.php'; |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * A checkbox field with a choice of available groups |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | foreach ($options as $k => $v) { |
| 67 | - $options[$k] = $v . '<br />'; |
|
| 67 | + $options[$k] = $v.'<br />'; |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | $this->addOptionArray($options); |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once XOOPS_ROOT_PATH . '/modules/legacyRender/kernel/Legacy_AdminRenderSystem.class.php'; |
|
| 4 | -require_once XOOPS_TRUST_PATH . '/libs/altsys/include/altsys_functions.php'; |
|
| 5 | -require_once XOOPS_TRUST_PATH . '/libs/altsys/include/admin_in_theme_functions.php'; |
|
| 3 | +require_once XOOPS_ROOT_PATH.'/modules/legacyRender/kernel/Legacy_AdminRenderSystem.class.php'; |
|
| 4 | +require_once XOOPS_TRUST_PATH.'/libs/altsys/include/altsys_functions.php'; |
|
| 5 | +require_once XOOPS_TRUST_PATH.'/libs/altsys/include/admin_in_theme_functions.php'; |
|
| 6 | 6 | |
| 7 | 7 | /** |
| 8 | 8 | * Class Legacy_AltsysAdminRenderSystem |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | $already_read = false; |
| 17 | 17 | |
| 18 | - $langfile_fingerprint = '_MYLANGADMIN_' . md5($langfile_unique_path); |
|
| 18 | + $langfile_fingerprint = '_MYLANGADMIN_'.md5($langfile_unique_path); |
|
| 19 | 19 | |
| 20 | 20 | // for debug |
| 21 | 21 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | // modinfo.php of D3 module |
| 43 | 43 | |
| 44 | - if (empty($langfile_names) && file_exists(XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/mytrustdirname.php') /* && substr( $langfile_unique_path , -11 ) == 'modinfo.php' */) { |
|
| 44 | + if (empty($langfile_names) && file_exists(XOOPS_ROOT_PATH.'/modules/'.$mydirname.'/mytrustdirname.php') /* && substr( $langfile_unique_path , -11 ) == 'modinfo.php' */) { |
|
| 45 | 45 | // get $constpref |
| 46 | 46 | |
| 47 | 47 | $constpref = ''; |
@@ -122,13 +122,13 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | $breadcrumbsObj = AltsysBreadcrumbs::getInstance(); |
| 124 | 124 | |
| 125 | - $breadcrumbsObj->appendPath(XOOPS_URL . '/modules/altsys/admin/index.php?mode=admin&lib=altsys&page=mylangadmin', _MI_ALTSYS_MENU_MYLANGADMIN); |
|
| 125 | + $breadcrumbsObj->appendPath(XOOPS_URL.'/modules/altsys/admin/index.php?mode=admin&lib=altsys&page=mylangadmin', _MI_ALTSYS_MENU_MYLANGADMIN); |
|
| 126 | 126 | |
| 127 | 127 | $breadcrumbsObj->appendPath('', $target_mname); |
| 128 | 128 | |
| 129 | - echo '<h3>' . _MYLANGADMIN_H3_MODULE . ' : ' . $target_mname . '</h3>'; |
|
| 129 | + echo '<h3>'._MYLANGADMIN_H3_MODULE.' : '.$target_mname.'</h3>'; |
|
| 130 | 130 | |
| 131 | - echo '<p>' . $message4disp . '</p>'; |
|
| 131 | + echo '<p>'.$message4disp.'</p>'; |
|
| 132 | 132 | |
| 133 | 133 | xoops_cp_footer(); |
| 134 | 134 | |
@@ -3,10 +3,10 @@ |
||
| 3 | 3 | if (defined('FOR_XOOPS_LANG_CHECKER')) { |
| 4 | 4 | $mydirname = 'd3forum'; |
| 5 | 5 | } |
| 6 | -$constpref = '_MB_' . mb_strtoupper($mydirname); |
|
| 6 | +$constpref = '_MB_'.mb_strtoupper($mydirname); |
|
| 7 | 7 | |
| 8 | -if (defined('FOR_XOOPS_LANG_CHECKER') || !defined($constpref . '_LOADED')) { |
|
| 9 | - define($constpref . '_LOADED', 1); |
|
| 8 | +if (defined('FOR_XOOPS_LANG_CHECKER') || !defined($constpref.'_LOADED')) { |
|
| 9 | + define($constpref.'_LOADED', 1); |
|
| 10 | 10 | |
| 11 | 11 | // definitions for displaying blocks |
| 12 | 12 | // Since altsys is a singleton moudle, this file has non-sense. |