@@ -8,23 +8,23 @@ discard block |
||
8 | 8 | * creates backups of gk_ tables and initializes archive directory. |
9 | 9 | ***************************************************************************/ |
10 | 10 | |
11 | -$opt['rootpath'] = __DIR__ . '/../../'; |
|
12 | -require_once $opt['rootpath'] . 'lib2/cli.inc.php'; |
|
11 | +$opt['rootpath'] = __DIR__.'/../../'; |
|
12 | +require_once $opt['rootpath'].'lib2/cli.inc.php'; |
|
13 | 13 | |
14 | 14 | if (count($argv) != 2 || ($argv[1] != 'init' && $argv[1] != 'discard')) { |
15 | - die("\n" . |
|
16 | - "Please verify that runcron.php is disabled in crontab;\n" . |
|
17 | - "then run this script with\n" . |
|
18 | - "\n" . |
|
19 | - " php save-gkstate.php init to initialize or reset GK archive\n" . |
|
20 | - " php save-gkstate.php discard to discard GK archive\n" . |
|
21 | - "\n" . |
|
22 | - "Don't forget to re-enable cronjobs afterwards!\n" . |
|
15 | + die("\n". |
|
16 | + "Please verify that runcron.php is disabled in crontab;\n". |
|
17 | + "then run this script with\n". |
|
18 | + "\n". |
|
19 | + " php save-gkstate.php init to initialize or reset GK archive\n". |
|
20 | + " php save-gkstate.php discard to discard GK archive\n". |
|
21 | + "\n". |
|
22 | + "Don't forget to re-enable cronjobs afterwards!\n". |
|
23 | 23 | "\n"); |
24 | 24 | } |
25 | 25 | |
26 | 26 | if ($opt['cron']['geokrety']['xml_archive'] != ($argv[1] == 'init')) { |
27 | - die("Error: Geokrety XML archiving is " . ($opt['cron']['geokrety']['xml_archive'] ? 'enabled' : 'disabled') . " in settings\n"); |
|
27 | + die("Error: Geokrety XML archiving is ".($opt['cron']['geokrety']['xml_archive'] ? 'enabled' : 'disabled')." in settings\n"); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | echo "deleting old archive if exists\n"; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | sql("DROP TABLE IF EXISTS _backup_gk_move_waypoint"); |
36 | 36 | sql("DROP TABLE IF EXISTS _backup_gk_user"); |
37 | 37 | |
38 | -foreach (glob($opt['rootpath'] . "cache2/geokrety/import-*.xml") as $f) { |
|
38 | +foreach (glob($opt['rootpath']."cache2/geokrety/import-*.xml") as $f) { |
|
39 | 39 | unlink($f); |
40 | 40 | } |
41 | 41 |
@@ -10,14 +10,14 @@ |
||
10 | 10 | * version 9 on, as newcache.php and editcache.php now trim the names. |
11 | 11 | ***************************************************************************/ |
12 | 12 | |
13 | -$opt['rootpath'] = __DIR__ . '/../../'; |
|
14 | -require __DIR__ . '/../../lib2/cli.inc.php'; |
|
13 | +$opt['rootpath'] = __DIR__.'/../../'; |
|
14 | +require __DIR__.'/../../lib2/cli.inc.php'; |
|
15 | 15 | |
16 | 16 | $rs = sql("SELECT `cache_id`, `name` FROM `caches` WHERE `name`<'\"' ORDER BY `name` ASC"); |
17 | 17 | while ($r = sql_fetch_array($rs)) { |
18 | 18 | $name = trim($r['name']); |
19 | 19 | if ($name != $r['name'] && $name != "") { |
20 | - echo "ID " . $r['cache_id'] . ": trimmed cache name to '" . $name . "'\n"; |
|
20 | + echo "ID ".$r['cache_id'].": trimmed cache name to '".$name."'\n"; |
|
21 | 21 | sql("UPDATE `caches` SET `name`='&1' WHERE `cache_id`=&2", $name, $r['cache_id']); |
22 | 22 | } |
23 | 23 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | use Oc\Libse\ChildWp\ControllerChildWp; |
10 | 10 | use Oc\Libse\ChildWp\HandlerChildWp; |
11 | 11 | |
12 | -require __DIR__ . '/lib2/web.inc.php'; |
|
12 | +require __DIR__.'/lib2/web.inc.php'; |
|
13 | 13 | |
14 | 14 | $tpl->name = 'childwp'; |
15 | 15 | $tpl->menuitem = MNU_CACHES_HIDE; |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | if ($redirect) { |
37 | - $tpl->redirect('editcache.php?cacheid=' . $presenter->getCacheId()); |
|
37 | + $tpl->redirect('editcache.php?cacheid='.$presenter->getCacheId()); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | $presenter->prepare($tpl); |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * Unicode Reminder メモ |
6 | 6 | ***************************************************************************/ |
7 | 7 | |
8 | -require __DIR__ . '/lib2/web.inc.php'; |
|
8 | +require __DIR__.'/lib2/web.inc.php'; |
|
9 | 9 | |
10 | 10 | $tpl->name = 'newcachesrest'; |
11 | 11 | $tpl->menuitem = MNU_START_NEWCACHES; |
@@ -14,8 +14,7 @@ discard block |
||
14 | 14 | $tpl->caching = true; |
15 | 15 | $tpl->cache_lifetime = 3600; |
16 | 16 | |
17 | -$country = isset($_REQUEST['usercountry']) ? $_REQUEST['usercountry'] : |
|
18 | - (isset($_REQUEST['country']) ? $_REQUEST['country'] : $opt['page']['main_country']); |
|
17 | +$country = isset($_REQUEST['usercountry']) ? $_REQUEST['usercountry'] : (isset($_REQUEST['country']) ? $_REQUEST['country'] : $opt['page']['main_country']); |
|
19 | 18 | |
20 | 19 | if (!$tpl->is_cached()) { |
21 | 20 | $newCaches = array(); |
@@ -27,7 +26,7 @@ discard block |
||
27 | 26 | FROM `caches` |
28 | 27 | INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id` |
29 | 28 | WHERE `cache_status`.`allow_user_view`=1 |
30 | - AND `country`!='" . sql_escape($country) . "' |
|
29 | + AND `country`!='" . sql_escape($country)."' |
|
31 | 30 | ORDER BY `date_created` DESC LIMIT 200" |
32 | 31 | ); |
33 | 32 |
@@ -5,15 +5,15 @@ discard block |
||
5 | 5 | * Unicode Reminder メモ |
6 | 6 | ***************************************************************************/ |
7 | 7 | |
8 | -require __DIR__ . '/lib2/web.inc.php'; |
|
9 | -require_once __DIR__ . '/lib2/edithelper.inc.php'; |
|
8 | +require __DIR__.'/lib2/web.inc.php'; |
|
9 | +require_once __DIR__.'/lib2/edithelper.inc.php'; |
|
10 | 10 | |
11 | 11 | $tpl->name = 'mylists'; |
12 | 12 | $tpl->menuitem = MNU_MYPROFILE_LISTS; |
13 | 13 | |
14 | 14 | $login->verify(); |
15 | 15 | if ($login->userid == 0) { |
16 | - $tpl->redirect('login.php?target=' . urlencode($tpl->target)); |
|
16 | + $tpl->redirect('login.php?target='.urlencode($tpl->target)); |
|
17 | 17 | } |
18 | 18 | $user = new user($login->userid); |
19 | 19 | |
@@ -152,14 +152,14 @@ discard block |
||
152 | 152 | |
153 | 153 | // redirect to list search output after editing a list from the search output page |
154 | 154 | if ($fromsearch && !$switchDescMode && !$name_error && isset($_REQUEST['listid'])) { |
155 | - $iwp = ($invalid_waypoints ? '&invalidwp=' . urlencode($invalid_waypoints) : ''); |
|
156 | - $tpl->redirect('cachelist.php?id=' . ($_REQUEST['listid'] + 0) . $iwp); |
|
155 | + $iwp = ($invalid_waypoints ? '&invalidwp='.urlencode($invalid_waypoints) : ''); |
|
156 | + $tpl->redirect('cachelist.php?id='.($_REQUEST['listid'] + 0).$iwp); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | // prepare editor and editing |
160 | 160 | if ($descMode == 3) { |
161 | 161 | $tpl->add_header_javascript('resource2/tinymce/tiny_mce_gzip.js'); |
162 | - $tpl->add_header_javascript('resource2/tinymce/config/list.js.php?lang=' . strtolower($opt['template']['locale'])); |
|
162 | + $tpl->add_header_javascript('resource2/tinymce/config/list.js.php?lang='.strtolower($opt['template']['locale'])); |
|
163 | 163 | } |
164 | 164 | $tpl->add_header_javascript(editorJsPath()); |
165 | 165 | if ($edit_list) { |
@@ -26,164 +26,164 @@ discard block |
||
26 | 26 | * Returns: if $file specified - true if OK |
27 | 27 | if $file not specified - image data |
28 | 28 | */ |
29 | -function imagebmp($img,$file="",$RLE=0) |
|
29 | +function imagebmp($img, $file = "", $RLE = 0) |
|
30 | 30 | { |
31 | 31 | |
32 | 32 | |
33 | -$ColorCount=imagecolorstotal($img); |
|
33 | +$ColorCount = imagecolorstotal($img); |
|
34 | 34 | |
35 | -$Transparent=imagecolortransparent($img); |
|
36 | -$IsTransparent=$Transparent!=-1; |
|
35 | +$Transparent = imagecolortransparent($img); |
|
36 | +$IsTransparent = $Transparent != -1; |
|
37 | 37 | |
38 | 38 | |
39 | -if($IsTransparent) $ColorCount--; |
|
39 | +if ($IsTransparent) $ColorCount--; |
|
40 | 40 | |
41 | -if($ColorCount==0) {$ColorCount=0; $BitCount=24;}; |
|
42 | -if(($ColorCount>0)and($ColorCount<=2)) {$ColorCount=2; $BitCount=1;}; |
|
43 | -if(($ColorCount>2)and($ColorCount<=16)) { $ColorCount=16; $BitCount=4;}; |
|
44 | -if(($ColorCount>16)and($ColorCount<=256)) { $ColorCount=0; $BitCount=8;}; |
|
41 | +if ($ColorCount == 0) {$ColorCount = 0; $BitCount = 24; }; |
|
42 | +if (($ColorCount > 0) and ($ColorCount <= 2)) {$ColorCount = 2; $BitCount = 1; }; |
|
43 | +if (($ColorCount > 2) and ($ColorCount <= 16)) { $ColorCount = 16; $BitCount = 4; }; |
|
44 | +if (($ColorCount > 16) and ($ColorCount <= 256)) { $ColorCount = 0; $BitCount = 8; }; |
|
45 | 45 | |
46 | 46 | |
47 | - $Width=imagesx($img); |
|
48 | - $Height=imagesy($img); |
|
47 | + $Width = imagesx($img); |
|
48 | + $Height = imagesy($img); |
|
49 | 49 | |
50 | - $Zbytek=(4-($Width/(8/$BitCount))%4)%4; |
|
50 | + $Zbytek = (4 - ($Width / (8 / $BitCount)) % 4) % 4; |
|
51 | 51 | |
52 | - if($BitCount<24) $palsize=pow(2,$BitCount)*4; |
|
52 | + if ($BitCount < 24) $palsize = pow(2, $BitCount) * 4; |
|
53 | 53 | |
54 | - $size=(floor($Width/(8/$BitCount))+$Zbytek)*$Height+54; |
|
55 | - $size+=$palsize; |
|
56 | - $offset=54+$palsize; |
|
54 | + $size = (floor($Width / (8 / $BitCount)) + $Zbytek) * $Height + 54; |
|
55 | + $size += $palsize; |
|
56 | + $offset = 54 + $palsize; |
|
57 | 57 | |
58 | 58 | // Bitmap File Header |
59 | - $ret = 'BM'; // header (2b) |
|
60 | - $ret .= int_to_dword($size); // size of file (4b) |
|
61 | - $ret .= int_to_dword(0); // reserved (4b) |
|
62 | - $ret .= int_to_dword($offset); // byte location in the file which is first byte of IMAGE (4b) |
|
59 | + $ret = 'BM'; // header (2b) |
|
60 | + $ret .= int_to_dword($size); // size of file (4b) |
|
61 | + $ret .= int_to_dword(0); // reserved (4b) |
|
62 | + $ret .= int_to_dword($offset); // byte location in the file which is first byte of IMAGE (4b) |
|
63 | 63 | // Bitmap Info Header |
64 | - $ret .= int_to_dword(40); // Size of BITMAPINFOHEADER (4b) |
|
65 | - $ret .= int_to_dword($Width); // width of bitmap (4b) |
|
66 | - $ret .= int_to_dword($Height); // height of bitmap (4b) |
|
67 | - $ret .= int_to_word(1); // biPlanes = 1 (2b) |
|
68 | - $ret .= int_to_word($BitCount); // biBitCount = {1 (mono) or 4 (16 clr ) or 8 (256 clr) or 24 (16 Mil)} (2b) |
|
69 | - $ret .= int_to_dword($RLE); // RLE COMPRESSION (4b) |
|
70 | - $ret .= int_to_dword(0); // width x height (4b) |
|
71 | - $ret .= int_to_dword(0); // biXPelsPerMeter (4b) |
|
72 | - $ret .= int_to_dword(0); // biYPelsPerMeter (4b) |
|
73 | - $ret .= int_to_dword(0); // Number of palettes used (4b) |
|
74 | - $ret .= int_to_dword(0); // Number of important colour (4b) |
|
64 | + $ret .= int_to_dword(40); // Size of BITMAPINFOHEADER (4b) |
|
65 | + $ret .= int_to_dword($Width); // width of bitmap (4b) |
|
66 | + $ret .= int_to_dword($Height); // height of bitmap (4b) |
|
67 | + $ret .= int_to_word(1); // biPlanes = 1 (2b) |
|
68 | + $ret .= int_to_word($BitCount); // biBitCount = {1 (mono) or 4 (16 clr ) or 8 (256 clr) or 24 (16 Mil)} (2b) |
|
69 | + $ret .= int_to_dword($RLE); // RLE COMPRESSION (4b) |
|
70 | + $ret .= int_to_dword(0); // width x height (4b) |
|
71 | + $ret .= int_to_dword(0); // biXPelsPerMeter (4b) |
|
72 | + $ret .= int_to_dword(0); // biYPelsPerMeter (4b) |
|
73 | + $ret .= int_to_dword(0); // Number of palettes used (4b) |
|
74 | + $ret .= int_to_dword(0); // Number of important colour (4b) |
|
75 | 75 | // image data |
76 | 76 | |
77 | - $CC=$ColorCount; |
|
78 | - $sl1=strlen($ret); |
|
79 | - if($CC==0) $CC=256; |
|
80 | - if($BitCount<24) |
|
77 | + $CC = $ColorCount; |
|
78 | + $sl1 = strlen($ret); |
|
79 | + if ($CC == 0) $CC = 256; |
|
80 | + if ($BitCount < 24) |
|
81 | 81 | { |
82 | - $ColorTotal=imagecolorstotal($img); |
|
83 | - if($IsTransparent) $ColorTotal--; |
|
82 | + $ColorTotal = imagecolorstotal($img); |
|
83 | + if ($IsTransparent) $ColorTotal--; |
|
84 | 84 | |
85 | - for($p=0;$p<$ColorTotal;$p++) |
|
85 | + for ($p = 0; $p < $ColorTotal; $p++) |
|
86 | 86 | { |
87 | - $color=imagecolorsforindex($img,$p); |
|
88 | - $ret.=inttobyte($color["blue"]); |
|
89 | - $ret.=inttobyte($color["green"]); |
|
90 | - $ret.=inttobyte($color["red"]); |
|
91 | - $ret.=inttobyte(0); //RESERVED |
|
87 | + $color = imagecolorsforindex($img, $p); |
|
88 | + $ret .= inttobyte($color["blue"]); |
|
89 | + $ret .= inttobyte($color["green"]); |
|
90 | + $ret .= inttobyte($color["red"]); |
|
91 | + $ret .= inttobyte(0); //RESERVED |
|
92 | 92 | }; |
93 | 93 | |
94 | - $CT=$ColorTotal; |
|
95 | - for($p=$ColorTotal;$p<$CC;$p++) |
|
94 | + $CT = $ColorTotal; |
|
95 | + for ($p = $ColorTotal; $p < $CC; $p++) |
|
96 | 96 | { |
97 | - $ret.=inttobyte(0); |
|
98 | - $ret.=inttobyte(0); |
|
99 | - $ret.=inttobyte(0); |
|
100 | - $ret.=inttobyte(0); //RESERVED |
|
97 | + $ret .= inttobyte(0); |
|
98 | + $ret .= inttobyte(0); |
|
99 | + $ret .= inttobyte(0); |
|
100 | + $ret .= inttobyte(0); //RESERVED |
|
101 | 101 | }; |
102 | 102 | }; |
103 | 103 | |
104 | 104 | |
105 | -if($BitCount<=8) |
|
105 | +if ($BitCount <= 8) |
|
106 | 106 | { |
107 | 107 | |
108 | - for($y=$Height-1;$y>=0;$y--) |
|
108 | + for ($y = $Height - 1; $y >= 0; $y--) |
|
109 | 109 | { |
110 | - $bWrite=""; |
|
111 | - for($x=0;$x<$Width;$x++) |
|
110 | + $bWrite = ""; |
|
111 | + for ($x = 0; $x < $Width; $x++) |
|
112 | 112 | { |
113 | - $color=imagecolorat($img,$x,$y); |
|
114 | - $bWrite.=decbinx($color,$BitCount); |
|
115 | - if(strlen($bWrite)==8) |
|
113 | + $color = imagecolorat($img, $x, $y); |
|
114 | + $bWrite .= decbinx($color, $BitCount); |
|
115 | + if (strlen($bWrite) == 8) |
|
116 | 116 | { |
117 | - $retd.=inttobyte(bindec($bWrite)); |
|
118 | - $bWrite=""; |
|
117 | + $retd .= inttobyte(bindec($bWrite)); |
|
118 | + $bWrite = ""; |
|
119 | 119 | }; |
120 | 120 | }; |
121 | 121 | |
122 | - if((strlen($bWrite)<8)and(strlen($bWrite)!=0)) |
|
122 | + if ((strlen($bWrite) < 8) and (strlen($bWrite) != 0)) |
|
123 | 123 | { |
124 | - $sl=strlen($bWrite); |
|
125 | - for($t=0;$t<8-$sl;$t++) |
|
126 | - $sl.="0"; |
|
127 | - $retd.=inttobyte(bindec($bWrite)); |
|
124 | + $sl = strlen($bWrite); |
|
125 | + for ($t = 0; $t < 8 - $sl; $t++) |
|
126 | + $sl .= "0"; |
|
127 | + $retd .= inttobyte(bindec($bWrite)); |
|
128 | 128 | }; |
129 | - for($z=0;$z<$Zbytek;$z++) |
|
130 | - $retd.=inttobyte(0); |
|
129 | + for ($z = 0; $z < $Zbytek; $z++) |
|
130 | + $retd .= inttobyte(0); |
|
131 | 131 | }; |
132 | 132 | }; |
133 | 133 | |
134 | -if(($RLE==1)and($BitCount==8)) |
|
134 | +if (($RLE == 1) and ($BitCount == 8)) |
|
135 | 135 | { |
136 | - for($t=0;$t<strlen($retd);$t+=4) |
|
136 | + for ($t = 0; $t < strlen($retd); $t += 4) |
|
137 | 137 | { |
138 | - if($t!=0) |
|
139 | - if(($t)%$Width==0) |
|
140 | - $ret.=chr(0).chr(0); |
|
138 | + if ($t != 0) |
|
139 | + if (($t) % $Width == 0) |
|
140 | + $ret .= chr(0).chr(0); |
|
141 | 141 | |
142 | - if(($t+5)%$Width==0) |
|
142 | + if (($t + 5) % $Width == 0) |
|
143 | 143 | { |
144 | - $ret.=chr(0).chr(5).substr($retd,$t,5).chr(0); |
|
145 | - $t+=1; |
|
144 | + $ret .= chr(0).chr(5).substr($retd, $t, 5).chr(0); |
|
145 | + $t += 1; |
|
146 | 146 | } |
147 | - if(($t+6)%$Width==0) |
|
147 | + if (($t + 6) % $Width == 0) |
|
148 | 148 | { |
149 | - $ret.=chr(0).chr(6).substr($retd,$t,6); |
|
150 | - $t+=2; |
|
149 | + $ret .= chr(0).chr(6).substr($retd, $t, 6); |
|
150 | + $t += 2; |
|
151 | 151 | } |
152 | 152 | else |
153 | 153 | { |
154 | - $ret.=chr(0).chr(4).substr($retd,$t,4); |
|
154 | + $ret .= chr(0).chr(4).substr($retd, $t, 4); |
|
155 | 155 | }; |
156 | 156 | }; |
157 | - $ret.=chr(0).chr(1); |
|
157 | + $ret .= chr(0).chr(1); |
|
158 | 158 | } |
159 | 159 | else |
160 | 160 | { |
161 | -$ret.=$retd; |
|
161 | +$ret .= $retd; |
|
162 | 162 | }; |
163 | 163 | |
164 | 164 | |
165 | - if($BitCount==24) |
|
165 | + if ($BitCount == 24) |
|
166 | 166 | { |
167 | - for($z=0;$z<$Zbytek;$z++) |
|
168 | - $Dopl.=chr(0); |
|
167 | + for ($z = 0; $z < $Zbytek; $z++) |
|
168 | + $Dopl .= chr(0); |
|
169 | 169 | |
170 | - for($y=$Height-1;$y>=0;$y--) |
|
170 | + for ($y = $Height - 1; $y >= 0; $y--) |
|
171 | 171 | { |
172 | - for($x=0;$x<$Width;$x++) |
|
172 | + for ($x = 0; $x < $Width; $x++) |
|
173 | 173 | { |
174 | - $color=imagecolorsforindex($img,ImageColorAt($img,$x,$y)); |
|
175 | - $ret.=chr($color["blue"]).chr($color["green"]).chr($color["red"]); |
|
174 | + $color = imagecolorsforindex($img, ImageColorAt($img, $x, $y)); |
|
175 | + $ret .= chr($color["blue"]).chr($color["green"]).chr($color["red"]); |
|
176 | 176 | } |
177 | - $ret.=$Dopl; |
|
177 | + $ret .= $Dopl; |
|
178 | 178 | }; |
179 | 179 | |
180 | 180 | }; |
181 | 181 | |
182 | - if($file!="") |
|
182 | + if ($file != "") |
|
183 | 183 | { |
184 | - $r=($f=fopen($file,"w")); |
|
185 | - $r=$r and fwrite($f,$ret); |
|
186 | - $r=$r and fclose($f); |
|
184 | + $r = ($f = fopen($file, "w")); |
|
185 | + $r = $r and fwrite($f, $ret); |
|
186 | + $r = $r and fclose($f); |
|
187 | 187 | return $r; |
188 | 188 | } |
189 | 189 | else |
@@ -208,58 +208,58 @@ discard block |
||
208 | 208 | { |
209 | 209 | global $CurrentBit, $echoMode; |
210 | 210 | |
211 | -$f=fopen($file,"r"); |
|
212 | -$Header=fread($f,2); |
|
211 | +$f = fopen($file, "r"); |
|
212 | +$Header = fread($f, 2); |
|
213 | 213 | |
214 | -if($Header=="BM") |
|
214 | +if ($Header == "BM") |
|
215 | 215 | { |
216 | - $Size=freaddword($f); |
|
217 | - $Reserved1=freadword($f); |
|
218 | - $Reserved2=freadword($f); |
|
219 | - $FirstByteOfImage=freaddword($f); |
|
220 | - |
|
221 | - $SizeBITMAPINFOHEADER=freaddword($f); |
|
222 | - $Width=freaddword($f); |
|
223 | - $Height=freaddword($f); |
|
224 | - $biPlanes=freadword($f); |
|
225 | - $biBitCount=freadword($f); |
|
226 | - $RLECompression=freaddword($f); |
|
227 | - $WidthxHeight=freaddword($f); |
|
228 | - $biXPelsPerMeter=freaddword($f); |
|
229 | - $biYPelsPerMeter=freaddword($f); |
|
230 | - $NumberOfPalettesUsed=freaddword($f); |
|
231 | - $NumberOfImportantColors=freaddword($f); |
|
232 | - |
|
233 | -if($biBitCount<24) |
|
216 | + $Size = freaddword($f); |
|
217 | + $Reserved1 = freadword($f); |
|
218 | + $Reserved2 = freadword($f); |
|
219 | + $FirstByteOfImage = freaddword($f); |
|
220 | + |
|
221 | + $SizeBITMAPINFOHEADER = freaddword($f); |
|
222 | + $Width = freaddword($f); |
|
223 | + $Height = freaddword($f); |
|
224 | + $biPlanes = freadword($f); |
|
225 | + $biBitCount = freadword($f); |
|
226 | + $RLECompression = freaddword($f); |
|
227 | + $WidthxHeight = freaddword($f); |
|
228 | + $biXPelsPerMeter = freaddword($f); |
|
229 | + $biYPelsPerMeter = freaddword($f); |
|
230 | + $NumberOfPalettesUsed = freaddword($f); |
|
231 | + $NumberOfImportantColors = freaddword($f); |
|
232 | + |
|
233 | +if ($biBitCount < 24) |
|
234 | 234 | { |
235 | - $img=imagecreate($Width,$Height); |
|
236 | - $Colors=pow(2,$biBitCount); |
|
237 | - for($p=0;$p<$Colors;$p++) |
|
235 | + $img = imagecreate($Width, $Height); |
|
236 | + $Colors = pow(2, $biBitCount); |
|
237 | + for ($p = 0; $p < $Colors; $p++) |
|
238 | 238 | { |
239 | - $B=freadbyte($f); |
|
240 | - $G=freadbyte($f); |
|
241 | - $R=freadbyte($f); |
|
242 | - $Reserved=freadbyte($f); |
|
243 | - $Palette[]=imagecolorallocate($img,$R,$G,$B); |
|
239 | + $B = freadbyte($f); |
|
240 | + $G = freadbyte($f); |
|
241 | + $R = freadbyte($f); |
|
242 | + $Reserved = freadbyte($f); |
|
243 | + $Palette[] = imagecolorallocate($img, $R, $G, $B); |
|
244 | 244 | }; |
245 | 245 | |
246 | 246 | |
247 | 247 | |
248 | 248 | |
249 | -if($RLECompression==0) |
|
249 | +if ($RLECompression == 0) |
|
250 | 250 | { |
251 | - $Zbytek=(4-ceil(($Width/(8/$biBitCount)))%4)%4; |
|
251 | + $Zbytek = (4 - ceil(($Width / (8 / $biBitCount))) % 4) % 4; |
|
252 | 252 | |
253 | -for($y=$Height-1;$y>=0;$y--) |
|
253 | +for ($y = $Height - 1; $y >= 0; $y--) |
|
254 | 254 | { |
255 | - $CurrentBit=0; |
|
256 | - for($x=0;$x<$Width;$x++) |
|
255 | + $CurrentBit = 0; |
|
256 | + for ($x = 0; $x < $Width; $x++) |
|
257 | 257 | { |
258 | - $C=freadbits($f,$biBitCount); |
|
259 | - imagesetpixel($img,$x,$y,$Palette[$C]); |
|
258 | + $C = freadbits($f, $biBitCount); |
|
259 | + imagesetpixel($img, $x, $y, $Palette[$C]); |
|
260 | 260 | }; |
261 | - if($CurrentBit!=0) {freadbyte($f);}; |
|
262 | - for($g=0;$g<$Zbytek;$g++) |
|
261 | + if ($CurrentBit != 0) {freadbyte($f); }; |
|
262 | + for ($g = 0; $g < $Zbytek; $g++) |
|
263 | 263 | freadbyte($f); |
264 | 264 | }; |
265 | 265 | |
@@ -267,142 +267,142 @@ discard block |
||
267 | 267 | }; |
268 | 268 | |
269 | 269 | |
270 | -if($RLECompression==1) //$BI_RLE8 |
|
270 | +if ($RLECompression == 1) //$BI_RLE8 |
|
271 | 271 | { |
272 | -$y=$Height; |
|
272 | +$y = $Height; |
|
273 | 273 | |
274 | -$pocetb=0; |
|
274 | +$pocetb = 0; |
|
275 | 275 | |
276 | -while(true) |
|
276 | +while (true) |
|
277 | 277 | { |
278 | 278 | $y--; |
279 | -$prefix=freadbyte($f); |
|
280 | -$suffix=freadbyte($f); |
|
281 | -$pocetb+=2; |
|
279 | +$prefix = freadbyte($f); |
|
280 | +$suffix = freadbyte($f); |
|
281 | +$pocetb += 2; |
|
282 | 282 | |
283 | -$echoit=false; |
|
283 | +$echoit = false; |
|
284 | 284 | |
285 | -if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
286 | -if(($prefix==0)and($suffix==1)) break; |
|
287 | -if(feof($f)) break; |
|
285 | +if ($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
286 | +if (($prefix == 0) and ($suffix == 1)) break; |
|
287 | +if (feof($f)) break; |
|
288 | 288 | |
289 | -while(!(($prefix==0)and($suffix==0))) |
|
289 | +while (!(($prefix == 0) and ($suffix == 0))) |
|
290 | 290 | { |
291 | - if($prefix==0) |
|
291 | + if ($prefix == 0) |
|
292 | 292 | { |
293 | - $pocet=$suffix; |
|
294 | - $Data.=fread($f,$pocet); |
|
295 | - $pocetb+=$pocet; |
|
296 | - if($pocetb%2==1) {freadbyte($f); $pocetb++;}; |
|
293 | + $pocet = $suffix; |
|
294 | + $Data .= fread($f, $pocet); |
|
295 | + $pocetb += $pocet; |
|
296 | + if ($pocetb % 2 == 1) {freadbyte($f); $pocetb++; }; |
|
297 | 297 | }; |
298 | - if($prefix>0) |
|
298 | + if ($prefix > 0) |
|
299 | 299 | { |
300 | - $pocet=$prefix; |
|
301 | - for($r=0;$r<$pocet;$r++) |
|
302 | - $Data.=chr($suffix); |
|
300 | + $pocet = $prefix; |
|
301 | + for ($r = 0; $r < $pocet; $r++) |
|
302 | + $Data .= chr($suffix); |
|
303 | 303 | }; |
304 | - $prefix=freadbyte($f); |
|
305 | - $suffix=freadbyte($f); |
|
306 | - $pocetb+=2; |
|
307 | - if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
304 | + $prefix = freadbyte($f); |
|
305 | + $suffix = freadbyte($f); |
|
306 | + $pocetb += 2; |
|
307 | + if ($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
308 | 308 | }; |
309 | 309 | |
310 | -for($x=0;$x<strlen($Data);$x++) |
|
310 | +for ($x = 0; $x < strlen($Data); $x++) |
|
311 | 311 | { |
312 | - imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]); |
|
312 | + imagesetpixel($img, $x, $y, $Palette[ord($Data[$x])]); |
|
313 | 313 | }; |
314 | -$Data=""; |
|
314 | +$Data = ""; |
|
315 | 315 | |
316 | 316 | }; |
317 | 317 | |
318 | 318 | }; |
319 | 319 | |
320 | 320 | |
321 | -if($RLECompression==2) //$BI_RLE4 |
|
321 | +if ($RLECompression == 2) //$BI_RLE4 |
|
322 | 322 | { |
323 | -$y=$Height; |
|
324 | -$pocetb=0; |
|
323 | +$y = $Height; |
|
324 | +$pocetb = 0; |
|
325 | 325 | |
326 | 326 | /*while(!feof($f)) |
327 | 327 | echo freadbyte($f)."_".freadbyte($f)."<BR>";*/ |
328 | -while(true) |
|
328 | +while (true) |
|
329 | 329 | { |
330 | 330 | //break; |
331 | 331 | $y--; |
332 | -$prefix=freadbyte($f); |
|
333 | -$suffix=freadbyte($f); |
|
334 | -$pocetb+=2; |
|
332 | +$prefix = freadbyte($f); |
|
333 | +$suffix = freadbyte($f); |
|
334 | +$pocetb += 2; |
|
335 | 335 | |
336 | -$echoit=false; |
|
336 | +$echoit = false; |
|
337 | 337 | |
338 | -if($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
339 | -if(($prefix==0)and($suffix==1)) break; |
|
340 | -if(feof($f)) break; |
|
338 | +if ($echoit)echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
339 | +if (($prefix == 0) and ($suffix == 1)) break; |
|
340 | +if (feof($f)) break; |
|
341 | 341 | |
342 | -while(!(($prefix==0)and($suffix==0))) |
|
342 | +while (!(($prefix == 0) and ($suffix == 0))) |
|
343 | 343 | { |
344 | - if($prefix==0) |
|
344 | + if ($prefix == 0) |
|
345 | 345 | { |
346 | - $pocet=$suffix; |
|
347 | - |
|
348 | - $CurrentBit=0; |
|
349 | - for($h=0;$h<$pocet;$h++) |
|
350 | - $Data.=chr(freadbits($f,4)); |
|
351 | - if($CurrentBit!=0) freadbits($f,4); |
|
352 | - $pocetb+=ceil(($pocet/2)); |
|
353 | - if($pocetb%2==1) {freadbyte($f); $pocetb++;}; |
|
346 | + $pocet = $suffix; |
|
347 | + |
|
348 | + $CurrentBit = 0; |
|
349 | + for ($h = 0; $h < $pocet; $h++) |
|
350 | + $Data .= chr(freadbits($f, 4)); |
|
351 | + if ($CurrentBit != 0) freadbits($f, 4); |
|
352 | + $pocetb += ceil(($pocet / 2)); |
|
353 | + if ($pocetb % 2 == 1) {freadbyte($f); $pocetb++; }; |
|
354 | 354 | }; |
355 | - if($prefix>0) |
|
355 | + if ($prefix > 0) |
|
356 | 356 | { |
357 | - $pocet=$prefix; |
|
358 | - $i=0; |
|
359 | - for($r=0;$r<$pocet;$r++) |
|
357 | + $pocet = $prefix; |
|
358 | + $i = 0; |
|
359 | + for ($r = 0; $r < $pocet; $r++) |
|
360 | 360 | { |
361 | - if($i%2==0) |
|
361 | + if ($i % 2 == 0) |
|
362 | 362 | { |
363 | - $Data.=chr($suffix%16); |
|
363 | + $Data .= chr($suffix % 16); |
|
364 | 364 | } |
365 | 365 | else |
366 | 366 | { |
367 | - $Data.=chr(floor($suffix/16)); |
|
367 | + $Data .= chr(floor($suffix / 16)); |
|
368 | 368 | }; |
369 | 369 | $i++; |
370 | 370 | }; |
371 | 371 | }; |
372 | - $prefix=freadbyte($f); |
|
373 | - $suffix=freadbyte($f); |
|
374 | - $pocetb+=2; |
|
375 | - if($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
372 | + $prefix = freadbyte($f); |
|
373 | + $suffix = freadbyte($f); |
|
374 | + $pocetb += 2; |
|
375 | + if ($echoit) echo "Prefix: $prefix Suffix: $suffix<BR>"; |
|
376 | 376 | }; |
377 | 377 | |
378 | -for($x=0;$x<strlen($Data);$x++) |
|
378 | +for ($x = 0; $x < strlen($Data); $x++) |
|
379 | 379 | { |
380 | - imagesetpixel($img,$x,$y,$Palette[ord($Data[$x])]); |
|
380 | + imagesetpixel($img, $x, $y, $Palette[ord($Data[$x])]); |
|
381 | 381 | }; |
382 | -$Data=""; |
|
382 | +$Data = ""; |
|
383 | 383 | |
384 | 384 | }; |
385 | 385 | |
386 | 386 | }; |
387 | 387 | |
388 | 388 | |
389 | - if($biBitCount==24) |
|
389 | + if ($biBitCount == 24) |
|
390 | 390 | { |
391 | - $img=imagecreatetruecolor($Width,$Height); |
|
392 | - $Zbytek=$Width%4; |
|
391 | + $img = imagecreatetruecolor($Width, $Height); |
|
392 | + $Zbytek = $Width % 4; |
|
393 | 393 | |
394 | - for($y=$Height-1;$y>=0;$y--) |
|
394 | + for ($y = $Height - 1; $y >= 0; $y--) |
|
395 | 395 | { |
396 | - for($x=0;$x<$Width;$x++) |
|
396 | + for ($x = 0; $x < $Width; $x++) |
|
397 | 397 | { |
398 | - $B=freadbyte($f); |
|
399 | - $G=freadbyte($f); |
|
400 | - $R=freadbyte($f); |
|
401 | - $color=imagecolorexact($img,$R,$G,$B); |
|
402 | - if($color==-1) $color=imagecolorallocate($img,$R,$G,$B); |
|
403 | - imagesetpixel($img,$x,$y,$color); |
|
398 | + $B = freadbyte($f); |
|
399 | + $G = freadbyte($f); |
|
400 | + $R = freadbyte($f); |
|
401 | + $color = imagecolorexact($img, $R, $G, $B); |
|
402 | + if ($color == -1) $color = imagecolorallocate($img, $R, $G, $B); |
|
403 | + imagesetpixel($img, $x, $y, $color); |
|
404 | 404 | } |
405 | - for($z=0;$z<$Zbytek;$z++) |
|
405 | + for ($z = 0; $z < $Zbytek; $z++) |
|
406 | 406 | freadbyte($f); |
407 | 407 | }; |
408 | 408 | }; |
@@ -438,14 +438,14 @@ discard block |
||
438 | 438 | |
439 | 439 | function freadbyte($f) |
440 | 440 | { |
441 | - return ord(fread($f,1)); |
|
441 | + return ord(fread($f, 1)); |
|
442 | 442 | }; |
443 | 443 | |
444 | 444 | function freadword($f) |
445 | 445 | { |
446 | - $b1=freadbyte($f); |
|
447 | - $b2=freadbyte($f); |
|
448 | - return $b2*256+$b1; |
|
446 | + $b1 = freadbyte($f); |
|
447 | + $b2 = freadbyte($f); |
|
448 | + return $b2 * 256 + $b1; |
|
449 | 449 | }; |
450 | 450 | |
451 | 451 | |
@@ -456,48 +456,48 @@ discard block |
||
456 | 456 | |
457 | 457 | function freaddword($f) |
458 | 458 | { |
459 | - $b1=freadword($f); |
|
460 | - $b2=freadword($f); |
|
461 | - return $b2*65536+$b1; |
|
459 | + $b1 = freadword($f); |
|
460 | + $b2 = freadword($f); |
|
461 | + return $b2 * 65536 + $b1; |
|
462 | 462 | }; |
463 | 463 | |
464 | 464 | |
465 | 465 | |
466 | -function RetBits($byte,$start,$len) |
|
466 | +function RetBits($byte, $start, $len) |
|
467 | 467 | { |
468 | -$bin=decbin8($byte); |
|
469 | -$r=bindec(substr($bin,$start,$len)); |
|
468 | +$bin = decbin8($byte); |
|
469 | +$r = bindec(substr($bin, $start, $len)); |
|
470 | 470 | return $r; |
471 | 471 | |
472 | 472 | }; |
473 | 473 | |
474 | 474 | |
475 | 475 | |
476 | -$CurrentBit=0; |
|
477 | -function freadbits($f,$count) |
|
476 | +$CurrentBit = 0; |
|
477 | +function freadbits($f, $count) |
|
478 | 478 | { |
479 | - global $CurrentBit,$SMode; |
|
480 | - $Byte=freadbyte($f); |
|
481 | - $LastCBit=$CurrentBit; |
|
482 | - $CurrentBit+=$count; |
|
483 | - if($CurrentBit==8) |
|
479 | + global $CurrentBit, $SMode; |
|
480 | + $Byte = freadbyte($f); |
|
481 | + $LastCBit = $CurrentBit; |
|
482 | + $CurrentBit += $count; |
|
483 | + if ($CurrentBit == 8) |
|
484 | 484 | { |
485 | - $CurrentBit=0; |
|
485 | + $CurrentBit = 0; |
|
486 | 486 | } |
487 | 487 | else |
488 | 488 | { |
489 | - fseek($f,ftell($f)-1); |
|
489 | + fseek($f, ftell($f) - 1); |
|
490 | 490 | }; |
491 | - return RetBits($Byte,$LastCBit,$count); |
|
491 | + return RetBits($Byte, $LastCBit, $count); |
|
492 | 492 | }; |
493 | 493 | |
494 | 494 | |
495 | 495 | |
496 | -function RGBToHex($Red,$Green,$Blue) |
|
496 | +function RGBToHex($Red, $Green, $Blue) |
|
497 | 497 | { |
498 | - $hRed=dechex($Red);if(strlen($hRed)==1) $hRed="0$hRed"; |
|
499 | - $hGreen=dechex($Green);if(strlen($hGreen)==1) $hGreen="0$hGreen"; |
|
500 | - $hBlue=dechex($Blue);if(strlen($hBlue)==1) $hBlue="0$hBlue"; |
|
498 | + $hRed = dechex($Red); if (strlen($hRed) == 1) $hRed = "0$hRed"; |
|
499 | + $hGreen = dechex($Green); if (strlen($hGreen) == 1) $hGreen = "0$hGreen"; |
|
500 | + $hBlue = dechex($Blue); if (strlen($hBlue) == 1) $hBlue = "0$hBlue"; |
|
501 | 501 | return($hRed.$hGreen.$hBlue); |
502 | 502 | }; |
503 | 503 | |
@@ -513,15 +513,15 @@ discard block |
||
513 | 513 | |
514 | 514 | function decbin8($d) |
515 | 515 | { |
516 | -return decbinx($d,8); |
|
516 | +return decbinx($d, 8); |
|
517 | 517 | }; |
518 | 518 | |
519 | -function decbinx($d,$n) |
|
519 | +function decbinx($d, $n) |
|
520 | 520 | { |
521 | -$bin=decbin($d); |
|
522 | -$sbin=strlen($bin); |
|
523 | -for($j=0;$j<$n-$sbin;$j++) |
|
524 | - $bin="0$bin"; |
|
521 | +$bin = decbin($d); |
|
522 | +$sbin = strlen($bin); |
|
523 | +for ($j = 0; $j < $n - $sbin; $j++) |
|
524 | + $bin = "0$bin"; |
|
525 | 525 | return $bin; |
526 | 526 | }; |
527 | 527 |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | if (isset($_REQUEST['SESSION']) && $_REQUEST['SESSION'] != '') { |
25 | 25 | $this->init_session(); |
26 | 26 | } |
27 | - } elseif (isset($_COOKIE[$opt['session']['cookiename'] . 'data'])) { |
|
27 | + } elseif (isset($_COOKIE[$opt['session']['cookiename'].'data'])) { |
|
28 | 28 | //get the cookievars-array |
29 | - $decoded = base64_decode($_COOKIE[$opt['session']['cookiename'] . 'data']); |
|
29 | + $decoded = base64_decode($_COOKIE[$opt['session']['cookiename'].'data']); |
|
30 | 30 | |
31 | 31 | if ($decoded !== false) { |
32 | 32 | $this->values = @unserialize($decoded); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | if ($opt['session']['check_referer']) { |
53 | 53 | if (isset($_SERVER['REFERER'])) { |
54 | - if (strtolower(substr('http' + strstr($_SERVER['REFERER'], '://'), 0, strlen($opt['page']['absolute_http_url']))) != strtolower($opt['page']['absolute_http_url'])) { |
|
54 | + if (strtolower(substr('http' +strstr($_SERVER['REFERER'], '://'), 0, strlen($opt['page']['absolute_http_url']))) != strtolower($opt['page']['absolute_http_url'])) { |
|
55 | 55 | $this->createNewSession(); |
56 | 56 | } |
57 | 57 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | if ($this->changed == true) { |
169 | 169 | if (count($this->values) == 0) { |
170 | 170 | setcookie( |
171 | - $opt['session']['cookiename'] . 'data', |
|
171 | + $opt['session']['cookiename'].'data', |
|
172 | 172 | false, |
173 | 173 | time() + 31536000, |
174 | 174 | $opt['session']['path'], |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | ); |
178 | 178 | } else { |
179 | 179 | setcookie( |
180 | - $opt['session']['cookiename'] . 'data', |
|
180 | + $opt['session']['cookiename'].'data', |
|
181 | 181 | base64_encode(serialize($this->values)), |
182 | 182 | time() + 31536000, |
183 | 183 | $opt['session']['path'], |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | |
10 | 10 | |
11 | 11 | // replacement table for Unicode 0x100 to 0x1FF |
12 | -$utf_xlatin = "A a A a A a C c C c C c C c D d D d E e E e E e E e E e G g G g " . |
|
13 | - "G g G g H h H h I i I i I i I i I i IJijJ j K k K L l L l L l L " . |
|
14 | - "l L l N n N n N n n n n O o O o Ö ö OEoeR r R r R r S s S s S s " . |
|
12 | +$utf_xlatin = "A a A a A a C c C c C c C c D d D d E e E e E e E e E e G g G g ". |
|
13 | + "G g G g H h H h I i I i I i I i I i IJijJ j K k K L l L l L l L ". |
|
14 | + "l L l N n N n N n n n n O o O o Ö ö OEoeR r R r R r S s S s S s ". |
|
15 | 15 | "S s T t T t T t U u U u U u U u Ü ü U u W w Y y Y Z z Z z Z z "; |
16 | 16 | |
17 | 17 | // replacement table for Unicode 0x2000 to 0x203F |
@@ -28,11 +28,11 @@ discard block |
||
28 | 28 | $result = ""; |
29 | 29 | |
30 | 30 | while ($pos < strlen($s)) { |
31 | - $c1 = ord($s[$pos ++]); |
|
31 | + $c1 = ord($s[$pos++]); |
|
32 | 32 | if ($c1 < 0xC0) { |
33 | 33 | $result .= chr($c1); |
34 | 34 | } elseif ($pos < strlen($s)) { |
35 | - $c2 = ord($s[$pos ++]); |
|
35 | + $c2 = ord($s[$pos++]); |
|
36 | 36 | if ($c1 < 0xE0) { |
37 | 37 | $code = 0x40 * ($c1 & 0x1F) + ($c2 & 0x3F); |
38 | 38 | if ($code < 0x100) { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $result .= "?"; |
47 | 47 | } |
48 | 48 | } elseif ($pos < strlen($s)) { |
49 | - $c3 = ord($s[$pos ++]); |
|
49 | + $c3 = ord($s[$pos++]); |
|
50 | 50 | $code = 0x1000 * ($c1 & 0x0F) + 0x40 * ($c2 & 0x3F) + ($c3 & 0x3F); |
51 | 51 | switch ($code) { |
52 | 52 | case 0x2026: |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * Constant definitions |
8 | 8 | ***************************************************************************/ |
9 | 9 | |
10 | -require_once __DIR__ . '/../lib/consts-common.inc.php'; |
|
10 | +require_once __DIR__.'/../lib/consts-common.inc.php'; |
|
11 | 11 | |
12 | 12 | define('DEBUG_NO', 0); |
13 | 13 | define('DEBUG_DEVELOPER', 1); |