@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if( ! function_exists('f_owc')){ |
|
| 2 | +if (!function_exists('f_owc')) { |
|
| 3 | 3 | /** |
| 4 | 4 | * @param $path |
| 5 | 5 | * @param $data |
@@ -12,30 +12,30 @@ discard block |
||
| 12 | 12 | fwrite($hnd, $data); |
| 13 | 13 | fclose($hnd); |
| 14 | 14 | |
| 15 | - if(null !== $mode) chmod($path, $mode); |
|
| 16 | - }catch(Exception $e){ |
|
| 15 | + if (null !== $mode) chmod($path, $mode); |
|
| 16 | + } catch (Exception $e) { |
|
| 17 | 17 | // Nothing, this is NOT normal |
| 18 | 18 | unset($e); |
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
| 24 | -if( ! isset($_lang)) $_lang = array(); |
|
| 23 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
| 24 | +if (!isset($_lang)) $_lang = array(); |
|
| 25 | 25 | |
| 26 | 26 | echo '<div class="stepcontainer"> |
| 27 | 27 | <ul class="progressbar"> |
| 28 | - <li class="visited">' . $_lang['choose_language'] . '</li> |
|
| 29 | - <li class="visited">' . $_lang['installation_mode'] . '</li> |
|
| 30 | - <li class="visited">' . $_lang['optional_items'] . '</li> |
|
| 31 | - <li class="active">' . $_lang['preinstall_validation'] . '</li> |
|
| 32 | - <li>' . $_lang['install_results'] . '</li> |
|
| 28 | + <li class="visited">' . $_lang['choose_language'].'</li> |
|
| 29 | + <li class="visited">' . $_lang['installation_mode'].'</li> |
|
| 30 | + <li class="visited">' . $_lang['optional_items'].'</li> |
|
| 31 | + <li class="active">' . $_lang['preinstall_validation'].'</li> |
|
| 32 | + <li>' . $_lang['install_results'].'</li> |
|
| 33 | 33 | </ul> |
| 34 | 34 | <div class="clearleft"></div> |
| 35 | 35 | </div>'; |
| 36 | 36 | |
| 37 | -echo '<h2>' . $_lang['preinstall_validation'] . '</h2>'; |
|
| 38 | -echo '<h3>' . $_lang['summary_setup_check'] . '</h3>'; |
|
| 37 | +echo '<h2>'.$_lang['preinstall_validation'].'</h2>'; |
|
| 38 | +echo '<h3>'.$_lang['summary_setup_check'].'</h3>'; |
|
| 39 | 39 | |
| 40 | 40 | $errors = 0; |
| 41 | 41 | |
@@ -43,73 +43,73 @@ discard block |
||
| 43 | 43 | // check PHP version |
| 44 | 44 | define('PHP_MIN_VERSION', '5.4.0'); |
| 45 | 45 | $phpMinVersion = PHP_MIN_VERSION; // Maybe not necessary. For backward compatibility |
| 46 | -echo '<p>' . $_lang['checking_php_version']; |
|
| 46 | +echo '<p>'.$_lang['checking_php_version']; |
|
| 47 | 47 | // -1 if left is less, 0 if equal, +1 if left is higher |
| 48 | 48 | if (version_compare(phpversion(), PHP_MIN_VERSION) < 0) { |
| 49 | 49 | $errors++; |
| 50 | - $tmp = $_lang['you_running_php'] . phpversion() . str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
| 51 | - echo '<span class="notok">' . $_lang['failed'] . '</span>' . $tmp . '</p>'; |
|
| 50 | + $tmp = $_lang['you_running_php'].phpversion().str_replace('[+min_version+]', PHP_MIN_VERSION, $_lang["modx_requires_php"]); |
|
| 51 | + echo '<span class="notok">'.$_lang['failed'].'</span>'.$tmp.'</p>'; |
|
| 52 | 52 | } else { |
| 53 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 53 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | |
| 57 | 57 | // check if iconv is available |
| 58 | -echo '<p>' . $_lang['checking_iconv']; |
|
| 58 | +echo '<p>'.$_lang['checking_iconv']; |
|
| 59 | 59 | $iconv = (int) function_exists('iconv'); |
| 60 | -if ($iconv == '0'){ |
|
| 61 | - echo '<span class="notok">' . $_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
| 60 | +if ($iconv == '0') { |
|
| 61 | + echo '<span class="notok">'.$_lang['failed'].'</span></p><p><strong>'.$_lang['checking_iconv_note'].'</strong></p>'; |
|
| 62 | 62 | $errors++; |
| 63 | 63 | } else { |
| 64 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 64 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 65 | 65 | } |
| 66 | 66 | // check sessions |
| 67 | -echo '<p>' . $_lang['checking_sessions']; |
|
| 67 | +echo '<p>'.$_lang['checking_sessions']; |
|
| 68 | 68 | if ($_SESSION['test'] != 1) { |
| 69 | - echo '<span class="notok">' . $_lang['failed']. '</span></p>'; |
|
| 69 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
| 70 | 70 | $errors++; |
| 71 | 71 | } else { |
| 72 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 72 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | |
| 76 | 76 | // check directories |
| 77 | 77 | // cache exists? |
| 78 | -echo '<p>' . $_lang['checking_if_cache_exist']; |
|
| 78 | +echo '<p>'.$_lang['checking_if_cache_exist']; |
|
| 79 | 79 | if (!file_exists("../assets/cache") || !file_exists("../assets/cache/rss")) { |
| 80 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
| 80 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
| 81 | 81 | $errors++; |
| 82 | 82 | } else { |
| 83 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 83 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | |
| 87 | 87 | // cache writable? |
| 88 | -echo '<p>' . $_lang['checking_if_cache_writable']; |
|
| 88 | +echo '<p>'.$_lang['checking_if_cache_writable']; |
|
| 89 | 89 | if (!is_writable("../assets/cache")) { |
| 90 | 90 | $errors++; |
| 91 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
| 91 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
| 92 | 92 | } else { |
| 93 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 93 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | |
| 97 | 97 | // cache files writable? |
| 98 | -echo '<p>' . $_lang['checking_if_cache_file_writable']; |
|
| 98 | +echo '<p>'.$_lang['checking_if_cache_file_writable']; |
|
| 99 | 99 | $tmp = "../assets/cache/siteCache.idx.php"; |
| 100 | -if ( ! file_exists($tmp)) { |
|
| 100 | +if (!file_exists($tmp)) { |
|
| 101 | 101 | f_owc($tmp, "<?php //EVO site cache file ?>"); |
| 102 | 102 | } |
| 103 | -if ( ! is_writable($tmp)) { |
|
| 103 | +if (!is_writable($tmp)) { |
|
| 104 | 104 | $errors++; |
| 105 | - echo '<span class="notok">' . $_lang['failed'] . '</span></p>'; |
|
| 105 | + echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
|
| 106 | 106 | } else { |
| 107 | 107 | echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | |
| 111 | 111 | echo '<p>'.$_lang['checking_if_cache_file2_writable']; |
| 112 | -if ( ! is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
| 112 | +if (!is_writable("../assets/cache/sitePublishing.idx.php")) { |
|
| 113 | 113 | $errors++; |
| 114 | 114 | echo '<span class="notok">'.$_lang['failed'].'</span></p>'; |
| 115 | 115 | } else { |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | |
| 120 | 120 | // File Browser directories exists? |
| 121 | 121 | echo '<p>'.$_lang['checking_if_images_exist']; |
| 122 | -switch(true){ |
|
| 122 | +switch (true) { |
|
| 123 | 123 | case !file_exists("../assets/images"): |
| 124 | 124 | case !file_exists("../assets/files"): |
| 125 | 125 | case !file_exists("../assets/backup"): |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | |
| 135 | 135 | // File Browser directories writable? |
| 136 | 136 | echo '<p>'.$_lang['checking_if_images_writable']; |
| 137 | -switch(true){ |
|
| 137 | +switch (true) { |
|
| 138 | 138 | case !is_writable("../assets/images"): |
| 139 | 139 | case !is_writable("../assets/files"): |
| 140 | 140 | case !is_writable("../assets/backup"): |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_') - 1); |
| 195 | 195 | $database_connection_charset = $_POST['database_connection_charset']; |
| 196 | 196 | $database_connection_method = $_POST['database_connection_method']; |
| 197 | - $dbase = '`' . $_POST['database_name'] . '`'; |
|
| 197 | + $dbase = '`'.$_POST['database_name'].'`'; |
|
| 198 | 198 | $table_prefix = $_POST['tableprefix']; |
| 199 | 199 | } |
| 200 | 200 | echo '<p>'.$_lang['creating_database_connection']; |
@@ -234,54 +234,54 @@ discard block |
||
| 234 | 234 | |
| 235 | 235 | // check table prefix |
| 236 | 236 | if ($conn && $installMode == 0) { |
| 237 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
| 238 | - if ($rs= mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
| 239 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_already_inuse'] . '</p>'; |
|
| 237 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
| 238 | + if ($rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
| 239 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_already_inuse'].'</p>'; |
|
| 240 | 240 | $errors++; |
| 241 | - echo "<p>" . $_lang['table_prefix_already_inuse_note'] . '</p>'; |
|
| 241 | + echo "<p>".$_lang['table_prefix_already_inuse_note'].'</p>'; |
|
| 242 | 242 | } else { |
| 243 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 243 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 244 | 244 | } |
| 245 | 245 | } elseif ($conn && $installMode == 2) { |
| 246 | - echo '<p>' . $_lang['checking_table_prefix'] . $table_prefix . '`: '; |
|
| 247 | - if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`" . $table_prefix . "site_content`")) { |
|
| 248 | - echo '<span class="notok">' . $_lang['failed'] . '</span></b>' . $_lang['table_prefix_not_exist'] . '</p>'; |
|
| 246 | + echo '<p>'.$_lang['checking_table_prefix'].$table_prefix.'`: '; |
|
| 247 | + if (!$rs = mysqli_query($conn, "SELECT COUNT(*) FROM $dbase.`".$table_prefix."site_content`")) { |
|
| 248 | + echo '<span class="notok">'.$_lang['failed'].'</span></b>'.$_lang['table_prefix_not_exist'].'</p>'; |
|
| 249 | 249 | $errors++; |
| 250 | - echo '<p>' . $_lang['table_prefix_not_exist_note'] . '</p>'; |
|
| 250 | + echo '<p>'.$_lang['table_prefix_not_exist_note'].'</p>'; |
|
| 251 | 251 | } else { |
| 252 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 252 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 253 | 253 | } |
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | // check mysql version |
| 257 | 257 | if ($conn) { |
| 258 | - echo '<p>' . $_lang['checking_mysql_version']; |
|
| 259 | - if ( version_compare(mysqli_get_server_info($conn), '5.0.51', '=') ) { |
|
| 260 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong>' . $_lang['mysql_5051'] . '</strong></p>'; |
|
| 261 | - echo '<p><span class="notok">' . $_lang['mysql_5051_warning'] . '</span></p>'; |
|
| 258 | + echo '<p>'.$_lang['checking_mysql_version']; |
|
| 259 | + if (version_compare(mysqli_get_server_info($conn), '5.0.51', '=')) { |
|
| 260 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong>'.$_lang['mysql_5051'].'</strong></p>'; |
|
| 261 | + echo '<p><span class="notok">'.$_lang['mysql_5051_warning'].'</span></p>'; |
|
| 262 | 262 | } else { |
| 263 | - echo '<span class="ok">' . $_lang['ok'] . '</span> <strong>' . $_lang['mysql_version_is'] . mysqli_get_server_info($conn) . '</strong></p>'; |
|
| 263 | + echo '<span class="ok">'.$_lang['ok'].'</span> <strong>'.$_lang['mysql_version_is'].mysqli_get_server_info($conn).'</strong></p>'; |
|
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | // check for strict mode |
| 268 | 268 | if ($conn) { |
| 269 | - echo '<p>'. $_lang['checking_mysql_strict_mode']; |
|
| 269 | + echo '<p>'.$_lang['checking_mysql_strict_mode']; |
|
| 270 | 270 | $mysqlmode = mysqli_query($conn, "SELECT @@global.sql_mode"); |
| 271 | - if (mysqli_num_rows($mysqlmode) > 0){ |
|
| 271 | + if (mysqli_num_rows($mysqlmode) > 0) { |
|
| 272 | 272 | $modes = mysqli_fetch_array($mysqlmode, MYSQLI_NUM); |
| 273 | 273 | //$modes = array("STRICT_TRANS_TABLES"); // for testing |
| 274 | 274 | // print_r($modes); |
| 275 | 275 | foreach ($modes as $mode) { |
| 276 | 276 | if (stristr($mode, "STRICT_TRANS_TABLES") !== false || stristr($mode, "STRICT_ALL_TABLES") !== false) { |
| 277 | - echo '<span class="notok">' . $_lang['warning'] . '</span></b> <strong> ' . $_lang['strict_mode'] . '</strong></p>'; |
|
| 278 | - echo '<p><span class="notok">' . $_lang['strict_mode_error'] . '</span></p>'; |
|
| 277 | + echo '<span class="notok">'.$_lang['warning'].'</span></b> <strong> '.$_lang['strict_mode'].'</strong></p>'; |
|
| 278 | + echo '<p><span class="notok">'.$_lang['strict_mode_error'].'</span></p>'; |
|
| 279 | 279 | } else { |
| 280 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 280 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 281 | 281 | } |
| 282 | 282 | } |
| 283 | 283 | } else { |
| 284 | - echo '<span class="ok">' . $_lang['ok'] . '</span></p>'; |
|
| 284 | + echo '<span class="ok">'.$_lang['ok'].'</span></p>'; |
|
| 285 | 285 | } |
| 286 | 286 | } |
| 287 | 287 | // Version and strict mode check end |
@@ -297,18 +297,18 @@ discard block |
||
| 297 | 297 | f_owc("../assets/cache/installProc.inc.php", '<?php $installStartTime = '.time().'; ?>'); |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | -if($installMode > 0 && $_POST['installdata'] == "1") { |
|
| 301 | - echo '<p class="notes"><strong>' . $_lang['sample_web_site'] . ':</strong> ' . $_lang['sample_web_site_note'] . '</p>'; |
|
| 300 | +if ($installMode > 0 && $_POST['installdata'] == "1") { |
|
| 301 | + echo '<p class="notes"><strong>'.$_lang['sample_web_site'].':</strong> '.$_lang['sample_web_site_note'].'</p>'; |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | if ($errors > 0) { |
| 305 | 305 | echo '<p>'; |
| 306 | - echo $_lang['setup_cannot_continue'] . ' '; |
|
| 306 | + echo $_lang['setup_cannot_continue'].' '; |
|
| 307 | 307 | |
| 308 | - if($errors > 1){ |
|
| 309 | - echo $errors . " " . $_lang['errors'] . $_lang['please_correct_errors'] . $_lang['and_try_again_plural']; |
|
| 310 | - }else{ |
|
| 311 | - echo $_lang['error'] . $_lang['please_correct_error'] . $_lang['and_try_again']; |
|
| 308 | + if ($errors > 1) { |
|
| 309 | + echo $errors." ".$_lang['errors'].$_lang['please_correct_errors'].$_lang['and_try_again_plural']; |
|
| 310 | + } else { |
|
| 311 | + echo $_lang['error'].$_lang['please_correct_error'].$_lang['and_try_again']; |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | echo $_lang['visit_forum']; |
@@ -317,10 +317,10 @@ discard block |
||
| 317 | 317 | |
| 318 | 318 | echo '<p> </p>'; |
| 319 | 319 | |
| 320 | -$nextAction= $errors > 0 ? 'summary' : 'install'; |
|
| 321 | -$nextButton= $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
| 322 | -$nextVisibility= $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
| 323 | -$agreeToggle= $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
| 320 | +$nextAction = $errors > 0 ? 'summary' : 'install'; |
|
| 321 | +$nextButton = $errors > 0 ? $_lang['retry'] : $_lang['install']; |
|
| 322 | +$nextVisibility = $errors > 0 || isset($_POST['chkagree']) ? 'visible' : 'hidden'; |
|
| 323 | +$agreeToggle = $errors > 0 ? '' : ' onclick="if(document.getElementById(\'chkagree\').checked){document.getElementById(\'nextbutton\').style.visibility=\'visible\';}else{document.getElementById(\'nextbutton\').style.visibility=\'hidden\';}"'; |
|
| 324 | 324 | ?> |
| 325 | 325 | <form name="install" id="install_form" action="index.php?action=<?php echo $nextAction ?>" method="post"> |
| 326 | 326 | <div> |
@@ -342,32 +342,32 @@ discard block |
||
| 342 | 342 | |
| 343 | 343 | <input type="hidden" value="<?php echo $_POST['installdata'] ?>" name="installdata" /> |
| 344 | 344 | <?php |
| 345 | - $templates = isset ($_POST['template']) ? $_POST['template'] : array (); |
|
| 345 | + $templates = isset ($_POST['template']) ? $_POST['template'] : array(); |
|
| 346 | 346 | foreach ($templates as $i => $template) echo '<input type="hidden" name="template[]" value="'.$template.'" />'; |
| 347 | 347 | |
| 348 | - $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array (); |
|
| 348 | + $tvs = isset ($_POST['tv']) ? $_POST['tv'] : array(); |
|
| 349 | 349 | foreach ($tvs as $i => $tv) echo '<input type="hidden" name="tv[]" value="'.$tv.'" />'; |
| 350 | 350 | |
| 351 | - $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array (); |
|
| 351 | + $chunks = isset ($_POST['chunk']) ? $_POST['chunk'] : array(); |
|
| 352 | 352 | foreach ($chunks as $i => $chunk) echo '<input type="hidden" name="chunk[]" value="'.$chunk.'" />'; |
| 353 | 353 | |
| 354 | - $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array (); |
|
| 354 | + $snippets = isset ($_POST['snippet']) ? $_POST['snippet'] : array(); |
|
| 355 | 355 | foreach ($snippets as $i => $snippet) echo '<input type="hidden" name="snippet[]" value="'.$snippet.'" />'; |
| 356 | 356 | |
| 357 | - $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array (); |
|
| 357 | + $plugins = isset ($_POST['plugin']) ? $_POST['plugin'] : array(); |
|
| 358 | 358 | foreach ($plugins as $i => $plugin) echo '<input type="hidden" name="plugin[]" value="'.$plugin.'" />'; |
| 359 | 359 | |
| 360 | - $modules = isset ($_POST['module']) ? $_POST['module'] : array (); |
|
| 360 | + $modules = isset ($_POST['module']) ? $_POST['module'] : array(); |
|
| 361 | 361 | foreach ($modules as $i => $module) echo '<input type="hidden" name="module[]" value="'.$module.'" />'; |
| 362 | 362 | ?> |
| 363 | 363 | </div> |
| 364 | 364 | |
| 365 | -<h2><?php echo $_lang['agree_to_terms'];?></h2> |
|
| 365 | +<h2><?php echo $_lang['agree_to_terms']; ?></h2> |
|
| 366 | 366 | <p> |
| 367 | -<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ':""; ?><?php echo $agreeToggle;?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
| 367 | +<input type="checkbox" value="1" id="chkagree" name="chkagree" style="line-height:18px" <?php echo isset($_POST['chkagree']) ? 'checked="checked" ' : ""; ?><?php echo $agreeToggle; ?>/><label for="chkagree" style="display:inline;float:none;line-height:18px;"> <?php echo $_lang['iagree_box']?> </label> |
|
| 368 | 368 | </p> |
| 369 | 369 | <p class="buttonlinks"> |
| 370 | 370 | <a href="javascript:document.getElementById('install_form').action='index.php?action=options&language=<?php echo $install_language?>';document.getElementById('install_form').submit();" class="prev" title="<?php echo $_lang['btnback_value']?>"><span><?php echo $_lang['btnback_value']?></span></a> |
| 371 | - <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility;?>"><span><?php echo $nextButton ?></span></a> |
|
| 371 | + <a id="nextbutton" href="javascript:document.getElementById('install_form').submit();" title="<?php echo $nextButton ?>" style="visibility:<?php echo $nextVisibility; ?>"><span><?php echo $nextButton ?></span></a> |
|
| 372 | 372 | </p> |
| 373 | 373 | </form> |
@@ -3,11 +3,11 @@ discard block |
||
| 3 | 3 | $content = parse($content, array( |
| 4 | 4 | 'langOptions' => getLangOptions($install_language)) |
| 5 | 5 | ); |
| 6 | -$content = parse($content, $_lang,'[%','%]'); |
|
| 6 | +$content = parse($content, $_lang, '[%', '%]'); |
|
| 7 | 7 | |
| 8 | 8 | echo $content; |
| 9 | 9 | |
| 10 | -if( ! function_exists('getLangOptions')) { |
|
| 10 | +if (!function_exists('getLangOptions')) { |
|
| 11 | 11 | /** |
| 12 | 12 | * @param string $install_language |
| 13 | 13 | * @return string |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $abrv_language = explode('-', $language); |
| 30 | 30 | $selected = ($language === $install_language) ? 'selected' : ''; |
| 31 | 31 | $_[] = sprintf('<option value="%s" %s>%s</option>', $language, $selected, |
| 32 | - ucwords($abrv_language[0])) . "\n"; |
|
| 32 | + ucwords($abrv_language[0]))."\n"; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | return implode("\n", $_); |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Determine upgradeability |
| 3 | 3 | $upgradeable = 0; |
| 4 | -if (is_file($base_path . MGR_DIR . '/includes/config.inc.php')) { // Include the file so we can test its validity |
|
| 5 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
| 4 | +if (is_file($base_path.MGR_DIR.'/includes/config.inc.php')) { // Include the file so we can test its validity |
|
| 5 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
| 6 | 6 | // We need to have all connection settings - tho prefix may be empty so we have to ignore it |
| 7 | 7 | if (isset($dbase)) { |
| 8 | 8 | if (!$conn = @mysqli_connect($database_server, $database_user, $database_password)) |
@@ -17,16 +17,16 @@ discard block |
||
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | $ph['moduleName'] = $moduleName; |
| 20 | -$ph['displayNew'] = ($upgradeable!=0) ? 'display:none;' : ''; |
|
| 21 | -$ph['displayUpg'] = ($upgradeable==0) ? 'display:none;' : ''; |
|
| 20 | +$ph['displayNew'] = ($upgradeable != 0) ? 'display:none;' : ''; |
|
| 21 | +$ph['displayUpg'] = ($upgradeable == 0) ? 'display:none;' : ''; |
|
| 22 | 22 | $ph['displayAdvUpg'] = $ph['displayUpg']; |
| 23 | -$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
| 24 | -$ph['checkedUpg'] = ($_POST['installmode']==1 || $upgradeable==1) ? 'checked' : ''; |
|
| 25 | -$ph['checkedAdvUpg'] = ($_POST['installmode']==2 || $upgradeable==2) ? 'checked' : ''; |
|
| 23 | +$ph['checkedNew'] = !$upgradeable ? 'checked' : ''; |
|
| 24 | +$ph['checkedUpg'] = ($_POST['installmode'] == 1 || $upgradeable == 1) ? 'checked' : ''; |
|
| 25 | +$ph['checkedAdvUpg'] = ($_POST['installmode'] == 2 || $upgradeable == 2) ? 'checked' : ''; |
|
| 26 | 26 | $ph['install_language'] = $install_language; |
| 27 | -$ph['disabledUpg'] = ($upgradeable!=1) ? 'disabled' : ''; |
|
| 28 | -$ph['disabledAdvUpg'] = ($upgradeable==0) ? 'disabled' : ''; |
|
| 27 | +$ph['disabledUpg'] = ($upgradeable != 1) ? 'disabled' : ''; |
|
| 28 | +$ph['disabledAdvUpg'] = ($upgradeable == 0) ? 'disabled' : ''; |
|
| 29 | 29 | |
| 30 | -$tpl = file_get_contents($base_path . 'install/actions/tpl_mode.html'); |
|
| 30 | +$tpl = file_get_contents($base_path.'install/actions/tpl_mode.html'); |
|
| 31 | 31 | $content = parse($tpl, $ph); |
| 32 | -echo parse($content, $_lang,'[%','%]'); |
|
| 32 | +echo parse($content, $_lang, '[%', '%]'); |
|
@@ -1,19 +1,19 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
| 2 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
| 3 | 3 | |
| 4 | -switch($installMode){ |
|
| 4 | +switch ($installMode) { |
|
| 5 | 5 | case 0: |
| 6 | 6 | case 2: |
| 7 | 7 | $database_collation = isset($_POST['database_collation']) ? $_POST['database_collation'] : 'utf8_general_ci'; |
| 8 | 8 | $database_charset = substr($database_collation, 0, strpos($database_collation, '_')); |
| 9 | 9 | $_POST['database_connection_charset'] = $database_charset; |
| 10 | - if(empty($_SESSION['databaseloginpassword'])) |
|
| 10 | + if (empty($_SESSION['databaseloginpassword'])) |
|
| 11 | 11 | $_SESSION['databaseloginpassword'] = $_POST['databaseloginpassword']; |
| 12 | - if(empty($_SESSION['databaseloginname'])) |
|
| 12 | + if (empty($_SESSION['databaseloginname'])) |
|
| 13 | 13 | $_SESSION['databaseloginname'] = $_POST['databaseloginname']; |
| 14 | 14 | break; |
| 15 | 15 | case 1: |
| 16 | - include $base_path . MGR_DIR . '/includes/config.inc.php'; |
|
| 16 | + include $base_path.MGR_DIR.'/includes/config.inc.php'; |
|
| 17 | 17 | if (@ $conn = mysqli_connect($database_server, $database_user, $database_password)) { |
| 18 | 18 | if (@ mysqli_query($conn, "USE {$dbase}")) { |
| 19 | 19 | if (!$rs = mysqli_query($conn, "show session variables like 'collation_database'")) { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | $ph['checked'] = isset ($_POST['installdata']) && $_POST['installdata'] == "1" ? 'checked' : ''; |
| 69 | 69 | |
| 70 | 70 | # load setup information file |
| 71 | -include($base_path . 'install/setup.info.php'); |
|
| 71 | +include($base_path.'install/setup.info.php'); |
|
| 72 | 72 | $ph['templates'] = getTemplates($moduleTemplates); |
| 73 | 73 | $ph['tvs'] = getTVs($moduleTVs); |
| 74 | 74 | $ph['chunks'] = getChunks($moduleChunks); |
@@ -78,12 +78,12 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $ph['action'] = ($installMode == 1) ? 'mode' : 'connection'; |
| 80 | 80 | |
| 81 | -$tpl = file_get_contents($base_path . 'install/actions/tpl_options.html'); |
|
| 82 | -$content = parse($tpl,$ph); |
|
| 83 | -echo parse($content,$_lang,'[%','%]'); |
|
| 81 | +$tpl = file_get_contents($base_path.'install/actions/tpl_options.html'); |
|
| 82 | +$content = parse($tpl, $ph); |
|
| 83 | +echo parse($content, $_lang, '[%', '%]'); |
|
| 84 | 84 | |
| 85 | 85 | |
| 86 | -if( ! function_exists('getTemplates')) { |
|
| 86 | +if (!function_exists('getTemplates')) { |
|
| 87 | 87 | /** |
| 88 | 88 | * @param array $presets |
| 89 | 89 | * @return string |
@@ -108,12 +108,12 @@ discard block |
||
| 108 | 108 | $i++; |
| 109 | 109 | } |
| 110 | 110 | if (0 < count($_)) { |
| 111 | - return '<h3>[%templates%]</h3>' . join("\n", $_); |
|
| 111 | + return '<h3>[%templates%]</h3>'.join("\n", $_); |
|
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | -if( ! function_exists('getTVs')) { |
|
| 116 | +if (!function_exists('getTVs')) { |
|
| 117 | 117 | /** |
| 118 | 118 | * @param array $presets |
| 119 | 119 | * @return string |
@@ -138,12 +138,12 @@ discard block |
||
| 138 | 138 | $i++; |
| 139 | 139 | } |
| 140 | 140 | if (0 < count($_)) { |
| 141 | - return '<h3>[%tvs%]</h3>' . join("\n", $_); |
|
| 141 | + return '<h3>[%tvs%]</h3>'.join("\n", $_); |
|
| 142 | 142 | } |
| 143 | 143 | } |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | -if( ! function_exists('getChunks')) { |
|
| 146 | +if (!function_exists('getChunks')) { |
|
| 147 | 147 | /** |
| 148 | 148 | * display chunks |
| 149 | 149 | * |
@@ -169,12 +169,12 @@ discard block |
||
| 169 | 169 | $i++; |
| 170 | 170 | } |
| 171 | 171 | if (0 < count($_)) { |
| 172 | - return '<h3>[%chunks%]</h3>' . join("\n", $_); |
|
| 172 | + return '<h3>[%chunks%]</h3>'.join("\n", $_); |
|
| 173 | 173 | } |
| 174 | 174 | } |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | -if( ! function_exists('getModules')) { |
|
| 177 | +if (!function_exists('getModules')) { |
|
| 178 | 178 | /** |
| 179 | 179 | * display modules |
| 180 | 180 | * |
@@ -200,12 +200,12 @@ discard block |
||
| 200 | 200 | $i++; |
| 201 | 201 | } |
| 202 | 202 | if (0 < count($_)) { |
| 203 | - return '<h3>[%modules%]</h3>' . join("\n", $_); |
|
| 203 | + return '<h3>[%modules%]</h3>'.join("\n", $_); |
|
| 204 | 204 | } |
| 205 | 205 | } |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | -if( ! function_exists('getPlugins')) { |
|
| 208 | +if (!function_exists('getPlugins')) { |
|
| 209 | 209 | /** |
| 210 | 210 | * display plugins |
| 211 | 211 | * |
@@ -235,12 +235,12 @@ discard block |
||
| 235 | 235 | $i++; |
| 236 | 236 | } |
| 237 | 237 | if (0 < count($_)) { |
| 238 | - return '<h3>[%plugins%]</h3>' . join("\n", $_); |
|
| 238 | + return '<h3>[%plugins%]</h3>'.join("\n", $_); |
|
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | -if( ! function_exists('getSnippets')) { |
|
| 243 | +if (!function_exists('getSnippets')) { |
|
| 244 | 244 | /** |
| 245 | 245 | * display snippets |
| 246 | 246 | * |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | $i++; |
| 267 | 267 | } |
| 268 | 268 | if (0 < count($_)) { |
| 269 | - return '<h3>[%snippets%]</h3>' . join("\n", $_); |
|
| 269 | + return '<h3>[%snippets%]</h3>'.join("\n", $_); |
|
| 270 | 270 | } |
| 271 | 271 | } |
| 272 | 272 | } |
@@ -1,12 +1,12 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -$installMode = isset($_POST['installmode']) ? (int)$_POST['installmode'] : 0; |
|
| 2 | +$installMode = isset($_POST['installmode']) ? (int) $_POST['installmode'] : 0; |
|
| 3 | 3 | |
| 4 | 4 | // Determine upgradeability |
| 5 | -$upgradeable= 0; |
|
| 5 | +$upgradeable = 0; |
|
| 6 | 6 | if ($installMode === 0) { |
| 7 | - $database_name= ''; |
|
| 8 | - $database_server= 'localhost'; |
|
| 9 | - $table_prefix= substr(md5(time()), rand(0, 27), rand(3, 5))."_"; |
|
| 7 | + $database_name = ''; |
|
| 8 | + $database_server = 'localhost'; |
|
| 9 | + $table_prefix = substr(md5(time()), rand(0, 27), rand(3, 5))."_"; |
|
| 10 | 10 | } else { |
| 11 | 11 | $database_name = ''; |
| 12 | 12 | if (!is_file($base_path.MGR_DIR.'/includes/config.inc.php')) $upgradeable = 0; |
@@ -17,13 +17,13 @@ discard block |
||
| 17 | 17 | if ($dbase) { |
| 18 | 18 | $database_name = trim($dbase, '`'); |
| 19 | 19 | if (!$conn = mysqli_connect($database_server, $database_user, $database_password)) |
| 20 | - $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
| 21 | - elseif (! mysqli_select_db($conn, trim($dbase, '`'))) |
|
| 22 | - $upgradeable = (isset($_POST['installmode']) && $_POST['installmode']=='new') ? 0 : 2; |
|
| 20 | + $upgradeable = (isset($_POST['installmode']) && $_POST['installmode'] == 'new') ? 0 : 2; |
|
| 21 | + elseif (!mysqli_select_db($conn, trim($dbase, '`'))) |
|
| 22 | + $upgradeable = (isset($_POST['installmode']) && $_POST['installmode'] == 'new') ? 0 : 2; |
|
| 23 | 23 | else |
| 24 | 24 | $upgradeable = 1; |
| 25 | 25 | } |
| 26 | - else $upgradable= 2; |
|
| 26 | + else $upgradable = 2; |
|
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | 29 | |
@@ -49,33 +49,33 @@ discard block |
||
| 49 | 49 | $database_connection_method = 'SET CHARACTER SET'; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | -$ph['database_name'] = isset($_POST['database_name']) ? $_POST['database_name']: $database_name; |
|
| 53 | -$ph['tableprefix'] = isset($_POST['tableprefix']) ? $_POST['tableprefix']: $table_prefix; |
|
| 52 | +$ph['database_name'] = isset($_POST['database_name']) ? $_POST['database_name'] : $database_name; |
|
| 53 | +$ph['tableprefix'] = isset($_POST['tableprefix']) ? $_POST['tableprefix'] : $table_prefix; |
|
| 54 | 54 | $ph['selected_set_character_set'] = isset($database_connection_method) && $database_connection_method == 'SET CHARACTER SET' ? 'selected' : ''; |
| 55 | 55 | $ph['selected_set_names'] = isset($database_connection_method) && $database_connection_method == 'SET NAMES' ? 'selected' : ''; |
| 56 | 56 | $ph['show#connection_method'] = (($installMode == 0) || ($installMode == 2)) ? 'block' : 'none'; |
| 57 | -$ph['database_collation'] = isset($_POST['database_collation']) ? $_POST['database_collation']: $database_collation; |
|
| 58 | -$ph['show#AUH'] = ($installMode == 0) ? 'block':'none'; |
|
| 59 | -$ph['cmsadmin'] = isset($_POST['cmsadmin']) ? $_POST['cmsadmin']:'admin'; |
|
| 60 | -$ph['cmsadminemail'] = isset($_POST['cmsadminemail']) ? $_POST['cmsadminemail']:""; |
|
| 61 | -$ph['cmspassword'] = isset($_POST['cmspassword']) ? $_POST['cmspassword']:""; |
|
| 62 | -$ph['cmspasswordconfirm'] = isset($_POST['cmspasswordconfirm']) ? $_POST['cmspasswordconfirm']:""; |
|
| 57 | +$ph['database_collation'] = isset($_POST['database_collation']) ? $_POST['database_collation'] : $database_collation; |
|
| 58 | +$ph['show#AUH'] = ($installMode == 0) ? 'block' : 'none'; |
|
| 59 | +$ph['cmsadmin'] = isset($_POST['cmsadmin']) ? $_POST['cmsadmin'] : 'admin'; |
|
| 60 | +$ph['cmsadminemail'] = isset($_POST['cmsadminemail']) ? $_POST['cmsadminemail'] : ""; |
|
| 61 | +$ph['cmspassword'] = isset($_POST['cmspassword']) ? $_POST['cmspassword'] : ""; |
|
| 62 | +$ph['cmspasswordconfirm'] = isset($_POST['cmspasswordconfirm']) ? $_POST['cmspasswordconfirm'] : ""; |
|
| 63 | 63 | $ph['managerLangs'] = getLangs($install_language); |
| 64 | 64 | $ph['install_language'] = $install_language; |
| 65 | 65 | $ph['installMode'] = $installMode; |
| 66 | -$ph['checkedChkagree'] = isset($_POST['chkagree']) ? 'checked':""; |
|
| 66 | +$ph['checkedChkagree'] = isset($_POST['chkagree']) ? 'checked' : ""; |
|
| 67 | 67 | $ph['database_connection_method'] = isset($database_connection_method) ? $database_connection_method : ''; |
| 68 | -$ph['databasehost'] = isset($_POST['databasehost']) ? $_POST['databasehost']: $database_server; |
|
| 69 | -$ph['databaseloginname'] = isset($_SESSION['databaseloginname']) ? $_SESSION['databaseloginname']: ''; |
|
| 70 | -$ph['databaseloginpassword'] = isset($_SESSION['databaseloginpassword']) ? $_SESSION['databaseloginpassword']: ""; |
|
| 68 | +$ph['databasehost'] = isset($_POST['databasehost']) ? $_POST['databasehost'] : $database_server; |
|
| 69 | +$ph['databaseloginname'] = isset($_SESSION['databaseloginname']) ? $_SESSION['databaseloginname'] : ''; |
|
| 70 | +$ph['databaseloginpassword'] = isset($_SESSION['databaseloginpassword']) ? $_SESSION['databaseloginpassword'] : ""; |
|
| 71 | 71 | $ph['MGR_DIR'] = MGR_DIR; |
| 72 | 72 | |
| 73 | 73 | $content = file_get_contents('./actions/tpl_connection.html'); |
| 74 | -$content = parse($content, $_lang, '[%','%]'); |
|
| 74 | +$content = parse($content, $_lang, '[%', '%]'); |
|
| 75 | 75 | $content = parse($content, $ph); |
| 76 | 76 | echo $content; |
| 77 | 77 | |
| 78 | -if( ! function_exists('getLangs')) { |
|
| 78 | +if (!function_exists('getLangs')) { |
|
| 79 | 79 | /** |
| 80 | 80 | * @param $install_language |
| 81 | 81 | * @return string |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | $langs = array(); |
| 92 | - if ($handle = opendir("../" . MGR_DIR . "/includes/lang")) { |
|
| 92 | + if ($handle = opendir("../".MGR_DIR."/includes/lang")) { |
|
| 93 | 93 | while (false !== ($file = readdir($handle))) { |
| 94 | 94 | if (strpos($file, '.inc.') !== false) { |
| 95 | 95 | $langs[] = $file; |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * Sets the class attribute of the main HTML TABLE. |
| 85 | 85 | * |
| 86 | - * @param $value A class for the main HTML TABLE. |
|
| 86 | + * @param string $value A class for the main HTML TABLE. |
|
| 87 | 87 | */ |
| 88 | 88 | function setTableClass($value) { |
| 89 | 89 | $this->tableClass= $value; |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | /** |
| 129 | 129 | * Sets the class attribute of regular table rows. |
| 130 | 130 | * |
| 131 | - * @param $value A class for regular table rows. |
|
| 131 | + * @param string $value A class for regular table rows. |
|
| 132 | 132 | */ |
| 133 | 133 | function setRowRegularClass($value) { |
| 134 | 134 | $this->rowRegularClass= $value; |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | /** |
| 138 | 138 | * Sets the class attribute of alternate table rows. |
| 139 | 139 | * |
| 140 | - * @param $value A class for alternate table rows. |
|
| 140 | + * @param string $value A class for alternate table rows. |
|
| 141 | 141 | */ |
| 142 | 142 | function setRowAlternateClass($value) { |
| 143 | 143 | $this->rowAlternateClass= $value; |
@@ -213,6 +213,7 @@ discard block |
||
| 213 | 213 | * |
| 214 | 214 | * @param $value An Array of column widths in the order of the keys in the |
| 215 | 215 | * source table array. |
| 216 | + * @param string[] $widthArray |
|
| 216 | 217 | */ |
| 217 | 218 | function setColumnWidths($widthArray) { |
| 218 | 219 | $this->columnWidths= $widthArray; |
@@ -240,7 +241,7 @@ discard block |
||
| 240 | 241 | /** |
| 241 | 242 | * Retrieves the width of a specific table column by index position. |
| 242 | 243 | * |
| 243 | - * @param $columnPosition The index of the column to get the width for. |
|
| 244 | + * @param integer $columnPosition The index of the column to get the width for. |
|
| 244 | 245 | */ |
| 245 | 246 | function getColumnWidth($columnPosition) { |
| 246 | 247 | $currentWidth= ''; |
@@ -254,6 +255,7 @@ discard block |
||
| 254 | 255 | * Determines what class the current row should have applied. |
| 255 | 256 | * |
| 256 | 257 | * @param $value The position of the current row being rendered. |
| 258 | + * @param integer $position |
|
| 257 | 259 | */ |
| 258 | 260 | function determineRowClass($position) { |
| 259 | 261 | switch ($this->rowAlternatingScheme) { |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * |
| 9 | 9 | * @author Jason Coward <[email protected]> (MODX) |
| 10 | 10 | */ |
| 11 | -class MakeTable { |
|
| 11 | +class MakeTable{ |
|
| 12 | 12 | var $actionField; |
| 13 | 13 | var $cellAction; |
| 14 | 14 | var $linkAction; |
@@ -31,26 +31,26 @@ discard block |
||
| 31 | 31 | var $columnWidths; |
| 32 | 32 | var $selectedValues; |
| 33 | 33 | |
| 34 | - function __construct() { |
|
| 35 | - $this->fieldHeaders= array(); |
|
| 36 | - $this->excludeFields= array(); |
|
| 37 | - $this->actionField= ''; |
|
| 38 | - $this->cellAction= ''; |
|
| 39 | - $this->linkAction= ''; |
|
| 40 | - $this->tableWidth= ''; |
|
| 41 | - $this->tableClass= ''; |
|
| 42 | - $this->rowHeaderClass= ''; |
|
| 43 | - $this->columnHeaderClass= ''; |
|
| 44 | - $this->rowRegularClass= ''; |
|
| 45 | - $this->rowAlternateClass= 'alt'; |
|
| 46 | - $this->formName= 'tableForm'; |
|
| 47 | - $this->formAction= '[~[*id*]~]'; |
|
| 48 | - $this->formElementName= ''; |
|
| 49 | - $this->formElementType= ''; |
|
| 50 | - $this->rowAlternatingScheme= 'EVEN'; |
|
| 51 | - $this->allOption= 0; |
|
| 52 | - $this->selectedValues= array(); |
|
| 53 | - $this->extra= ''; |
|
| 34 | + function __construct(){ |
|
| 35 | + $this->fieldHeaders = array(); |
|
| 36 | + $this->excludeFields = array(); |
|
| 37 | + $this->actionField = ''; |
|
| 38 | + $this->cellAction = ''; |
|
| 39 | + $this->linkAction = ''; |
|
| 40 | + $this->tableWidth = ''; |
|
| 41 | + $this->tableClass = ''; |
|
| 42 | + $this->rowHeaderClass = ''; |
|
| 43 | + $this->columnHeaderClass = ''; |
|
| 44 | + $this->rowRegularClass = ''; |
|
| 45 | + $this->rowAlternateClass = 'alt'; |
|
| 46 | + $this->formName = 'tableForm'; |
|
| 47 | + $this->formAction = '[~[*id*]~]'; |
|
| 48 | + $this->formElementName = ''; |
|
| 49 | + $this->formElementType = ''; |
|
| 50 | + $this->rowAlternatingScheme = 'EVEN'; |
|
| 51 | + $this->allOption = 0; |
|
| 52 | + $this->selectedValues = array(); |
|
| 53 | + $this->extra = ''; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
@@ -58,8 +58,8 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @param $value A URL to execute when table cells are clicked. |
| 60 | 60 | */ |
| 61 | - function setCellAction($value) { |
|
| 62 | - $this->cellAction= $this->prepareLink($value); |
|
| 61 | + function setCellAction($value){ |
|
| 62 | + $this->cellAction = $this->prepareLink($value); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -67,8 +67,8 @@ discard block |
||
| 67 | 67 | * |
| 68 | 68 | * @param $value A URL to execute when text within table cells are clicked. |
| 69 | 69 | */ |
| 70 | - function setLinkAction($value) { |
|
| 71 | - $this->linkAction= $this->prepareLink($value); |
|
| 70 | + function setLinkAction($value){ |
|
| 71 | + $this->linkAction = $this->prepareLink($value); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * |
| 77 | 77 | * @param $value A valid width attribute for the HTML TABLE tag |
| 78 | 78 | */ |
| 79 | - function setTableWidth($value) { |
|
| 80 | - $this->tableWidth= $value; |
|
| 79 | + function setTableWidth($value){ |
|
| 80 | + $this->tableWidth = $value; |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -85,8 +85,8 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @param $value A class for the main HTML TABLE. |
| 87 | 87 | */ |
| 88 | - function setTableClass($value) { |
|
| 89 | - $this->tableClass= $value; |
|
| 88 | + function setTableClass($value){ |
|
| 89 | + $this->tableClass = $value; |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -94,8 +94,8 @@ discard block |
||
| 94 | 94 | * |
| 95 | 95 | * @param $value A class for the main HTML TABLE. |
| 96 | 96 | */ |
| 97 | - function setTableID($value) { |
|
| 98 | - $this->tableID= $value; |
|
| 97 | + function setTableID($value){ |
|
| 98 | + $this->tableID = $value; |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -103,8 +103,8 @@ discard block |
||
| 103 | 103 | * |
| 104 | 104 | * @param $value A class for the table header row. |
| 105 | 105 | */ |
| 106 | - function setRowHeaderClass($value) { |
|
| 107 | - $this->rowHeaderClass= $value; |
|
| 106 | + function setRowHeaderClass($value){ |
|
| 107 | + $this->rowHeaderClass = $value; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -112,8 +112,8 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @param $value A class for the table header row. |
| 114 | 114 | */ |
| 115 | - function setThHeaderClass($value) { |
|
| 116 | - $this->thClass= $value; |
|
| 115 | + function setThHeaderClass($value){ |
|
| 116 | + $this->thClass = $value; |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | * |
| 122 | 122 | * @param $value A class for the column header row. |
| 123 | 123 | */ |
| 124 | - function setColumnHeaderClass($value) { |
|
| 125 | - $this->columnHeaderClass= $value; |
|
| 124 | + function setColumnHeaderClass($value){ |
|
| 125 | + $this->columnHeaderClass = $value; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -130,8 +130,8 @@ discard block |
||
| 130 | 130 | * |
| 131 | 131 | * @param $value A class for regular table rows. |
| 132 | 132 | */ |
| 133 | - function setRowRegularClass($value) { |
|
| 134 | - $this->rowRegularClass= $value; |
|
| 133 | + function setRowRegularClass($value){ |
|
| 134 | + $this->rowRegularClass = $value; |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | * |
| 140 | 140 | * @param $value A class for alternate table rows. |
| 141 | 141 | */ |
| 142 | - function setRowAlternateClass($value) { |
|
| 143 | - $this->rowAlternateClass= $value; |
|
| 142 | + function setRowAlternateClass($value){ |
|
| 143 | + $this->rowAlternateClass = $value; |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -148,8 +148,8 @@ discard block |
||
| 148 | 148 | * |
| 149 | 149 | * @param $value Indicates the INPUT form element type attribute. |
| 150 | 150 | */ |
| 151 | - function setFormElementType($value) { |
|
| 152 | - $this->formElementType= $value; |
|
| 151 | + function setFormElementType($value){ |
|
| 152 | + $this->formElementType = $value; |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
@@ -157,8 +157,8 @@ discard block |
||
| 157 | 157 | * |
| 158 | 158 | * @param $value Indicates the INPUT form element name attribute. |
| 159 | 159 | */ |
| 160 | - function setFormElementName($value) { |
|
| 161 | - $this->formElementName= $value; |
|
| 160 | + function setFormElementName($value){ |
|
| 161 | + $this->formElementName = $value; |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -167,8 +167,8 @@ discard block |
||
| 167 | 167 | * |
| 168 | 168 | * @param $value Indicates the FORM name attribute. |
| 169 | 169 | */ |
| 170 | - function setFormName($value) { |
|
| 171 | - $this->formName= $value; |
|
| 170 | + function setFormName($value){ |
|
| 171 | + $this->formName = $value; |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -176,8 +176,8 @@ discard block |
||
| 176 | 176 | * |
| 177 | 177 | * @param $value Indicates the FORM action attribute. |
| 178 | 178 | */ |
| 179 | - function setFormAction($value) { |
|
| 180 | - $this->formAction= $value; |
|
| 179 | + function setFormAction($value){ |
|
| 180 | + $this->formAction = $value; |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
@@ -185,8 +185,8 @@ discard block |
||
| 185 | 185 | * |
| 186 | 186 | * @param $value An Array of field keys to exclude from the table. |
| 187 | 187 | */ |
| 188 | - function setExcludeFields($value) { |
|
| 189 | - $this->excludeFields= $value; |
|
| 188 | + function setExcludeFields($value){ |
|
| 189 | + $this->excludeFields = $value; |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -194,8 +194,8 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @param $value 'ODD' or 'EVEN' to indicate the alternate row scheme. |
| 196 | 196 | */ |
| 197 | - function setRowAlternatingScheme($value) { |
|
| 198 | - $this->rowAlternatingScheme= $value; |
|
| 197 | + function setRowAlternatingScheme($value){ |
|
| 198 | + $this->rowAlternatingScheme = $value; |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | /** |
@@ -204,8 +204,8 @@ discard block |
||
| 204 | 204 | * |
| 205 | 205 | * @param $value The key of the field to add as a query string parameter. |
| 206 | 206 | */ |
| 207 | - function setActionFieldName($value) { |
|
| 208 | - $this->actionField= $value; |
|
| 207 | + function setActionFieldName($value){ |
|
| 208 | + $this->actionField = $value; |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
@@ -214,8 +214,8 @@ discard block |
||
| 214 | 214 | * @param $value An Array of column widths in the order of the keys in the |
| 215 | 215 | * source table array. |
| 216 | 216 | */ |
| 217 | - function setColumnWidths($widthArray) { |
|
| 218 | - $this->columnWidths= $widthArray; |
|
| 217 | + function setColumnWidths($widthArray){ |
|
| 218 | + $this->columnWidths = $widthArray; |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -223,8 +223,8 @@ discard block |
||
| 223 | 223 | * |
| 224 | 224 | * @param $value Indicates the INPUT form element type attribute. |
| 225 | 225 | */ |
| 226 | - function setSelectedValues($valueArray) { |
|
| 227 | - $this->selectedValues= $valueArray; |
|
| 226 | + function setSelectedValues($valueArray){ |
|
| 227 | + $this->selectedValues = $valueArray; |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -233,8 +233,8 @@ discard block |
||
| 233 | 233 | * |
| 234 | 234 | * @param $value A string of additional content. |
| 235 | 235 | */ |
| 236 | - function setExtra($value) { |
|
| 237 | - $this->extra= $value; |
|
| 236 | + function setExtra($value){ |
|
| 237 | + $this->extra = $value; |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | /** |
@@ -242,10 +242,10 @@ discard block |
||
| 242 | 242 | * |
| 243 | 243 | * @param $columnPosition The index of the column to get the width for. |
| 244 | 244 | */ |
| 245 | - function getColumnWidth($columnPosition) { |
|
| 246 | - $currentWidth= ''; |
|
| 245 | + function getColumnWidth($columnPosition){ |
|
| 246 | + $currentWidth = ''; |
|
| 247 | 247 | if (is_array($this->columnWidths)) { |
| 248 | - $currentWidth= $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
| 248 | + $currentWidth = $this->columnWidths[$columnPosition] ? ' width="'.$this->columnWidths[$columnPosition].'" ' : ''; |
|
| 249 | 249 | } |
| 250 | 250 | return $currentWidth; |
| 251 | 251 | } |
@@ -255,19 +255,19 @@ discard block |
||
| 255 | 255 | * |
| 256 | 256 | * @param $value The position of the current row being rendered. |
| 257 | 257 | */ |
| 258 | - function determineRowClass($position) { |
|
| 258 | + function determineRowClass($position){ |
|
| 259 | 259 | switch ($this->rowAlternatingScheme) { |
| 260 | 260 | case 'ODD' : |
| 261 | - $modRemainder= 1; |
|
| 261 | + $modRemainder = 1; |
|
| 262 | 262 | break; |
| 263 | 263 | case 'EVEN' : |
| 264 | - $modRemainder= 0; |
|
| 264 | + $modRemainder = 0; |
|
| 265 | 265 | break; |
| 266 | 266 | } |
| 267 | 267 | if ($position % 2 == $modRemainder) { |
| 268 | - $currentClass= $this->rowRegularClass; |
|
| 268 | + $currentClass = $this->rowRegularClass; |
|
| 269 | 269 | } else { |
| 270 | - $currentClass= $this->rowAlternateClass; |
|
| 270 | + $currentClass = $this->rowAlternateClass; |
|
| 271 | 271 | } |
| 272 | 272 | return ' class="'.$currentClass.'"'; |
| 273 | 273 | } |
@@ -278,9 +278,9 @@ discard block |
||
| 278 | 278 | * |
| 279 | 279 | * @param $value Indicates the INPUT form element type attribute. |
| 280 | 280 | */ |
| 281 | - function getCellAction($currentActionFieldValue) { |
|
| 281 | + function getCellAction($currentActionFieldValue){ |
|
| 282 | 282 | if ($this->cellAction) { |
| 283 | - $cellAction= ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
| 283 | + $cellAction = ' onClick="javascript:window.location=\''.$this->cellAction.$this->actionField.'='.urlencode($currentActionFieldValue).'\'" '; |
|
| 284 | 284 | } |
| 285 | 285 | return $cellAction; |
| 286 | 286 | } |
@@ -291,10 +291,10 @@ discard block |
||
| 291 | 291 | * @param $currentActionFieldValue The value to be applied to the link action. |
| 292 | 292 | * @param $value The value of the cell. |
| 293 | 293 | */ |
| 294 | - function createCellText($currentActionFieldValue, $value) { |
|
| 294 | + function createCellText($currentActionFieldValue, $value){ |
|
| 295 | 295 | $cell .= $value; |
| 296 | 296 | if ($this->linkAction) { |
| 297 | - $cell= '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
| 297 | + $cell = '<a href="'.$this->linkAction.$this->actionField.'='.urlencode($currentActionFieldValue).'">'.$cell.'</a>'; |
|
| 298 | 298 | } |
| 299 | 299 | return $cell; |
| 300 | 300 | } |
@@ -303,8 +303,8 @@ discard block |
||
| 303 | 303 | * Sets an option to generate a check all link when checkbox is indicated |
| 304 | 304 | * as the table formElementType. |
| 305 | 305 | */ |
| 306 | - function setAllOption() { |
|
| 307 | - $this->allOption= 1; |
|
| 306 | + function setAllOption(){ |
|
| 307 | + $this->allOption = 1; |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | /** |
@@ -312,11 +312,11 @@ discard block |
||
| 312 | 312 | * |
| 313 | 313 | * @param $value Indicates the INPUT form element type attribute. |
| 314 | 314 | */ |
| 315 | - function prepareLink($link) { |
|
| 315 | + function prepareLink($link){ |
|
| 316 | 316 | if (strstr($link, '?')) { |
| 317 | - $end= '&'; |
|
| 317 | + $end = '&'; |
|
| 318 | 318 | } else { |
| 319 | - $end= '?'; |
|
| 319 | + $end = '?'; |
|
| 320 | 320 | } |
| 321 | 321 | return $link.$end; |
| 322 | 322 | } |
@@ -331,20 +331,20 @@ discard block |
||
| 331 | 331 | * the $fieldsArray where the values represent the alt heading content |
| 332 | 332 | * for each column. |
| 333 | 333 | */ |
| 334 | - function create($fieldsArray, $fieldHeadersArray=array(),$linkpage="") { |
|
| 334 | + function create($fieldsArray, $fieldHeadersArray = array(), $linkpage = ""){ |
|
| 335 | 335 | global $_lang; |
| 336 | 336 | if (is_array($fieldsArray)) { |
| 337 | - $i= 0; |
|
| 337 | + $i = 0; |
|
| 338 | 338 | foreach ($fieldsArray as $fieldName => $fieldValue) { |
| 339 | 339 | $table .= "\t<tr".$this->determineRowClass($i).">\n"; |
| 340 | - $currentActionFieldValue= $fieldValue[$this->actionField]; |
|
| 340 | + $currentActionFieldValue = $fieldValue[$this->actionField]; |
|
| 341 | 341 | if (is_array($this->selectedValues)) { |
| 342 | - $isChecked= array_search($currentActionFieldValue, $this->selectedValues)===false? 0 : 1; |
|
| 342 | + $isChecked = array_search($currentActionFieldValue, $this->selectedValues) === false ? 0 : 1; |
|
| 343 | 343 | } else { |
| 344 | - $isChecked= false; |
|
| 344 | + $isChecked = false; |
|
| 345 | 345 | } |
| 346 | 346 | $table .= $this->addFormField($currentActionFieldValue, $isChecked); |
| 347 | - $colPosition= 0; |
|
| 347 | + $colPosition = 0; |
|
| 348 | 348 | foreach ($fieldValue as $key => $value) { |
| 349 | 349 | if (!in_array($key, $this->excludeFields)) { |
| 350 | 350 | $table .= "\t\t<td".$this->getCellAction($currentActionFieldValue).">"; |
@@ -352,20 +352,20 @@ discard block |
||
| 352 | 352 | $table .= "</td>\n"; |
| 353 | 353 | if ($i == 0) { |
| 354 | 354 | if (empty ($header) && $this->formElementType) { |
| 355 | - $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">". ($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
| 355 | + $header .= "\t\t<th style=\"width:32px\" ".($this->thClass ? 'class="'.$this->thClass.'"' : '').">".($this->allOption ? '<a href="javascript:clickAll()">all</a>' : '')."</th>\n"; |
|
| 356 | 356 | } |
| 357 | - $headerText= array_key_exists($key, $fieldHeadersArray)? $fieldHeadersArray[$key]: $key; |
|
| 357 | + $headerText = array_key_exists($key, $fieldHeadersArray) ? $fieldHeadersArray[$key] : $key; |
|
| 358 | 358 | $header .= "\t\t<th".$this->getColumnWidth($colPosition).($this->thClass ? ' class="'.$this->thClass.'" ' : '').">".$headerText."</th>\n"; |
| 359 | 359 | } |
| 360 | - $colPosition ++; |
|
| 360 | + $colPosition++; |
|
| 361 | 361 | } |
| 362 | 362 | } |
| 363 | - $i ++; |
|
| 363 | + $i++; |
|
| 364 | 364 | $table .= "\t</tr>\n"; |
| 365 | 365 | } |
| 366 | - $table= "\n".'<table'. ($this->tableWidth ? ' width="'.$this->tableWidth.'"' : ''). ($this->tableClass ? ' class="'.$this->tableClass.'"' : ''). ($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n". ($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
| 366 | + $table = "\n".'<table'.($this->tableWidth ? ' width="'.$this->tableWidth.'"' : '').($this->tableClass ? ' class="'.$this->tableClass.'"' : '').($this->tableID ? ' id="'.$this->tableID.'"' : '').">\n".($header ? "\t<thead>\n\t<tr class=\"".$this->rowHeaderClass."\">\n".$header."\t</tr>\n\t</thead>\n" : '').$table."</table>\n"; |
|
| 367 | 367 | if ($this->formElementType) { |
| 368 | - $table= "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
| 368 | + $table = "\n".'<form id="'.$this->formName.'" name="'.$this->formName.'" action="'.$this->formAction.'" method="POST">'.$table; |
|
| 369 | 369 | } |
| 370 | 370 | if (strlen($this->pageNav) > 1) {//changed to display the pagination if exists. |
| 371 | 371 | /* commented this part because of cookie |
@@ -400,9 +400,9 @@ discard block |
||
| 400 | 400 | } |
| 401 | 401 | if ($this->formElementType) { |
| 402 | 402 | if ($this->extra) { |
| 403 | - $table.= "\n".$this->extra."\n"; |
|
| 403 | + $table .= "\n".$this->extra."\n"; |
|
| 404 | 404 | } |
| 405 | - $table.= "\n".'</form>'."\n"; |
|
| 405 | + $table .= "\n".'</form>'."\n"; |
|
| 406 | 406 | } |
| 407 | 407 | return $table; |
| 408 | 408 | } |
@@ -414,36 +414,36 @@ discard block |
||
| 414 | 414 | * @param $numRecords The number of records to show per page. |
| 415 | 415 | * @param $qs An optional query string to be appended to the paging links |
| 416 | 416 | */ |
| 417 | - function createPagingNavigation($numRecords, $qs='') { |
|
| 417 | + function createPagingNavigation($numRecords, $qs = ''){ |
|
| 418 | 418 | global $_lang; |
| 419 | - $currentPage= (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
| 420 | - $numPages= ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
| 419 | + $currentPage = (is_numeric($_GET['page']) ? $_GET['page'] : 1); |
|
| 420 | + $numPages = ceil($numRecords / MAX_DISPLAY_RECORDS_NUM); |
|
| 421 | 421 | if ($numPages > 1) { |
| 422 | - $currentURL= empty($qs)? '': '?'.$qs; |
|
| 422 | + $currentURL = empty($qs) ? '' : '?'.$qs; |
|
| 423 | 423 | if ($currentPage > 6) { |
| 424 | 424 | $nav .= $this->createPageLink($currentURL, 1, $_lang["pagination_table_first"]); |
| 425 | 425 | } |
| 426 | 426 | if ($currentPage != 1) { |
| 427 | - $nav .= $this->createPageLink($currentURL, $currentPage -1, '<<'); |
|
| 427 | + $nav .= $this->createPageLink($currentURL, $currentPage - 1, '<<'); |
|
| 428 | 428 | } |
| 429 | - $offset= -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
| 430 | - $i= 1; |
|
| 429 | + $offset = -4 + ($currentPage < 5 ? (5 - $currentPage) : 0); |
|
| 430 | + $i = 1; |
|
| 431 | 431 | while ($i < 10 && ($currentPage + $offset <= $numPages)) { |
| 432 | 432 | if ($currentPage == $currentPage + $offset) |
| 433 | 433 | $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset, true); |
| 434 | 434 | else |
| 435 | 435 | $nav .= $this->createPageLink($currentURL, $currentPage + $offset, $currentPage + $offset); |
| 436 | - $i ++; |
|
| 437 | - $offset ++; |
|
| 436 | + $i++; |
|
| 437 | + $offset++; |
|
| 438 | 438 | } |
| 439 | 439 | if ($currentPage < $numPages) { |
| 440 | - $nav .= $this->createPageLink($currentURL, $currentPage +1, '>>'); |
|
| 440 | + $nav .= $this->createPageLink($currentURL, $currentPage + 1, '>>'); |
|
| 441 | 441 | } |
| 442 | 442 | if ($currentPage != $numPages) { |
| 443 | 443 | $nav .= $this->createPageLink($currentURL, $numPages, $_lang["pagination_table_last"]); |
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | - $this->pageNav= ' '.$nav; |
|
| 446 | + $this->pageNav = ' '.$nav; |
|
| 447 | 447 | } |
| 448 | 448 | |
| 449 | 449 | /** |
@@ -455,13 +455,13 @@ discard block |
||
| 455 | 455 | * @param $currentPage Indicates if the link is to the current page. |
| 456 | 456 | * @param $qs And optional query string to be appended to the link. |
| 457 | 457 | */ |
| 458 | - function createPageLink($link='', $pageNum, $displayText, $currentPage=false, $qs='') { |
|
| 458 | + function createPageLink($link = '', $pageNum, $displayText, $currentPage = false, $qs = ''){ |
|
| 459 | 459 | global $modx; |
| 460 | - $orderBy= !empty($_GET['orderby'])? '&orderby=' . $_GET['orderby']: ''; |
|
| 461 | - $orderDir= !empty($_GET['orderdir'])? '&orderdir=' . $_GET['orderdir']: ''; |
|
| 462 | - if (!empty($qs)) $qs= "?$qs"; |
|
| 463 | - $link= empty($link)? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs . "page=$pageNum$orderBy$orderDir"): $this->prepareLink($link) . "page=$pageNum"; |
|
| 464 | - $nav .= '<li'.($currentPage? ' class="currentPage"': '').'><a'.($currentPage? ' class="currentPage"': '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
| 460 | + $orderBy = !empty($_GET['orderby']) ? '&orderby='.$_GET['orderby'] : ''; |
|
| 461 | + $orderDir = !empty($_GET['orderdir']) ? '&orderdir='.$_GET['orderdir'] : ''; |
|
| 462 | + if (!empty($qs)) $qs = "?$qs"; |
|
| 463 | + $link = empty($link) ? $modx->makeUrl($modx->documentIdentifier, $modx->documentObject['alias'], $qs."page=$pageNum$orderBy$orderDir") : $this->prepareLink($link)."page=$pageNum"; |
|
| 464 | + $nav .= '<li'.($currentPage ? ' class="currentPage"' : '').'><a'.($currentPage ? ' class="currentPage"' : '').' href="'.$link.'">'.$displayText.'</a></li>'."\n"; |
|
| 465 | 465 | return $nav; |
| 466 | 466 | } |
| 467 | 467 | |
@@ -472,10 +472,10 @@ discard block |
||
| 472 | 472 | * @param $isChecked Indicates if the checked attribute should apply to the |
| 473 | 473 | * element. |
| 474 | 474 | */ |
| 475 | - function addFormField($value, $isChecked) { |
|
| 475 | + function addFormField($value, $isChecked){ |
|
| 476 | 476 | if ($this->formElementType) { |
| 477 | - $checked= $isChecked? "checked ": ""; |
|
| 478 | - $field= "\t\t".'<td><input type="'.$this->formElementType.'" name="'. ($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
| 477 | + $checked = $isChecked ? "checked " : ""; |
|
| 478 | + $field = "\t\t".'<td><input type="'.$this->formElementType.'" name="'.($this->formElementName ? $this->formElementName : $value).'" value="'.$value.'" '.$checked.'/></td>'."\n"; |
|
| 479 | 479 | } |
| 480 | 480 | return $field; |
| 481 | 481 | } |
@@ -484,9 +484,9 @@ discard block |
||
| 484 | 484 | * Generates the proper LIMIT clause for queries to retrieve paged results in |
| 485 | 485 | * a MakeTable $fieldsArray. |
| 486 | 486 | */ |
| 487 | - function handlePaging() { |
|
| 488 | - $offset= (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
| 489 | - $limitClause= ' LIMIT '. ($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
| 487 | + function handlePaging(){ |
|
| 488 | + $offset = (is_numeric($_GET['page']) && $_GET['page'] > 0) ? $_GET['page'] - 1 : 0; |
|
| 489 | + $limitClause = ' LIMIT '.($offset * MAX_DISPLAY_RECORDS_NUM).', '.MAX_DISPLAY_RECORDS_NUM; |
|
| 490 | 490 | return $limitClause; |
| 491 | 491 | } |
| 492 | 492 | |
@@ -496,12 +496,12 @@ discard block |
||
| 496 | 496 | * |
| 497 | 497 | * @param $natural_order If true, the results are returned in natural order. |
| 498 | 498 | */ |
| 499 | - function handleSorting($natural_order=false) { |
|
| 500 | - $orderByClause= ''; |
|
| 499 | + function handleSorting($natural_order = false){ |
|
| 500 | + $orderByClause = ''; |
|
| 501 | 501 | if (!$natural_order) { |
| 502 | - $orderby= !empty($_GET['orderby'])? $_GET['orderby']: "id"; |
|
| 503 | - $orderdir= !empty($_GET['orderdir'])? $_GET['orderdir']: "DESC"; |
|
| 504 | - $orderbyClause= !empty($orderby)? ' ORDER BY ' . $orderby . ' ' . $orderdir . ' ': ""; |
|
| 502 | + $orderby = !empty($_GET['orderby']) ? $_GET['orderby'] : "id"; |
|
| 503 | + $orderdir = !empty($_GET['orderdir']) ? $_GET['orderdir'] : "DESC"; |
|
| 504 | + $orderbyClause = !empty($orderby) ? ' ORDER BY '.$orderby.' '.$orderdir.' ' : ""; |
|
| 505 | 505 | } |
| 506 | 506 | return $orderbyClause; |
| 507 | 507 | } |
@@ -514,15 +514,15 @@ discard block |
||
| 514 | 514 | * @param $text The text for the link (e.g. table column header). |
| 515 | 515 | * @param $qs An optional query string to append to the order by link. |
| 516 | 516 | */ |
| 517 | - function prepareOrderByLink($key, $text, $qs='') { |
|
| 517 | + function prepareOrderByLink($key, $text, $qs = ''){ |
|
| 518 | 518 | global $modx; |
| 519 | 519 | if (!empty($_GET['orderdir'])) { |
| 520 | - $orderDir= strtolower($_GET['orderdir'])=='desc'? '&orderdir=asc': '&orderdir=desc'; |
|
| 520 | + $orderDir = strtolower($_GET['orderdir']) == 'desc' ? '&orderdir=asc' : '&orderdir=desc'; |
|
| 521 | 521 | } else { |
| 522 | - $orderDir= '&orderdir=asc'; |
|
| 522 | + $orderDir = '&orderdir=asc'; |
|
| 523 | 523 | } |
| 524 | 524 | if (!empty($qs)) { |
| 525 | - if (!strrpos($qs, '&')==strlen($qs)-1) $qs.= '&'; |
|
| 525 | + if (!strrpos($qs, '&') == strlen($qs) - 1) $qs .= '&'; |
|
| 526 | 526 | } |
| 527 | 527 | return '<a href="[~'.$modx->documentIdentifier.'~]?'.$qs.'orderby='.$key.$orderDir.'">'.$text.'</a>'; |
| 528 | 528 | } |
@@ -48,6 +48,9 @@ discard block |
||
| 48 | 48 | Input: url from wich the rss file was fetched |
| 49 | 49 | Output: true on sucess |
| 50 | 50 | \*=======================================================================*/ |
| 51 | + /** |
|
| 52 | + * @param string $url |
|
| 53 | + */ |
|
| 51 | 54 | function set ($url, $rss) { |
| 52 | 55 | $this->ERROR = ""; |
| 53 | 56 | $cache_file = $this->file_name( $url ); |
@@ -74,6 +77,9 @@ discard block |
||
| 74 | 77 | Input: url from wich the rss file was fetched |
| 75 | 78 | Output: cached object on HIT, false on MISS |
| 76 | 79 | \*=======================================================================*/ |
| 80 | + /** |
|
| 81 | + * @param string $url |
|
| 82 | + */ |
|
| 77 | 83 | function get ($url) { |
| 78 | 84 | $this->ERROR = ""; |
| 79 | 85 | $cache_file = $this->file_name( $url ); |
@@ -110,6 +116,9 @@ discard block |
||
| 110 | 116 | Input: url from wich the rss file was fetched |
| 111 | 117 | Output: cached object on HIT, false on MISS |
| 112 | 118 | \*=======================================================================*/ |
| 119 | + /** |
|
| 120 | + * @param string $url |
|
| 121 | + */ |
|
| 113 | 122 | function check_cache ( $url ) { |
| 114 | 123 | $this->ERROR = ""; |
| 115 | 124 | $filename = $this->file_name( $url ); |
@@ -156,6 +165,9 @@ discard block |
||
| 156 | 165 | /*=======================================================================*\ |
| 157 | 166 | Function: unserialize |
| 158 | 167 | \*=======================================================================*/ |
| 168 | + /** |
|
| 169 | + * @param string $data |
|
| 170 | + */ |
|
| 159 | 171 | function unserialize ( $data ) { |
| 160 | 172 | return unserialize( $data ); |
| 161 | 173 | } |
@@ -16,27 +16,27 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | */ |
| 18 | 18 | |
| 19 | -class RSSCache { |
|
| 20 | - var $BASE_CACHE = './cache'; // where the cache files are stored |
|
| 21 | - var $MAX_AGE = 3600; // when are files stale, default one hour |
|
| 22 | - var $ERROR = ""; // accumulate error messages |
|
| 19 | +class RSSCache{ |
|
| 20 | + var $BASE_CACHE = './cache'; // where the cache files are stored |
|
| 21 | + var $MAX_AGE = 3600; // when are files stale, default one hour |
|
| 22 | + var $ERROR = ""; // accumulate error messages |
|
| 23 | 23 | |
| 24 | - function __construct($base='', $age='') { |
|
| 25 | - if ( $base ) { |
|
| 24 | + function __construct($base = '', $age = ''){ |
|
| 25 | + if ($base) { |
|
| 26 | 26 | $this->BASE_CACHE = $base; |
| 27 | 27 | } |
| 28 | - if ( $age ) { |
|
| 28 | + if ($age) { |
|
| 29 | 29 | $this->MAX_AGE = $age; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | // attempt to make the cache directory |
| 33 | - if ( ! file_exists( $this->BASE_CACHE ) ) { |
|
| 34 | - $status = @mkdir( $this->BASE_CACHE, 0755 ); |
|
| 33 | + if (!file_exists($this->BASE_CACHE)) { |
|
| 34 | + $status = @mkdir($this->BASE_CACHE, 0755); |
|
| 35 | 35 | |
| 36 | 36 | // if make failed |
| 37 | - if ( ! $status ) { |
|
| 37 | + if (!$status) { |
|
| 38 | 38 | $this->error( |
| 39 | - "Cache couldn't make dir '" . $this->BASE_CACHE . "'." |
|
| 39 | + "Cache couldn't make dir '".$this->BASE_CACHE."'." |
|
| 40 | 40 | ); |
| 41 | 41 | } |
| 42 | 42 | } |
@@ -48,12 +48,12 @@ discard block |
||
| 48 | 48 | Input: url from wich the rss file was fetched |
| 49 | 49 | Output: true on sucess |
| 50 | 50 | \*=======================================================================*/ |
| 51 | - function set ($url, $rss) { |
|
| 51 | + function set($url, $rss){ |
|
| 52 | 52 | $this->ERROR = ""; |
| 53 | - $cache_file = $this->file_name( $url ); |
|
| 54 | - $fp = @fopen( $cache_file, 'w' ); |
|
| 53 | + $cache_file = $this->file_name($url); |
|
| 54 | + $fp = @fopen($cache_file, 'w'); |
|
| 55 | 55 | |
| 56 | - if ( ! $fp ) { |
|
| 56 | + if (!$fp) { |
|
| 57 | 57 | $this->error( |
| 58 | 58 | "Cache unable to open file for writing: $cache_file" |
| 59 | 59 | ); |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | |
| 64 | - $data = $this->serialize( $rss ); |
|
| 65 | - fwrite( $fp, $data ); |
|
| 66 | - fclose( $fp ); |
|
| 64 | + $data = $this->serialize($rss); |
|
| 65 | + fwrite($fp, $data); |
|
| 66 | + fclose($fp); |
|
| 67 | 67 | |
| 68 | 68 | return $cache_file; |
| 69 | 69 | } |
@@ -74,11 +74,11 @@ discard block |
||
| 74 | 74 | Input: url from wich the rss file was fetched |
| 75 | 75 | Output: cached object on HIT, false on MISS |
| 76 | 76 | \*=======================================================================*/ |
| 77 | - function get ($url) { |
|
| 77 | + function get($url){ |
|
| 78 | 78 | $this->ERROR = ""; |
| 79 | - $cache_file = $this->file_name( $url ); |
|
| 79 | + $cache_file = $this->file_name($url); |
|
| 80 | 80 | |
| 81 | - if ( ! file_exists( $cache_file ) ) { |
|
| 81 | + if (!file_exists($cache_file)) { |
|
| 82 | 82 | $this->debug( |
| 83 | 83 | "Cache doesn't contain: $url (cache file: $cache_file)" |
| 84 | 84 | ); |
@@ -86,16 +86,16 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | $fp = @fopen($cache_file, 'r'); |
| 89 | - if ( ! $fp ) { |
|
| 89 | + if (!$fp) { |
|
| 90 | 90 | $this->error( |
| 91 | 91 | "Failed to open cache file for reading: $cache_file" |
| 92 | 92 | ); |
| 93 | 93 | return 0; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if ($filesize = filesize($cache_file) ) { |
|
| 97 | - $data = fread( $fp, filesize($cache_file) ); |
|
| 98 | - $rss = $this->unserialize( $data ); |
|
| 96 | + if ($filesize = filesize($cache_file)) { |
|
| 97 | + $data = fread($fp, filesize($cache_file)); |
|
| 98 | + $rss = $this->unserialize($data); |
|
| 99 | 99 | |
| 100 | 100 | return $rss; |
| 101 | 101 | } |
@@ -110,16 +110,16 @@ discard block |
||
| 110 | 110 | Input: url from wich the rss file was fetched |
| 111 | 111 | Output: cached object on HIT, false on MISS |
| 112 | 112 | \*=======================================================================*/ |
| 113 | - function check_cache ( $url ) { |
|
| 113 | + function check_cache($url){ |
|
| 114 | 114 | $this->ERROR = ""; |
| 115 | - $filename = $this->file_name( $url ); |
|
| 115 | + $filename = $this->file_name($url); |
|
| 116 | 116 | |
| 117 | - if ( file_exists( $filename ) ) { |
|
| 117 | + if (file_exists($filename)) { |
|
| 118 | 118 | // find how long ago the file was added to the cache |
| 119 | 119 | // and whether that is longer then MAX_AGE |
| 120 | - $mtime = filemtime( $filename ); |
|
| 120 | + $mtime = filemtime($filename); |
|
| 121 | 121 | $age = time() - $mtime; |
| 122 | - if ( $this->MAX_AGE > $age ) { |
|
| 122 | + if ($this->MAX_AGE > $age) { |
|
| 123 | 123 | // object exists and is current |
| 124 | 124 | return 'HIT'; |
| 125 | 125 | } |
@@ -134,10 +134,10 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - function cache_age( $cache_key ) { |
|
| 138 | - $filename = $this->file_name( $url ); |
|
| 139 | - if ( file_exists( $filename ) ) { |
|
| 140 | - $mtime = filemtime( $filename ); |
|
| 137 | + function cache_age($cache_key){ |
|
| 138 | + $filename = $this->file_name($url); |
|
| 139 | + if (file_exists($filename)) { |
|
| 140 | + $mtime = filemtime($filename); |
|
| 141 | 141 | $age = time() - $mtime; |
| 142 | 142 | return $age; |
| 143 | 143 | } |
@@ -149,15 +149,15 @@ discard block |
||
| 149 | 149 | /*=======================================================================*\ |
| 150 | 150 | Function: serialize |
| 151 | 151 | \*=======================================================================*/ |
| 152 | - function serialize ( $rss ) { |
|
| 153 | - return serialize( $rss ); |
|
| 152 | + function serialize($rss){ |
|
| 153 | + return serialize($rss); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | /*=======================================================================*\ |
| 157 | 157 | Function: unserialize |
| 158 | 158 | \*=======================================================================*/ |
| 159 | - function unserialize ( $data ) { |
|
| 160 | - return unserialize( $data ); |
|
| 159 | + function unserialize($data){ |
|
| 160 | + return unserialize($data); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /*=======================================================================*\ |
@@ -166,31 +166,31 @@ discard block |
||
| 166 | 166 | Input: url from wich the rss file was fetched |
| 167 | 167 | Output: a file name |
| 168 | 168 | \*=======================================================================*/ |
| 169 | - function file_name ($url) { |
|
| 170 | - $filename = md5( $url ); |
|
| 171 | - return join( DIRECTORY_SEPARATOR, array( $this->BASE_CACHE, $filename ) ); |
|
| 169 | + function file_name($url){ |
|
| 170 | + $filename = md5($url); |
|
| 171 | + return join(DIRECTORY_SEPARATOR, array($this->BASE_CACHE, $filename)); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /*=======================================================================*\ |
| 175 | 175 | Function: error |
| 176 | 176 | Purpose: register error |
| 177 | 177 | \*=======================================================================*/ |
| 178 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
| 178 | + function error($errormsg, $lvl = E_USER_WARNING){ |
|
| 179 | 179 | // append PHP's error message if track_errors enabled |
| 180 | - if ( isset($php_errormsg) ) { |
|
| 180 | + if (isset($php_errormsg)) { |
|
| 181 | 181 | $errormsg .= " ($php_errormsg)"; |
| 182 | 182 | } |
| 183 | 183 | $this->ERROR = $errormsg; |
| 184 | - if ( MAGPIE_DEBUG ) { |
|
| 185 | - trigger_error( $errormsg, $lvl); |
|
| 184 | + if (MAGPIE_DEBUG) { |
|
| 185 | + trigger_error($errormsg, $lvl); |
|
| 186 | 186 | } |
| 187 | 187 | else { |
| 188 | - error_log( $errormsg, 0); |
|
| 188 | + error_log($errormsg, 0); |
|
| 189 | 189 | } |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - function debug ($debugmsg, $lvl=E_USER_NOTICE) { |
|
| 193 | - if ( MAGPIE_DEBUG ) { |
|
| 192 | + function debug($debugmsg, $lvl = E_USER_NOTICE){ |
|
| 193 | + if (MAGPIE_DEBUG) { |
|
| 194 | 194 | $this->error("MagpieRSS [debug] $debugmsg", $lvl); |
| 195 | 195 | } |
| 196 | 196 | } |
@@ -447,6 +447,10 @@ discard block |
||
| 447 | 447 | /** |
| 448 | 448 | * return XML parser, and possibly re-encoded source |
| 449 | 449 | * |
| 450 | + * @param string $source |
|
| 451 | + * @param string $out_enc |
|
| 452 | + * @param string|null $in_enc |
|
| 453 | + * @param boolean $detect |
|
| 450 | 454 | */ |
| 451 | 455 | function create_parser($source, $out_enc, $in_enc, $detect) { |
| 452 | 456 | if ( substr(phpversion(),0,1) == 5) { |
@@ -556,6 +560,9 @@ discard block |
||
| 556 | 560 | } |
| 557 | 561 | } |
| 558 | 562 | |
| 563 | + /** |
|
| 564 | + * @param integer $lvl |
|
| 565 | + */ |
|
| 559 | 566 | function error ($errormsg, $lvl=E_USER_WARNING) { |
| 560 | 567 | // append PHP's error message if track_errors enabled |
| 561 | 568 | if ( isset($php_errormsg) ) { |
@@ -591,6 +598,9 @@ discard block |
||
| 591 | 598 | define("CASE_LOWER",0); |
| 592 | 599 | |
| 593 | 600 | |
| 601 | + /** |
|
| 602 | + * @param integer $case |
|
| 603 | + */ |
|
| 594 | 604 | function array_change_key_case($array,$case=CASE_LOWER) { |
| 595 | 605 | if ($case=CASE_LOWER) $cmd=strtolower; |
| 596 | 606 | elseif ($case=CASE_UPPER) $cmd=strtoupper; |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | define('RSS', 'RSS'); |
| 24 | 24 | define('ATOM', 'Atom'); |
| 25 | 25 | |
| 26 | -require_once (MAGPIE_DIR . 'rss_utils.inc'); |
|
| 26 | +require_once (MAGPIE_DIR.'rss_utils.inc'); |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Hybrid parser, and object, takes RSS as a string and returns a simple object. |
@@ -31,19 +31,19 @@ discard block |
||
| 31 | 31 | * see: rss_fetch.inc for a simpler interface with integrated caching support |
| 32 | 32 | * |
| 33 | 33 | */ |
| 34 | -class MagpieRSS { |
|
| 34 | +class MagpieRSS{ |
|
| 35 | 35 | var $parser; |
| 36 | 36 | |
| 37 | - var $current_item = array(); // item currently being parsed |
|
| 38 | - var $items = array(); // collection of parsed items |
|
| 39 | - var $channel = array(); // hash of channel fields |
|
| 37 | + var $current_item = array(); // item currently being parsed |
|
| 38 | + var $items = array(); // collection of parsed items |
|
| 39 | + var $channel = array(); // hash of channel fields |
|
| 40 | 40 | var $textinput = array(); |
| 41 | 41 | var $image = array(); |
| 42 | 42 | var $feed_type; |
| 43 | 43 | var $feed_version; |
| 44 | - var $encoding = ''; // output encoding of parsed rss |
|
| 44 | + var $encoding = ''; // output encoding of parsed rss |
|
| 45 | 45 | |
| 46 | - var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
| 46 | + var $_source_encoding = ''; // only set if we have to parse xml prolog |
|
| 47 | 47 | |
| 48 | 48 | var $ERROR = ""; |
| 49 | 49 | var $WARNING = ""; |
@@ -91,15 +91,15 @@ discard block |
||
| 91 | 91 | * source encoding. (caveat emptor) |
| 92 | 92 | * |
| 93 | 93 | */ |
| 94 | - function __construct($source, $output_encoding='ISO-8859-1', |
|
| 95 | - $input_encoding=null, $detect_encoding=true) |
|
| 94 | + function __construct($source, $output_encoding = 'ISO-8859-1', |
|
| 95 | + $input_encoding = null, $detect_encoding = true) |
|
| 96 | 96 | { |
| 97 | 97 | # if PHP xml isn't compiled in, die |
| 98 | 98 | # |
| 99 | 99 | if (!function_exists('xml_parser_create')) { |
| 100 | - $this->error( "Failed to load PHP's XML Extension. " . |
|
| 100 | + $this->error("Failed to load PHP's XML Extension. ". |
|
| 101 | 101 | "http://www.php.net/manual/en/ref.xml.php", |
| 102 | - E_USER_ERROR ); |
|
| 102 | + E_USER_ERROR); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | list($parser, $source) = $this->create_parser($source, |
@@ -107,9 +107,9 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | |
| 109 | 109 | if (!is_resource($parser)) { |
| 110 | - $this->error( "Failed to create an instance of PHP's XML parser. " . |
|
| 110 | + $this->error("Failed to create an instance of PHP's XML parser. ". |
|
| 111 | 111 | "http://www.php.net/manual/en/ref.xml.php", |
| 112 | - E_USER_ERROR ); |
|
| 112 | + E_USER_ERROR); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | |
@@ -118,57 +118,57 @@ discard block |
||
| 118 | 118 | # pass in parser, and a reference to this object |
| 119 | 119 | # setup handlers |
| 120 | 120 | # |
| 121 | - xml_set_object( $this->parser, $this ); |
|
| 121 | + xml_set_object($this->parser, $this); |
|
| 122 | 122 | xml_set_element_handler($this->parser, |
| 123 | - 'feed_start_element', 'feed_end_element' ); |
|
| 123 | + 'feed_start_element', 'feed_end_element'); |
|
| 124 | 124 | |
| 125 | - xml_set_character_data_handler( $this->parser, 'feed_cdata' ); |
|
| 125 | + xml_set_character_data_handler($this->parser, 'feed_cdata'); |
|
| 126 | 126 | |
| 127 | - $status = xml_parse( $this->parser, $source ); |
|
| 127 | + $status = xml_parse($this->parser, $source); |
|
| 128 | 128 | |
| 129 | - if (! $status ) { |
|
| 130 | - $errorcode = xml_get_error_code( $this->parser ); |
|
| 131 | - if ( $errorcode != XML_ERROR_NONE ) { |
|
| 132 | - $xml_error = xml_error_string( $errorcode ); |
|
| 129 | + if (!$status) { |
|
| 130 | + $errorcode = xml_get_error_code($this->parser); |
|
| 131 | + if ($errorcode != XML_ERROR_NONE) { |
|
| 132 | + $xml_error = xml_error_string($errorcode); |
|
| 133 | 133 | $error_line = xml_get_current_line_number($this->parser); |
| 134 | 134 | $error_col = xml_get_current_column_number($this->parser); |
| 135 | 135 | $errormsg = "$xml_error at line $error_line, column $error_col"; |
| 136 | 136 | |
| 137 | - $this->error( $errormsg ); |
|
| 137 | + $this->error($errormsg); |
|
| 138 | 138 | } |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - xml_parser_free( $this->parser ); |
|
| 141 | + xml_parser_free($this->parser); |
|
| 142 | 142 | |
| 143 | 143 | $this->normalize(); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - function feed_start_element($p, $element, &$attrs) { |
|
| 146 | + function feed_start_element($p, $element, &$attrs){ |
|
| 147 | 147 | $el = $element = strtolower($element); |
| 148 | 148 | $attrs = array_change_key_case($attrs, CASE_LOWER); |
| 149 | 149 | |
| 150 | 150 | // check for a namespace, and split if found |
| 151 | 151 | $ns = false; |
| 152 | - if ( strpos( $element, ':' ) ) { |
|
| 153 | - list($ns, $el) = explode( ':', $element, 2); |
|
| 152 | + if (strpos($element, ':')) { |
|
| 153 | + list($ns, $el) = explode(':', $element, 2); |
|
| 154 | 154 | } |
| 155 | - if ( $ns and $ns != 'rdf' ) { |
|
| 155 | + if ($ns and $ns != 'rdf') { |
|
| 156 | 156 | $this->current_namespace = $ns; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | # if feed type isn't set, then this is first element of feed |
| 160 | 160 | # identify feed from root element |
| 161 | 161 | # |
| 162 | - if (!isset($this->feed_type) ) { |
|
| 163 | - if ( $el == 'rdf' ) { |
|
| 162 | + if (!isset($this->feed_type)) { |
|
| 163 | + if ($el == 'rdf') { |
|
| 164 | 164 | $this->feed_type = RSS; |
| 165 | 165 | $this->feed_version = '1.0'; |
| 166 | 166 | } |
| 167 | - elseif ( $el == 'rss' ) { |
|
| 167 | + elseif ($el == 'rss') { |
|
| 168 | 168 | $this->feed_type = RSS; |
| 169 | 169 | $this->feed_version = $attrs['version']; |
| 170 | 170 | } |
| 171 | - elseif ( $el == 'feed' ) { |
|
| 171 | + elseif ($el == 'feed') { |
|
| 172 | 172 | $this->feed_type = ATOM; |
| 173 | 173 | $this->feed_version = $attrs['version']; |
| 174 | 174 | $this->inchannel = true; |
@@ -176,14 +176,14 @@ discard block |
||
| 176 | 176 | return; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( $el == 'channel' ) |
|
| 179 | + if ($el == 'channel') |
|
| 180 | 180 | { |
| 181 | 181 | $this->inchannel = true; |
| 182 | 182 | } |
| 183 | - elseif ($el == 'item' or $el == 'entry' ) |
|
| 183 | + elseif ($el == 'item' or $el == 'entry') |
|
| 184 | 184 | { |
| 185 | 185 | $this->initem = true; |
| 186 | - if ( isset($attrs['rdf:about']) ) { |
|
| 186 | + if (isset($attrs['rdf:about'])) { |
|
| 187 | 187 | $this->current_item['about'] = $attrs['rdf:about']; |
| 188 | 188 | } |
| 189 | 189 | } |
@@ -207,10 +207,10 @@ discard block |
||
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | # handle atom content constructs |
| 210 | - elseif ( $this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 210 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
| 211 | 211 | { |
| 212 | 212 | // avoid clashing w/ RSS mod_content |
| 213 | - if ($el == 'content' ) { |
|
| 213 | + if ($el == 'content') { |
|
| 214 | 214 | $el = 'atom_content'; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -220,31 +220,31 @@ discard block |
||
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | // if inside an Atom content construct (e.g. content or summary) field treat tags as text |
| 223 | - elseif ($this->feed_type == ATOM and $this->incontent ) |
|
| 223 | + elseif ($this->feed_type == ATOM and $this->incontent) |
|
| 224 | 224 | { |
| 225 | 225 | // if tags are inlined, then flatten |
| 226 | 226 | $attrs_str = join(' ', |
| 227 | 227 | array_map('map_attrs', |
| 228 | 228 | array_keys($attrs), |
| 229 | - array_values($attrs) ) ); |
|
| 229 | + array_values($attrs))); |
|
| 230 | 230 | |
| 231 | - $this->append_content( "<$element $attrs_str>" ); |
|
| 231 | + $this->append_content("<$element $attrs_str>"); |
|
| 232 | 232 | |
| 233 | - array_unshift( $this->stack, $el ); |
|
| 233 | + array_unshift($this->stack, $el); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | // Atom support many links per containging element. |
| 237 | 237 | // Magpie treats link elements of type rel='alternate' |
| 238 | 238 | // as being equivalent to RSS's simple link element. |
| 239 | 239 | // |
| 240 | - elseif ($this->feed_type == ATOM and $el == 'link' ) |
|
| 240 | + elseif ($this->feed_type == ATOM and $el == 'link') |
|
| 241 | 241 | { |
| 242 | - if ( isset($attrs['rel']) and $attrs['rel'] == 'alternate' ) |
|
| 242 | + if (isset($attrs['rel']) and $attrs['rel'] == 'alternate') |
|
| 243 | 243 | { |
| 244 | 244 | $link_el = 'link'; |
| 245 | 245 | } |
| 246 | 246 | else { |
| 247 | - $link_el = 'link_' . $attrs['rel']; |
|
| 247 | + $link_el = 'link_'.$attrs['rel']; |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | $this->append($link_el, $attrs['href']); |
@@ -257,10 +257,10 @@ discard block |
||
| 257 | 257 | |
| 258 | 258 | |
| 259 | 259 | |
| 260 | - function feed_cdata ($p, $text) { |
|
| 260 | + function feed_cdata($p, $text){ |
|
| 261 | 261 | if ($this->feed_type == ATOM and $this->incontent) |
| 262 | 262 | { |
| 263 | - $this->append_content( $text ); |
|
| 263 | + $this->append_content($text); |
|
| 264 | 264 | } |
| 265 | 265 | else { |
| 266 | 266 | $current_el = join('_', array_reverse($this->stack)); |
@@ -268,35 +268,35 @@ discard block |
||
| 268 | 268 | } |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | - function feed_end_element ($p, $el) { |
|
| 271 | + function feed_end_element($p, $el){ |
|
| 272 | 272 | $el = strtolower($el); |
| 273 | 273 | |
| 274 | - if ( $el == 'item' or $el == 'entry' ) |
|
| 274 | + if ($el == 'item' or $el == 'entry') |
|
| 275 | 275 | { |
| 276 | 276 | $this->items[] = $this->current_item; |
| 277 | 277 | $this->current_item = array(); |
| 278 | 278 | $this->initem = false; |
| 279 | 279 | } |
| 280 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput' ) |
|
| 280 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'textinput') |
|
| 281 | 281 | { |
| 282 | 282 | $this->intextinput = false; |
| 283 | 283 | } |
| 284 | - elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image' ) |
|
| 284 | + elseif ($this->feed_type == RSS and $this->current_namespace == '' and $el == 'image') |
|
| 285 | 285 | { |
| 286 | 286 | $this->inimage = false; |
| 287 | 287 | } |
| 288 | - elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS) ) |
|
| 288 | + elseif ($this->feed_type == ATOM and in_array($el, $this->_CONTENT_CONSTRUCTS)) |
|
| 289 | 289 | { |
| 290 | 290 | $this->incontent = false; |
| 291 | 291 | } |
| 292 | - elseif ($el == 'channel' or $el == 'feed' ) |
|
| 292 | + elseif ($el == 'channel' or $el == 'feed') |
|
| 293 | 293 | { |
| 294 | 294 | $this->inchannel = false; |
| 295 | 295 | } |
| 296 | - elseif ($this->feed_type == ATOM and $this->incontent ) { |
|
| 296 | + elseif ($this->feed_type == ATOM and $this->incontent) { |
|
| 297 | 297 | // balance tags properly |
| 298 | 298 | // note: i don't think this is actually neccessary |
| 299 | - if ( $this->stack[0] == $el ) |
|
| 299 | + if ($this->stack[0] == $el) |
|
| 300 | 300 | { |
| 301 | 301 | $this->append_content("</$el>"); |
| 302 | 302 | } |
@@ -304,91 +304,91 @@ discard block |
||
| 304 | 304 | $this->append_content("<$el />"); |
| 305 | 305 | } |
| 306 | 306 | |
| 307 | - array_shift( $this->stack ); |
|
| 307 | + array_shift($this->stack); |
|
| 308 | 308 | } |
| 309 | 309 | else { |
| 310 | - array_shift( $this->stack ); |
|
| 310 | + array_shift($this->stack); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | $this->current_namespace = false; |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - function concat (&$str1, $str2="") { |
|
| 317 | - if (!isset($str1) ) { |
|
| 318 | - $str1=""; |
|
| 316 | + function concat(&$str1, $str2 = ""){ |
|
| 317 | + if (!isset($str1)) { |
|
| 318 | + $str1 = ""; |
|
| 319 | 319 | } |
| 320 | 320 | $str1 .= $str2; |
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | |
| 324 | 324 | |
| 325 | - function append_content($text) { |
|
| 326 | - if ( $this->initem ) { |
|
| 327 | - $this->concat( $this->current_item[ $this->incontent ], $text ); |
|
| 325 | + function append_content($text){ |
|
| 326 | + if ($this->initem) { |
|
| 327 | + $this->concat($this->current_item[$this->incontent], $text); |
|
| 328 | 328 | } |
| 329 | - elseif ( $this->inchannel ) { |
|
| 330 | - $this->concat( $this->channel[ $this->incontent ], $text ); |
|
| 329 | + elseif ($this->inchannel) { |
|
| 330 | + $this->concat($this->channel[$this->incontent], $text); |
|
| 331 | 331 | } |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | 334 | // smart append - field and namespace aware |
| 335 | - function append($el, $text) { |
|
| 335 | + function append($el, $text){ |
|
| 336 | 336 | if (!$el) { |
| 337 | 337 | return; |
| 338 | 338 | } |
| 339 | - if ( $this->current_namespace ) |
|
| 339 | + if ($this->current_namespace) |
|
| 340 | 340 | { |
| 341 | - if ( $this->initem ) { |
|
| 341 | + if ($this->initem) { |
|
| 342 | 342 | $this->concat( |
| 343 | - $this->current_item[ $this->current_namespace ][ $el ], $text); |
|
| 343 | + $this->current_item[$this->current_namespace][$el], $text); |
|
| 344 | 344 | } |
| 345 | 345 | elseif ($this->inchannel) { |
| 346 | 346 | $this->concat( |
| 347 | - $this->channel[ $this->current_namespace][ $el ], $text ); |
|
| 347 | + $this->channel[$this->current_namespace][$el], $text ); |
|
| 348 | 348 | } |
| 349 | 349 | elseif ($this->intextinput) { |
| 350 | 350 | $this->concat( |
| 351 | - $this->textinput[ $this->current_namespace][ $el ], $text ); |
|
| 351 | + $this->textinput[$this->current_namespace][$el], $text ); |
|
| 352 | 352 | } |
| 353 | 353 | elseif ($this->inimage) { |
| 354 | 354 | $this->concat( |
| 355 | - $this->image[ $this->current_namespace ][ $el ], $text ); |
|
| 355 | + $this->image[$this->current_namespace][$el], $text ); |
|
| 356 | 356 | } |
| 357 | 357 | } |
| 358 | 358 | else { |
| 359 | - if ( $this->initem ) { |
|
| 359 | + if ($this->initem) { |
|
| 360 | 360 | $this->concat( |
| 361 | - $this->current_item[ $el ], $text); |
|
| 361 | + $this->current_item[$el], $text); |
|
| 362 | 362 | } |
| 363 | 363 | elseif ($this->intextinput) { |
| 364 | 364 | $this->concat( |
| 365 | - $this->textinput[ $el ], $text ); |
|
| 365 | + $this->textinput[$el], $text ); |
|
| 366 | 366 | } |
| 367 | 367 | elseif ($this->inimage) { |
| 368 | 368 | $this->concat( |
| 369 | - $this->image[ $el ], $text ); |
|
| 369 | + $this->image[$el], $text ); |
|
| 370 | 370 | } |
| 371 | 371 | elseif ($this->inchannel) { |
| 372 | 372 | $this->concat( |
| 373 | - $this->channel[ $el ], $text ); |
|
| 373 | + $this->channel[$el], $text ); |
|
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | } |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - function normalize () { |
|
| 379 | + function normalize(){ |
|
| 380 | 380 | // if atom populate rss fields |
| 381 | - if ( $this->is_atom() ) { |
|
| 381 | + if ($this->is_atom()) { |
|
| 382 | 382 | $this->channel['description'] = $this->channel['tagline']; |
| 383 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
| 383 | + for ($i = 0; $i < count($this->items); $i++) { |
|
| 384 | 384 | $item = $this->items[$i]; |
| 385 | - if ( isset($item['summary']) ) |
|
| 385 | + if (isset($item['summary'])) |
|
| 386 | 386 | $item['description'] = $item['summary']; |
| 387 | - if ( isset($item['atom_content'])) |
|
| 387 | + if (isset($item['atom_content'])) |
|
| 388 | 388 | $item['content']['encoded'] = $item['atom_content']; |
| 389 | 389 | |
| 390 | - $atom_date = (isset($item['issued']) ) ? $item['issued'] : $item['modified']; |
|
| 391 | - if ( $atom_date ) { |
|
| 390 | + $atom_date = (isset($item['issued'])) ? $item['issued'] : $item['modified']; |
|
| 391 | + if ($atom_date) { |
|
| 392 | 392 | $epoch = @parse_w3cdtf($atom_date); |
| 393 | 393 | if ($epoch and $epoch > 0) { |
| 394 | 394 | $item['date_timestamp'] = $epoch; |
@@ -398,22 +398,22 @@ discard block |
||
| 398 | 398 | $this->items[$i] = $item; |
| 399 | 399 | } |
| 400 | 400 | } |
| 401 | - elseif ( $this->is_rss() ) { |
|
| 401 | + elseif ($this->is_rss()) { |
|
| 402 | 402 | $this->channel['tagline'] = $this->channel['description']; |
| 403 | - for ( $i = 0; $i < count($this->items); $i++) { |
|
| 403 | + for ($i = 0; $i < count($this->items); $i++) { |
|
| 404 | 404 | $item = $this->items[$i]; |
| 405 | - if ( isset($item['description'])) |
|
| 405 | + if (isset($item['description'])) |
|
| 406 | 406 | $item['summary'] = $item['description']; |
| 407 | - if ( isset($item['content']['encoded'] ) ) |
|
| 407 | + if (isset($item['content']['encoded'])) |
|
| 408 | 408 | $item['atom_content'] = $item['content']['encoded']; |
| 409 | 409 | |
| 410 | - if ( $this->is_rss() == '1.0' and isset($item['dc']['date']) ) { |
|
| 410 | + if ($this->is_rss() == '1.0' and isset($item['dc']['date'])) { |
|
| 411 | 411 | $epoch = @parse_w3cdtf($item['dc']['date']); |
| 412 | 412 | if ($epoch and $epoch > 0) { |
| 413 | 413 | $item['date_timestamp'] = $epoch; |
| 414 | 414 | } |
| 415 | 415 | } |
| 416 | - elseif ( isset($item['pubdate']) ) { |
|
| 416 | + elseif (isset($item['pubdate'])) { |
|
| 417 | 417 | $epoch = @strtotime($item['pubdate']); |
| 418 | 418 | if ($epoch > 0) { |
| 419 | 419 | $item['date_timestamp'] = $epoch; |
@@ -426,8 +426,8 @@ discard block |
||
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | |
| 429 | - function is_rss () { |
|
| 430 | - if ( $this->feed_type == RSS ) { |
|
| 429 | + function is_rss(){ |
|
| 430 | + if ($this->feed_type == RSS) { |
|
| 431 | 431 | return $this->feed_version; |
| 432 | 432 | } |
| 433 | 433 | else { |
@@ -435,8 +435,8 @@ discard block |
||
| 435 | 435 | } |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | - function is_atom() { |
|
| 439 | - if ( $this->feed_type == ATOM ) { |
|
| 438 | + function is_atom(){ |
|
| 439 | + if ($this->feed_type == ATOM) { |
|
| 440 | 440 | return $this->feed_version; |
| 441 | 441 | } |
| 442 | 442 | else { |
@@ -448,8 +448,8 @@ discard block |
||
| 448 | 448 | * return XML parser, and possibly re-encoded source |
| 449 | 449 | * |
| 450 | 450 | */ |
| 451 | - function create_parser($source, $out_enc, $in_enc, $detect) { |
|
| 452 | - if ( substr(phpversion(),0,1) == 5) { |
|
| 451 | + function create_parser($source, $out_enc, $in_enc, $detect){ |
|
| 452 | + if (substr(phpversion(), 0, 1) == 5) { |
|
| 453 | 453 | $parser = $this->php5_create_parser($in_enc, $detect); |
| 454 | 454 | } |
| 455 | 455 | else { |
@@ -472,9 +472,9 @@ discard block |
||
| 472 | 472 | * All hail libxml2! |
| 473 | 473 | * |
| 474 | 474 | */ |
| 475 | - function php5_create_parser($in_enc, $detect) { |
|
| 475 | + function php5_create_parser($in_enc, $detect){ |
|
| 476 | 476 | // by default php5 does a fine job of detecting input encodings |
| 477 | - if(!$detect && $in_enc) { |
|
| 477 | + if (!$detect && $in_enc) { |
|
| 478 | 478 | return xml_parser_create($in_enc); |
| 479 | 479 | } |
| 480 | 480 | else { |
@@ -497,8 +497,8 @@ discard block |
||
| 497 | 497 | * @see http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss |
| 498 | 498 | * |
| 499 | 499 | */ |
| 500 | - function php4_create_parser($source, $in_enc, $detect) { |
|
| 501 | - if ( !$detect ) { |
|
| 500 | + function php4_create_parser($source, $in_enc, $detect){ |
|
| 501 | + if (!$detect) { |
|
| 502 | 502 | return array(xml_parser_create($in_enc), $source); |
| 503 | 503 | } |
| 504 | 504 | |
@@ -522,8 +522,8 @@ discard block |
||
| 522 | 522 | // cast the XML to a known encoding |
| 523 | 523 | // @see http://php.net/iconv |
| 524 | 524 | |
| 525 | - if (function_exists('iconv')) { |
|
| 526 | - $encoded_source = iconv($in_enc,'UTF-8', $source); |
|
| 525 | + if (function_exists('iconv')) { |
|
| 526 | + $encoded_source = iconv($in_enc, 'UTF-8', $source); |
|
| 527 | 527 | if ($encoded_source) { |
| 528 | 528 | return array(xml_parser_create('UTF-8'), $encoded_source); |
| 529 | 529 | } |
@@ -531,24 +531,24 @@ discard block |
||
| 531 | 531 | |
| 532 | 532 | // iconv didn't work, try mb_convert_encoding |
| 533 | 533 | // @see http://php.net/mbstring |
| 534 | - if(function_exists('mb_convert_encoding')) { |
|
| 535 | - $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc ); |
|
| 534 | + if (function_exists('mb_convert_encoding')) { |
|
| 535 | + $encoded_source = mb_convert_encoding($source, 'UTF-8', $in_enc); |
|
| 536 | 536 | if ($encoded_source) { |
| 537 | 537 | return array(xml_parser_create('UTF-8'), $encoded_source); |
| 538 | 538 | } |
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | // else |
| 542 | - $this->error("Feed is in an unsupported character encoding. ($in_enc) " . |
|
| 542 | + $this->error("Feed is in an unsupported character encoding. ($in_enc) ". |
|
| 543 | 543 | "You may see strange artifacts, and mangled characters.", |
| 544 | 544 | E_USER_NOTICE); |
| 545 | 545 | |
| 546 | 546 | return array(xml_parser_create(), $source); |
| 547 | 547 | } |
| 548 | 548 | |
| 549 | - function known_encoding($enc) { |
|
| 549 | + function known_encoding($enc){ |
|
| 550 | 550 | $enc = strtoupper($enc); |
| 551 | - if ( in_array($enc, $this->_KNOWN_ENCODINGS) ) { |
|
| 551 | + if (in_array($enc, $this->_KNOWN_ENCODINGS)) { |
|
| 552 | 552 | return $enc; |
| 553 | 553 | } |
| 554 | 554 | else { |
@@ -556,20 +556,20 @@ discard block |
||
| 556 | 556 | } |
| 557 | 557 | } |
| 558 | 558 | |
| 559 | - function error ($errormsg, $lvl=E_USER_WARNING) { |
|
| 559 | + function error($errormsg, $lvl = E_USER_WARNING){ |
|
| 560 | 560 | // append PHP's error message if track_errors enabled |
| 561 | - if ( isset($php_errormsg) ) { |
|
| 561 | + if (isset($php_errormsg)) { |
|
| 562 | 562 | $errormsg .= " ($php_errormsg)"; |
| 563 | 563 | } |
| 564 | - if ( MAGPIE_DEBUG ) { |
|
| 565 | - trigger_error( $errormsg, $lvl); |
|
| 564 | + if (MAGPIE_DEBUG) { |
|
| 565 | + trigger_error($errormsg, $lvl); |
|
| 566 | 566 | } |
| 567 | 567 | else { |
| 568 | - error_log( $errormsg, 0); |
|
| 568 | + error_log($errormsg, 0); |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | - $notices = E_USER_NOTICE|E_NOTICE; |
|
| 572 | - if ( $lvl&$notices ) { |
|
| 571 | + $notices = E_USER_NOTICE | E_NOTICE; |
|
| 572 | + if ($lvl & $notices) { |
|
| 573 | 573 | $this->WARNING = $errormsg; |
| 574 | 574 | } else { |
| 575 | 575 | $this->ERROR = $errormsg; |
@@ -579,7 +579,7 @@ discard block |
||
| 579 | 579 | |
| 580 | 580 | } // end class RSS |
| 581 | 581 | |
| 582 | -function map_attrs($k, $v) { |
|
| 582 | +function map_attrs($k, $v){ |
|
| 583 | 583 | return "$k=\"$v\""; |
| 584 | 584 | } |
| 585 | 585 | |
@@ -587,15 +587,15 @@ discard block |
||
| 587 | 587 | // courtesy, Ryan Currie, [email protected] |
| 588 | 588 | |
| 589 | 589 | if (!function_exists('array_change_key_case')) { |
| 590 | - define("CASE_UPPER",1); |
|
| 591 | - define("CASE_LOWER",0); |
|
| 590 | + define("CASE_UPPER", 1); |
|
| 591 | + define("CASE_LOWER", 0); |
|
| 592 | 592 | |
| 593 | 593 | |
| 594 | - function array_change_key_case($array,$case=CASE_LOWER) { |
|
| 595 | - if ($case=CASE_LOWER) $cmd=strtolower; |
|
| 596 | - elseif ($case=CASE_UPPER) $cmd=strtoupper; |
|
| 597 | - foreach($array as $key=>$value) { |
|
| 598 | - $output[$cmd($key)]=$value; |
|
| 594 | + function array_change_key_case($array, $case = CASE_LOWER){ |
|
| 595 | + if ($case = CASE_LOWER) $cmd = strtolower; |
|
| 596 | + elseif ($case = CASE_UPPER) $cmd = strtoupper; |
|
| 597 | + foreach ($array as $key=>$value) { |
|
| 598 | + $output[$cmd($key)] = $value; |
|
| 599 | 599 | } |
| 600 | 600 | return $output; |
| 601 | 601 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | $modx->db->connect(); |
| 8 | 8 | $modx->getSettings(); |
| 9 | 9 | |
| 10 | -$vword = new VeriWord(148,60); |
|
| 10 | +$vword = new VeriWord(148, 60); |
|
| 11 | 11 | $vword->output_image(); |
| 12 | 12 | $vword->destroy_image(); |
| 13 | 13 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | ## see sample.php for test and usage |
| 44 | 44 | ## sample URL: http://www.program-ruti.org/veriword/ |
| 45 | 45 | #### |
| 46 | -class VeriWord { |
|
| 46 | +class VeriWord{ |
|
| 47 | 47 | |
| 48 | 48 | /* path to font directory*/ |
| 49 | 49 | var $dir_font = "ttf/"; |
@@ -53,45 +53,45 @@ discard block |
||
| 53 | 53 | var $im_width = 0; |
| 54 | 54 | var $im_height = 0; |
| 55 | 55 | |
| 56 | - function __construct($w=200, $h=80) { |
|
| 56 | + function __construct($w = 200, $h = 80){ |
|
| 57 | 57 | /* create session to set word for verification */ |
| 58 | 58 | startCMSSession(); |
| 59 | 59 | $this->set_veriword(); |
| 60 | - $this->dir_font = dirname(__FILE__) . '/' . $this->dir_font; |
|
| 60 | + $this->dir_font = dirname(__FILE__).'/'.$this->dir_font; |
|
| 61 | 61 | $this->im_width = $w; |
| 62 | 62 | $this->im_height = $h; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - function set_veriword() { |
|
| 65 | + function set_veriword(){ |
|
| 66 | 66 | /* create session variable for verification, |
| 67 | 67 | you may change the session variable name */ |
| 68 | 68 | $this->word = $this->pick_word(); |
| 69 | 69 | $_SESSION['veriword'] = $this->word; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - function output_image() { |
|
| 72 | + function output_image(){ |
|
| 73 | 73 | /* output the image as jpeg */ |
| 74 | 74 | $this->draw_image(); |
| 75 | 75 | header("Content-type: image/jpeg"); |
| 76 | 76 | imagejpeg($this->im); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - function pick_word() { |
|
| 79 | + function pick_word(){ |
|
| 80 | 80 | global $modx; |
| 81 | 81 | // set default words |
| 82 | - $words="MODX,Access,Better,BitCode,Chunk,Cache,Desc,Design,Excell,Enjoy,URLs,TechView,Gerald,Griff,Humphrey,Holiday,Intel,Integration,Joystick,Join(),Oscope,Genetic,Light,Likeness,Marit,Maaike,Niche,Netherlands,Ordinance,Oscillo,Parser,Phusion,Query,Question,Regalia,Righteous,Snippet,Sentinel,Template,Thespian,Unity,Enterprise,Verily,Veri,Website,WideWeb,Yap,Yellow,Zebra,Zygote"; |
|
| 82 | + $words = "MODX,Access,Better,BitCode,Chunk,Cache,Desc,Design,Excell,Enjoy,URLs,TechView,Gerald,Griff,Humphrey,Holiday,Intel,Integration,Joystick,Join(),Oscope,Genetic,Light,Likeness,Marit,Maaike,Niche,Netherlands,Ordinance,Oscillo,Parser,Phusion,Query,Question,Regalia,Righteous,Snippet,Sentinel,Template,Thespian,Unity,Enterprise,Verily,Veri,Website,WideWeb,Yap,Yellow,Zebra,Zygote"; |
|
| 83 | 83 | $words = $modx->config['captcha_words'] ? $modx->config['captcha_words'] : $words; |
| 84 | 84 | $arr_words = array_filter(array_map('trim', explode(',', $words))); |
| 85 | 85 | |
| 86 | 86 | /* pick one randomly for text verification */ |
| 87 | - return (string) $arr_words[array_rand($arr_words)].rand(10,999); |
|
| 87 | + return (string) $arr_words[array_rand($arr_words)].rand(10, 999); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - function draw_text() { |
|
| 90 | + function draw_text(){ |
|
| 91 | 91 | $dir = dir($this->dir_font); |
| 92 | 92 | $fontstmp = array(); |
| 93 | 93 | while (false !== ($file = $dir->read())) { |
| 94 | - if(substr($file, -4) == '.ttf') { |
|
| 94 | + if (substr($file, -4) == '.ttf') { |
|
| 95 | 95 | $fontstmp[] = $this->dir_font.$file; |
| 96 | 96 | } |
| 97 | 97 | } |
@@ -99,35 +99,35 @@ discard block |
||
| 99 | 99 | $text_font = (string) $fontstmp[array_rand($fontstmp)]; |
| 100 | 100 | |
| 101 | 101 | /* angle for text inclination */ |
| 102 | - $text_angle = rand(-9,9); |
|
| 102 | + $text_angle = rand(-9, 9); |
|
| 103 | 103 | /* initial text size */ |
| 104 | 104 | $text_size = 30; |
| 105 | 105 | /* calculate text width and height */ |
| 106 | - $box = imagettfbbox ( $text_size, $text_angle, $text_font, $this->word); |
|
| 107 | - $text_width = $box[2]-$box[0]; //text width |
|
| 108 | - $text_height= $box[5]-$box[3]; //text height |
|
| 106 | + $box = imagettfbbox($text_size, $text_angle, $text_font, $this->word); |
|
| 107 | + $text_width = $box[2] - $box[0]; //text width |
|
| 108 | + $text_height = $box[5] - $box[3]; //text height |
|
| 109 | 109 | |
| 110 | 110 | /* adjust text size */ |
| 111 | - $text_size = round((20 * $this->im_width)/$text_width); |
|
| 111 | + $text_size = round((20 * $this->im_width) / $text_width); |
|
| 112 | 112 | |
| 113 | 113 | /* recalculate text width and height */ |
| 114 | - $box = imagettfbbox ( $text_size, $text_angle, $text_font, $this->word); |
|
| 115 | - $text_width = $box[2]-$box[0]; //text width |
|
| 116 | - $text_height= $box[5]-$box[3]; //text height |
|
| 114 | + $box = imagettfbbox($text_size, $text_angle, $text_font, $this->word); |
|
| 115 | + $text_width = $box[2] - $box[0]; //text width |
|
| 116 | + $text_height = $box[5] - $box[3]; //text height |
|
| 117 | 117 | |
| 118 | 118 | /* calculate center position of text */ |
| 119 | - $text_x = ($this->im_width - $text_width)/2; |
|
| 120 | - $text_y = ($this->im_height - $text_height)/2; |
|
| 119 | + $text_x = ($this->im_width - $text_width) / 2; |
|
| 120 | + $text_y = ($this->im_height - $text_height) / 2; |
|
| 121 | 121 | |
| 122 | 122 | /* create canvas for text drawing */ |
| 123 | - $im_text = imagecreate ($this->im_width, $this->im_height); |
|
| 124 | - $bg_color = imagecolorallocate ($im_text, 255, 255, 255); |
|
| 123 | + $im_text = imagecreate($this->im_width, $this->im_height); |
|
| 124 | + $bg_color = imagecolorallocate($im_text, 255, 255, 255); |
|
| 125 | 125 | |
| 126 | 126 | /* pick color for text */ |
| 127 | - $text_color = imagecolorallocate ($im_text, 0, 51, 153); |
|
| 127 | + $text_color = imagecolorallocate($im_text, 0, 51, 153); |
|
| 128 | 128 | |
| 129 | 129 | /* draw text into canvas */ |
| 130 | - imagettftext ( $im_text, |
|
| 130 | + imagettftext($im_text, |
|
| 131 | 131 | $text_size, |
| 132 | 132 | $text_angle, |
| 133 | 133 | $text_x, |
@@ -143,19 +143,19 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | |
| 146 | - function draw_image() { |
|
| 146 | + function draw_image(){ |
|
| 147 | 147 | |
| 148 | 148 | /* pick one background image randomly from image directory */ |
| 149 | - $img_file = $this->dir_noise."noise".rand(1,4).".jpg"; |
|
| 149 | + $img_file = $this->dir_noise."noise".rand(1, 4).".jpg"; |
|
| 150 | 150 | |
| 151 | 151 | /* create "noise" background image from your image stock*/ |
| 152 | - $noise_img = @imagecreatefromjpeg ($img_file); |
|
| 152 | + $noise_img = @imagecreatefromjpeg($img_file); |
|
| 153 | 153 | $noise_width = imagesx($noise_img); |
| 154 | 154 | $noise_height = imagesy($noise_img); |
| 155 | 155 | |
| 156 | 156 | /* resize the background image to fit the size of image output */ |
| 157 | - $this->im = imagecreatetruecolor($this->im_width,$this->im_height); |
|
| 158 | - imagecopyresampled ($this->im, |
|
| 157 | + $this->im = imagecreatetruecolor($this->im_width, $this->im_height); |
|
| 158 | + imagecopyresampled($this->im, |
|
| 159 | 159 | $noise_img, |
| 160 | 160 | 0, 0, 0, 0, |
| 161 | 161 | $this->im_width, |
@@ -164,17 +164,17 @@ discard block |
||
| 164 | 164 | $noise_height); |
| 165 | 165 | |
| 166 | 166 | /* put text image into background image */ |
| 167 | - imagecopymerge ( $this->im, |
|
| 167 | + imagecopymerge($this->im, |
|
| 168 | 168 | $this->draw_text(), |
| 169 | 169 | 0, 0, 0, 0, |
| 170 | 170 | $this->im_width, |
| 171 | 171 | $this->im_height, |
| 172 | - 70 ); |
|
| 172 | + 70); |
|
| 173 | 173 | |
| 174 | 174 | return $this->im; |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | - function destroy_image() { |
|
| 177 | + function destroy_image(){ |
|
| 178 | 178 | |
| 179 | 179 | imagedestroy($this->im); |
| 180 | 180 | |