@@ -112,10 +112,10 @@ discard block |
||
112 | 112 | $rexep = "#" . strtr(preg_quote($format), $masks) . "#"; |
113 | 113 | if (preg_match($rexep, $date, $out)) { |
114 | 114 | $ret = array( |
115 | - "tm_sec" => (int)$out['S'], |
|
116 | - "tm_min" => (int)$out['M'], |
|
117 | - "tm_hour" => (int)$out['H'], |
|
118 | - "tm_mday" => (int)$out['d'], |
|
115 | + "tm_sec" => (int) $out['S'], |
|
116 | + "tm_min" => (int) $out['M'], |
|
117 | + "tm_hour" => (int) $out['H'], |
|
118 | + "tm_mday" => (int) $out['d'], |
|
119 | 119 | "tm_mon" => $out['m'] ? $out['m'] - 1 : 0, |
120 | 120 | "tm_year" => $out['Y'] > 1900 ? $out['Y'] - 1900 : 0, |
121 | 121 | ); |
@@ -150,5 +150,5 @@ discard block |
||
150 | 150 | * @return int |
151 | 151 | */ |
152 | 152 | function datePart($fullDate) { |
153 | - return (int)strtotime(date('Y-m-d', $fullDate)); |
|
153 | + return (int) strtotime(date('Y-m-d', $fullDate)); |
|
154 | 154 | } |
@@ -46,8 +46,7 @@ |
||
46 | 46 | 'ANNOUNCE' => classSupernova::$gc->bbCodeParser->expandBbCode($announce['strAnnounce'], intval($announce['authlevel'])), |
47 | 47 | 'DETAIL_URL' => $announce['detail_url'], |
48 | 48 | 'USER_NAME' => |
49 | - isset($users[$announce['user_id']]) && $users[$announce['user_id']] ? player_nick_render_to_html($users[$announce['user_id']], array('color' => true)) : |
|
50 | - js_safe_string($announce['user_name']), |
|
49 | + isset($users[$announce['user_id']]) && $users[$announce['user_id']] ? player_nick_render_to_html($users[$announce['user_id']], array('color' => true)) : js_safe_string($announce['user_name']), |
|
51 | 50 | 'NEW' => $announce['unix_time'] + $config->game_news_actual >= SN_TIME_NOW, |
52 | 51 | 'FUTURE' => $announce['unix_time'] > SN_TIME_NOW, |
53 | 52 | 'SURVEY_ID' => $announce['survey_id'], |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | $language_new = sys_get_param_str('langer', $user['lang']); |
13 | 13 | |
14 | - if($language_new != $user['lang']) { |
|
14 | + if ($language_new != $user['lang']) { |
|
15 | 15 | $lang->lng_switch($language_new); |
16 | 16 | } |
17 | 17 | |
@@ -20,35 +20,35 @@ discard block |
||
20 | 20 | |
21 | 21 | $FMT_DATE = preg_replace(array('/d/', '/m/', '/Y/'), array('DD', 'MM', 'YYYY'), FMT_DATE); |
22 | 22 | |
23 | - if(sys_get_param_str('mode') == 'change') { |
|
24 | - if($user['authlevel'] > 0) { |
|
23 | + if (sys_get_param_str('mode') == 'change') { |
|
24 | + if ($user['authlevel'] > 0) { |
|
25 | 25 | $planet_protection = sys_get_param_int('adm_pl_prot') ? $user['authlevel'] : 0; |
26 | 26 | DBStaticPlanet::db_planet_set_by_owner($user['id'], "`id_level` = '{$planet_protection}'"); |
27 | 27 | db_user_set_by_id($user['id'], "`admin_protection` = '{$planet_protection}'"); |
28 | 28 | $user['admin_protection'] = $planet_protection; |
29 | 29 | } |
30 | 30 | |
31 | - if(sys_get_param_int('vacation') && !$config->user_vacation_disable) { |
|
31 | + if (sys_get_param_int('vacation') && !$config->user_vacation_disable) { |
|
32 | 32 | sn_db_transaction_start(); |
33 | - if($user['authlevel'] < 3) { |
|
34 | - if($user['vacation_next'] > SN_TIME_NOW) { |
|
33 | + if ($user['authlevel'] < 3) { |
|
34 | + if ($user['vacation_next'] > SN_TIME_NOW) { |
|
35 | 35 | messageBox($lang['opt_vacation_err_timeout'], $lang['Error'], 'index.php?page=options', 5); |
36 | 36 | die(); |
37 | 37 | } |
38 | 38 | |
39 | - if(fleet_count_flying($user['id'])) { |
|
39 | + if (fleet_count_flying($user['id'])) { |
|
40 | 40 | messageBox($lang['opt_vacation_err_your_fleet'], $lang['Error'], 'index.php?page=options', 5); |
41 | 41 | die(); |
42 | 42 | } |
43 | 43 | |
44 | 44 | $que = que_get($user['id'], false); |
45 | - if(!empty($que)) { |
|
45 | + if (!empty($que)) { |
|
46 | 46 | messageBox($lang['opt_vacation_err_que'], $lang['Error'], 'index.php?page=options', 5); |
47 | 47 | die(); |
48 | 48 | } |
49 | 49 | |
50 | 50 | $query = classSupernova::db_get_record_list(LOC_PLANET, "`id_owner` = {$user['id']}"); |
51 | - foreach($query as $planet) { |
|
51 | + foreach ($query as $planet) { |
|
52 | 52 | DBStaticPlanet::db_planet_set_by_id($planet['id'], |
53 | 53 | "last_update = " . SN_TIME_NOW . ", energy_used = '0', energy_max = '0', |
54 | 54 | metal_perhour = '{$config->metal_basic_income}', crystal_perhour = '{$config->crystal_basic_income}', deuterium_perhour = '{$config->deuterium_basic_income}', |
@@ -63,9 +63,9 @@ discard block |
||
63 | 63 | sn_db_transaction_commit(); |
64 | 64 | } |
65 | 65 | |
66 | - foreach($user_option_list as $option_group_id => $option_group) { |
|
67 | - foreach($option_group as $option_name => $option_value) { |
|
68 | - if($user[$option_name] !== null) { |
|
66 | + foreach ($user_option_list as $option_group_id => $option_group) { |
|
67 | + foreach ($option_group as $option_name => $option_value) { |
|
68 | + if ($user[$option_name] !== null) { |
|
69 | 69 | $user[$option_name] = sys_get_param_str($option_name); |
70 | 70 | } else { |
71 | 71 | $user[$option_name] = $option_value; |
@@ -76,12 +76,12 @@ discard block |
||
76 | 76 | |
77 | 77 | |
78 | 78 | $player_options = sys_get_param('options'); |
79 | - if(!empty($player_options)) { |
|
80 | - if($player_options[PLAYER_OPTION_TUTORIAL_CURRENT] == classSupernova::$config->tutorial_first_item) { |
|
79 | + if (!empty($player_options)) { |
|
80 | + if ($player_options[PLAYER_OPTION_TUTORIAL_CURRENT] == classSupernova::$config->tutorial_first_item) { |
|
81 | 81 | $player_options[PLAYER_OPTION_TUTORIAL_FINISHED] = 0; |
82 | 82 | } |
83 | 83 | |
84 | - array_walk($player_options, function (&$value) { |
|
84 | + array_walk($player_options, function(&$value) { |
|
85 | 85 | // TODO - Когда будет больше параметров - сделать больше проверок |
86 | 86 | $value = intval($value); |
87 | 87 | }); |
@@ -90,15 +90,15 @@ discard block |
||
90 | 90 | |
91 | 91 | $username = substr(sys_get_param_str_unsafe('username'), 0, 32); |
92 | 92 | $username_safe = db_escape($username); |
93 | - if($username && $user['username'] != $username && $config->game_user_changename != SERVER_PLAYER_NAME_CHANGE_NONE && sys_get_param_int('username_confirm') && !strpbrk($username, LOGIN_REGISTER_CHARACTERS_PROHIBITED)) { |
|
93 | + if ($username && $user['username'] != $username && $config->game_user_changename != SERVER_PLAYER_NAME_CHANGE_NONE && sys_get_param_int('username_confirm') && !strpbrk($username, LOGIN_REGISTER_CHARACTERS_PROHIBITED)) { |
|
94 | 94 | // проверка на корректность |
95 | 95 | sn_db_transaction_start(); |
96 | 96 | $name_check = doquery("SELECT * FROM `{{player_name_history}}` WHERE `player_name` LIKE \"{$username_safe}\" LIMIT 1 FOR UPDATE;", true); |
97 | - if(!$name_check || $name_check['player_id'] == $user['id']) { |
|
97 | + if (!$name_check || $name_check['player_id'] == $user['id']) { |
|
98 | 98 | $user = db_user_by_id($user['id'], true); |
99 | - switch($config->game_user_changename) { |
|
99 | + switch ($config->game_user_changename) { |
|
100 | 100 | case SERVER_PLAYER_NAME_CHANGE_PAY: |
101 | - if(mrc_get_level($user, [], RES_DARK_MATTER) < $config->game_user_changename_cost) { |
|
101 | + if (mrc_get_level($user, [], RES_DARK_MATTER) < $config->game_user_changename_cost) { |
|
102 | 102 | $template_result['.']['result'][] = array( |
103 | 103 | 'STATUS' => ERR_ERROR, |
104 | 104 | 'MESSAGE' => $lang['opt_msg_name_change_err_no_dm'], |
@@ -128,18 +128,18 @@ discard block |
||
128 | 128 | sn_db_transaction_commit(); |
129 | 129 | } |
130 | 130 | |
131 | - if($new_password = sys_get_param('newpass1')) { |
|
131 | + if ($new_password = sys_get_param('newpass1')) { |
|
132 | 132 | try { |
133 | - if($new_password != sys_get_param('newpass2')) { |
|
133 | + if ($new_password != sys_get_param('newpass2')) { |
|
134 | 134 | throw new Exception($lang['opt_err_pass_unmatched'], ERR_WARNING); |
135 | 135 | } |
136 | 136 | |
137 | - if(!classSupernova::$auth->password_change(sys_get_param('db_password'), $new_password)) { |
|
137 | + if (!classSupernova::$auth->password_change(sys_get_param('db_password'), $new_password)) { |
|
138 | 138 | throw new Exception($lang['opt_err_pass_wrong'], ERR_WARNING); |
139 | 139 | } |
140 | 140 | |
141 | 141 | throw new Exception($lang['opt_msg_pass_changed'], ERR_NONE); |
142 | - } catch(Exception $e) { |
|
142 | + } catch (Exception $e) { |
|
143 | 143 | $template_result['.']['result'][] = array( |
144 | 144 | 'STATUS' => in_array($e->getCode(), array(ERR_NONE, ERR_WARNING, ERR_ERROR)) ? $e->getCode() : ERR_ERROR, |
145 | 145 | 'MESSAGE' => $e->getMessage() |
@@ -160,12 +160,12 @@ discard block |
||
160 | 160 | $user['gender'] = $user['gender'] == GENDER_UNKNOWN ? $gender : $user['gender']; |
161 | 161 | |
162 | 162 | try { |
163 | - if($user['birthday']) { |
|
163 | + if ($user['birthday']) { |
|
164 | 164 | throw new exception(); |
165 | 165 | } |
166 | 166 | |
167 | 167 | $user_birthday = sys_get_param_str_unsafe('user_birthday'); |
168 | - if(!$user_birthday || $user_birthday == $FMT_DATE) { |
|
168 | + if (!$user_birthday || $user_birthday == $FMT_DATE) { |
|
169 | 169 | throw new exception(); |
170 | 170 | } |
171 | 171 | |
@@ -175,16 +175,16 @@ discard block |
||
175 | 175 | $pos['Y'] = strpos(FMT_DATE, 'Y'); |
176 | 176 | asort($pos); |
177 | 177 | $i = 0; |
178 | - foreach($pos as &$position) { |
|
178 | + foreach ($pos as &$position) { |
|
179 | 179 | $position = ++$i; |
180 | 180 | } |
181 | 181 | |
182 | 182 | $regexp = "/" . preg_replace(array('/\\\\/', '/\//', '/\./', '/\-/', '/d/', '/m/', '/Y/'), array('\\\\\\', '\/', '\.', '\-', '(\d?\d)', '(\d?\d)', '(\d{4})'), FMT_DATE) . "/"; |
183 | - if(!preg_match($regexp, $user_birthday, $match)) { |
|
183 | + if (!preg_match($regexp, $user_birthday, $match)) { |
|
184 | 184 | throw new exception(); |
185 | 185 | } |
186 | 186 | |
187 | - if(!checkdate($match[$pos['m']], $match[$pos['d']], $match[$pos['Y']])) { |
|
187 | + if (!checkdate($match[$pos['m']], $match[$pos['d']], $match[$pos['Y']])) { |
|
188 | 188 | throw new exception(); |
189 | 189 | } |
190 | 190 | |
@@ -192,13 +192,13 @@ discard block |
||
192 | 192 | // EOF black magic! Now we have valid SQL date in $user['user_birthday'] - independent of date format |
193 | 193 | |
194 | 194 | $year = date('Y', SN_TIME_NOW); |
195 | - if(mktime(0, 0, 0, $match[$pos['m']], $match[$pos['d']], $year) > SN_TIME_NOW) { |
|
195 | + if (mktime(0, 0, 0, $match[$pos['m']], $match[$pos['d']], $year) > SN_TIME_NOW) { |
|
196 | 196 | $year--; |
197 | 197 | } |
198 | 198 | $user['user_birthday_celebrated'] = db_escape("{$year}-{$match[$pos['m']]}-{$match[$pos['d']]}"); |
199 | 199 | |
200 | 200 | $user_birthday = ", `user_birthday` = '{$user['user_birthday']}', `user_birthday_celebrated` = '{$user['user_birthday_celebrated']}'"; |
201 | - } catch(exception $e) { |
|
201 | + } catch (exception $e) { |
|
202 | 202 | $user_birthday = ''; |
203 | 203 | } |
204 | 204 | |
@@ -208,14 +208,14 @@ discard block |
||
208 | 208 | $template_result['.']['result'][] = $avatar_upload_result; |
209 | 209 | |
210 | 210 | $user_time_diff = playerTimeDiff::user_time_diff_get(); |
211 | - if(sys_get_param_int('PLAYER_OPTION_TIME_DIFF_FORCED')) { |
|
211 | + if (sys_get_param_int('PLAYER_OPTION_TIME_DIFF_FORCED')) { |
|
212 | 212 | playerTimeDiff::user_time_diff_set(array( |
213 | 213 | PLAYER_OPTION_TIME_DIFF => sys_get_param_int('PLAYER_OPTION_TIME_DIFF'), |
214 | 214 | PLAYER_OPTION_TIME_DIFF_UTC_OFFSET => 0, |
215 | 215 | PLAYER_OPTION_TIME_DIFF_FORCED => 1, |
216 | 216 | PLAYER_OPTION_TIME_DIFF_MEASURE_TIME => SN_TIME_SQL, |
217 | 217 | )); |
218 | - } elseif(sys_get_param_int('opt_time_diff_clear') || $user_time_diff[PLAYER_OPTION_TIME_DIFF_FORCED]) { |
|
218 | + } elseif (sys_get_param_int('opt_time_diff_clear') || $user_time_diff[PLAYER_OPTION_TIME_DIFF_FORCED]) { |
|
219 | 219 | playerTimeDiff::user_time_diff_set(array( |
220 | 220 | PLAYER_OPTION_TIME_DIFF => '', |
221 | 221 | PLAYER_OPTION_TIME_DIFF_UTC_OFFSET => 0, |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | 'STATUS' => ERR_NONE, |
236 | 236 | 'MESSAGE' => $lang['opt_msg_saved'] |
237 | 237 | ); |
238 | - } elseif(sys_get_param_str('result') == 'ok') { |
|
238 | + } elseif (sys_get_param_str('result') == 'ok') { |
|
239 | 239 | $template_result['.']['result'][] = array( |
240 | 240 | 'STATUS' => ERR_NONE, |
241 | 241 | 'MESSAGE' => $lang['opt_msg_saved'] |
@@ -258,8 +258,8 @@ discard block |
||
258 | 258 | $template = gettemplate('options', $template); |
259 | 259 | |
260 | 260 | $dir = dir(SN_ROOT_PHYSICAL . 'skins'); |
261 | - while(($entry = $dir->read()) !== false) { |
|
262 | - if(is_dir("skins/{$entry}") && $entry[0] != '.') { |
|
261 | + while (($entry = $dir->read()) !== false) { |
|
262 | + if (is_dir("skins/{$entry}") && $entry[0] != '.') { |
|
263 | 263 | $template_result['.']['skin_list'][] = array( |
264 | 264 | 'VALUE' => $entry, |
265 | 265 | 'NAME' => $entry, |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | $dir->close(); |
271 | 271 | |
272 | - foreach($lang['opt_planet_sort_options'] as $key => &$value) { |
|
272 | + foreach ($lang['opt_planet_sort_options'] as $key => &$value) { |
|
273 | 273 | $template_result['.']['planet_sort_options'][] = array( |
274 | 274 | 'VALUE' => $key, |
275 | 275 | 'NAME' => $value, |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | ); |
278 | 278 | } |
279 | 279 | |
280 | - foreach($lang['sys_gender_list'] as $key => $value) { |
|
280 | + foreach ($lang['sys_gender_list'] as $key => $value) { |
|
281 | 281 | $template_result['.']['gender_list'][] = array( |
282 | 282 | 'VALUE' => $key, |
283 | 283 | 'NAME' => $value, |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | } |
287 | 287 | |
288 | 288 | $lang_list = lng_get_list(); |
289 | - foreach($lang_list as $lang_id => $lang_data) { |
|
289 | + foreach ($lang_list as $lang_id => $lang_data) { |
|
290 | 290 | $template_result['.']['languages'][] = array( |
291 | 291 | 'VALUE' => $lang_id, |
292 | 292 | 'NAME' => $lang_data['LANG_NAME_NATIVE'], |
@@ -295,8 +295,8 @@ discard block |
||
295 | 295 | } |
296 | 296 | |
297 | 297 | |
298 | - if(isset($lang['menu_customize_show_hide_button_state'])) { |
|
299 | - foreach($lang['menu_customize_show_hide_button_state'] as $key => $value) { |
|
298 | + if (isset($lang['menu_customize_show_hide_button_state'])) { |
|
299 | + foreach ($lang['menu_customize_show_hide_button_state'] as $key => $value) { |
|
300 | 300 | $template->assign_block_vars('menu_customize_show_hide_button_state', array( |
301 | 301 | 'ID' => $key, |
302 | 302 | 'NAME' => $value, |
@@ -407,10 +407,10 @@ discard block |
||
407 | 407 | 'PAGE_HEADER' => $lang['opt_header'], |
408 | 408 | )); |
409 | 409 | |
410 | - foreach($user_option_list as $option_group_id => $option_group) { |
|
411 | - if($option_group_id == OPT_MESSAGE) { |
|
412 | - foreach($sn_message_class_list as $message_class_id => $message_class_data) { |
|
413 | - if($message_class_data['switchable'] || ($message_class_data['email'] && $config->game_email_pm)) { |
|
410 | + foreach ($user_option_list as $option_group_id => $option_group) { |
|
411 | + if ($option_group_id == OPT_MESSAGE) { |
|
412 | + foreach ($sn_message_class_list as $message_class_id => $message_class_data) { |
|
413 | + if ($message_class_data['switchable'] || ($message_class_data['email'] && $config->game_email_pm)) { |
|
414 | 414 | $option_name = $message_class_data['name']; |
415 | 415 | |
416 | 416 | $template->assign_block_vars("options_{$option_group_id}", array( |
@@ -422,8 +422,8 @@ discard block |
||
422 | 422 | } |
423 | 423 | } |
424 | 424 | } else { |
425 | - foreach($option_group as $option_name => $option_value) { |
|
426 | - if(array_key_exists($option_name, $user_option_types)) { |
|
425 | + foreach ($option_group as $option_name => $option_value) { |
|
426 | + if (array_key_exists($option_name, $user_option_types)) { |
|
427 | 427 | $option_type = $user_option_types[$option_name]; |
428 | 428 | } else { |
429 | 429 | $option_type = 'switch'; |
@@ -48,20 +48,20 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | protected function initValues() { |
51 | - $this[UNIT_SERVER_SPEED_BUILDING] = function (ValueStorage $vs) { |
|
51 | + $this[UNIT_SERVER_SPEED_BUILDING] = function(ValueStorage $vs) { |
|
52 | 52 | return new ValueBonused(UNIT_SERVER_SPEED_BUILDING, floatval($vs->getGlobalContainer()->config->game_speed)); |
53 | 53 | }; |
54 | - $this[UNIT_SERVER_SPEED_MINING] = function (ValueStorage $vs) { |
|
54 | + $this[UNIT_SERVER_SPEED_MINING] = function(ValueStorage $vs) { |
|
55 | 55 | return new ValueBonused(UNIT_SERVER_SPEED_MINING, floatval($vs->getGlobalContainer()->config->resource_multiplier)); |
56 | 56 | }; |
57 | - $this[UNIT_SERVER_SPEED_FLEET] = function (ValueStorage $vs) { |
|
57 | + $this[UNIT_SERVER_SPEED_FLEET] = function(ValueStorage $vs) { |
|
58 | 58 | return new ValueBonused(UNIT_SERVER_SPEED_FLEET, floatval($vs->getGlobalContainer()->config->fleet_speed)); |
59 | 59 | }; |
60 | - $this[UNIT_SERVER_SPEED_EXPEDITION] = function (ValueStorage $vs) { |
|
60 | + $this[UNIT_SERVER_SPEED_EXPEDITION] = function(ValueStorage $vs) { |
|
61 | 61 | return new ValueBonused(UNIT_SERVER_SPEED_EXPEDITION, floatval(1)); |
62 | 62 | }; |
63 | 63 | |
64 | - $this[UNIT_SERVER_FLEET_NOOB_POINTS] = function (ValueStorage $vs) { |
|
64 | + $this[UNIT_SERVER_FLEET_NOOB_POINTS] = function(ValueStorage $vs) { |
|
65 | 65 | $config = $vs->getGlobalContainer()->config; |
66 | 66 | |
67 | 67 | return new ValueBonused( |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | floatval($config->game_noob_points * $vs->getBase(UNIT_SERVER_SPEED_MINING)) |
70 | 70 | ); |
71 | 71 | }; |
72 | - $this[UNIT_SERVER_FLEET_NOOB_FACTOR] = function (ValueStorage $vs) { |
|
72 | + $this[UNIT_SERVER_FLEET_NOOB_FACTOR] = function(ValueStorage $vs) { |
|
73 | 73 | return new ValueBonused(UNIT_SERVER_FLEET_NOOB_FACTOR, floatval($vs->getGlobalContainer()->config->game_noob_factor)); |
74 | 74 | }; |
75 | 75 | |
76 | - $this[UNIT_SERVER_PAYMENT_MM_PER_CURRENCY] = function (ValueStorage $vs) { |
|
76 | + $this[UNIT_SERVER_PAYMENT_MM_PER_CURRENCY] = function(ValueStorage $vs) { |
|
77 | 77 | return new ValueBonused(UNIT_SERVER_PAYMENT_MM_PER_CURRENCY, floatval($vs->getGlobalContainer()->config->payment_currency_exchange_mm_)); |
78 | 78 | }; |
79 | 79 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | * @return int |
106 | 106 | */ |
107 | 107 | public function getMaxLevel() { |
108 | - $snId = $this->getSnId(); |
|
108 | + $snId = $this->getSnId(); |
|
109 | 109 | return !empty($snId) ? get_unit_param($snId, P_MAX_STACK) : 0; |
110 | 110 | } |
111 | 111 |
@@ -136,7 +136,7 @@ |
||
136 | 136 | $dbq->setWhereArray(static::translateNames($propertyFilter, static::PROPERTIES_TO_FIELDS)); |
137 | 137 | } |
138 | 138 | |
139 | - if(static::$_forUpdate == DbQuery::DB_FOR_UPDATE) { |
|
139 | + if (static::$_forUpdate == DbQuery::DB_FOR_UPDATE) { |
|
140 | 140 | $dbq->setForUpdate(); |
141 | 141 | static::$_forUpdate = DbQuery::DB_SHARED; |
142 | 142 | } |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | - * Load template source from file |
|
59 | - * @access private |
|
60 | - */ |
|
58 | + * Load template source from file |
|
59 | + * @access private |
|
60 | + */ |
|
61 | 61 | function _tpl_load_file($handle, $store_in_db = false) |
62 | 62 | { |
63 | 63 | // Try and open template for read |
@@ -100,10 +100,10 @@ discard block |
||
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
103 | - * Remove any PHP tags that do not belong, these regular expressions are derived from |
|
104 | - * the ones that exist in zend_language_scanner.l |
|
105 | - * @access private |
|
106 | - */ |
|
103 | + * Remove any PHP tags that do not belong, these regular expressions are derived from |
|
104 | + * the ones that exist in zend_language_scanner.l |
|
105 | + * @access private |
|
106 | + */ |
|
107 | 107 | function remove_php_tags(&$code) |
108 | 108 | { |
109 | 109 | // This matches the information gathered from the internal PHP lexer |
@@ -117,9 +117,9 @@ discard block |
||
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
120 | - * The all seeing all doing compile method. Parts are inspired by or directly from Smarty |
|
121 | - * @access private |
|
122 | - */ |
|
120 | + * The all seeing all doing compile method. Parts are inspired by or directly from Smarty |
|
121 | + * @access private |
|
122 | + */ |
|
123 | 123 | function compile($code, $no_echo = false, $echo_var = '') |
124 | 124 | { |
125 | 125 | global $config; |
@@ -290,9 +290,9 @@ discard block |
||
290 | 290 | } |
291 | 291 | |
292 | 292 | /** |
293 | - * Compile variables |
|
294 | - * @access private |
|
295 | - */ |
|
293 | + * Compile variables |
|
294 | + * @access private |
|
295 | + */ |
|
296 | 296 | function compile_var_tags(&$text_blocks) |
297 | 297 | { |
298 | 298 | // including $lang variable |
@@ -365,9 +365,9 @@ discard block |
||
365 | 365 | } |
366 | 366 | |
367 | 367 | /** |
368 | - * Compile blocks |
|
369 | - * @access private |
|
370 | - */ |
|
368 | + * Compile blocks |
|
369 | + * @access private |
|
370 | + */ |
|
371 | 371 | function compile_tag_block($tag_args) |
372 | 372 | { |
373 | 373 | $no_nesting = false; |
@@ -453,14 +453,14 @@ discard block |
||
453 | 453 | $tag_template_php .= 'if ($_' . $tag_args . '_count) {'; |
454 | 454 | |
455 | 455 | /** |
456 | - * The following uses foreach for iteration instead of a for loop, foreach is faster but requires PHP to make a copy of the contents of the array which uses more memory |
|
457 | - * <code> |
|
458 | - * if (!$offset) |
|
459 | - * { |
|
460 | - * $tag_template_php .= 'foreach (' . $varref . ' as $_' . $tag_args . '_i => $_' . $tag_args . '_val){'; |
|
461 | - * } |
|
462 | - * </code> |
|
463 | - */ |
|
456 | + * The following uses foreach for iteration instead of a for loop, foreach is faster but requires PHP to make a copy of the contents of the array which uses more memory |
|
457 | + * <code> |
|
458 | + * if (!$offset) |
|
459 | + * { |
|
460 | + * $tag_template_php .= 'foreach (' . $varref . ' as $_' . $tag_args . '_i => $_' . $tag_args . '_val){'; |
|
461 | + * } |
|
462 | + * </code> |
|
463 | + */ |
|
464 | 464 | |
465 | 465 | $tag_template_php .= 'for ($_' . $tag_args . '_i = ' . $loop_start . '; $_' . $tag_args . '_i < ' . $loop_end . '; ++$_' . $tag_args . '_i){'; |
466 | 466 | // $tag_template_php .= '$this->_block_counter["'. $tag_args . '"] = $_' . $tag_args . '_i;'; |
@@ -471,10 +471,10 @@ discard block |
||
471 | 471 | } |
472 | 472 | |
473 | 473 | /** |
474 | - * Compile IF tags - much of this is from Smarty with |
|
475 | - * some adaptions for our block level methods |
|
476 | - * @access private |
|
477 | - */ |
|
474 | + * Compile IF tags - much of this is from Smarty with |
|
475 | + * some adaptions for our block level methods |
|
476 | + * @access private |
|
477 | + */ |
|
478 | 478 | function compile_tag_if($tag_args, $elseif) |
479 | 479 | { |
480 | 480 | // Tokenize args for 'if' tag. |
@@ -629,9 +629,9 @@ discard block |
||
629 | 629 | } |
630 | 630 | |
631 | 631 | /** |
632 | - * Compile DEFINE tags |
|
633 | - * @access private |
|
634 | - */ |
|
632 | + * Compile DEFINE tags |
|
633 | + * @access private |
|
634 | + */ |
|
635 | 635 | function compile_tag_define($tag_args, $op) |
636 | 636 | { |
637 | 637 | preg_match('#^((?:[a-z0-9\-_]+\.)+)?\$(?=[A-Z])([A-Z0-9_\-]*)(?: = (\'?)([^\']*)(\'?))?$#', $tag_args, $match); |
@@ -682,9 +682,9 @@ discard block |
||
682 | 682 | } |
683 | 683 | |
684 | 684 | /** |
685 | - * Compile INCLUDE tag |
|
686 | - * @access private |
|
687 | - */ |
|
685 | + * Compile INCLUDE tag |
|
686 | + * @access private |
|
687 | + */ |
|
688 | 688 | function compile_tag_include($tag_args) |
689 | 689 | { |
690 | 690 | // Process dynamic includes |
@@ -697,19 +697,19 @@ discard block |
||
697 | 697 | } |
698 | 698 | |
699 | 699 | /** |
700 | - * Compile INCLUDE_PHP tag |
|
701 | - * @access private |
|
702 | - */ |
|
700 | + * Compile INCLUDE_PHP tag |
|
701 | + * @access private |
|
702 | + */ |
|
703 | 703 | function compile_tag_include_php($tag_args) |
704 | 704 | { |
705 | 705 | return "\$this->_php_include('$tag_args');"; |
706 | 706 | } |
707 | 707 | |
708 | 708 | /** |
709 | - * parse expression |
|
710 | - * This is from Smarty |
|
711 | - * @access private |
|
712 | - */ |
|
709 | + * parse expression |
|
710 | + * This is from Smarty |
|
711 | + * @access private |
|
712 | + */ |
|
713 | 713 | function _parse_is_expr($is_arg, $tokens) |
714 | 714 | { |
715 | 715 | $expr_end = 0; |
@@ -802,14 +802,14 @@ discard block |
||
802 | 802 | } |
803 | 803 | |
804 | 804 | /** |
805 | - * Generates a reference to the array of data values for the given |
|
806 | - * (possibly nested) block namespace. This is a string of the form: |
|
807 | - * $this->_tpldata['parent'][$_parent_i]['$child1'][$_child1_i]['$child2'][$_child2_i]...['$childN'] |
|
808 | - * |
|
809 | - * If $include_last_iterator is true, then [$_childN_i] will be appended to the form shown above. |
|
810 | - * NOTE: does not expect a trailing "." on the blockname. |
|
811 | - * @access private |
|
812 | - */ |
|
805 | + * Generates a reference to the array of data values for the given |
|
806 | + * (possibly nested) block namespace. This is a string of the form: |
|
807 | + * $this->_tpldata['parent'][$_parent_i]['$child1'][$_child1_i]['$child2'][$_child2_i]...['$childN'] |
|
808 | + * |
|
809 | + * If $include_last_iterator is true, then [$_childN_i] will be appended to the form shown above. |
|
810 | + * NOTE: does not expect a trailing "." on the blockname. |
|
811 | + * @access private |
|
812 | + */ |
|
813 | 813 | function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) |
814 | 814 | { |
815 | 815 | // Get an array of the blocks involved. |
@@ -845,9 +845,9 @@ discard block |
||
845 | 845 | } |
846 | 846 | |
847 | 847 | /** |
848 | - * Write compiled file to cache directory |
|
849 | - * @access private |
|
850 | - */ |
|
848 | + * Write compiled file to cache directory |
|
849 | + * @access private |
|
850 | + */ |
|
851 | 851 | function compile_write($handle, $data) |
852 | 852 | { |
853 | 853 | $filename = $this->template->cachepath . str_replace('/', '.', $this->template->filename[$handle]) . DOT_PHP_EX; |
@@ -870,9 +870,9 @@ discard block |
||
870 | 870 | |
871 | 871 | // Gorlum's minifier BOF |
872 | 872 | /** |
873 | - * Minifies template w/i PHP code by removing extra spaces |
|
874 | - * @access private |
|
875 | - */ |
|
873 | + * Minifies template w/i PHP code by removing extra spaces |
|
874 | + * @access private |
|
875 | + */ |
|
876 | 876 | function minify($html) |
877 | 877 | { |
878 | 878 | global $config; |
@@ -143,9 +143,9 @@ discard block |
||
143 | 143 | |
144 | 144 | preg_match_all('#<!-- INCLUDE (\{\$?[A-Z0-9\-_]+\}|[a-zA-Z0-9\_\-\+\./]+) -->#', $code, $matches); |
145 | 145 | $include_blocks = $matches[1]; |
146 | - if($include_blocks) |
|
146 | + if ($include_blocks) |
|
147 | 147 | { |
148 | - foreach($include_blocks as &$included_file) |
|
148 | + foreach ($include_blocks as &$included_file) |
|
149 | 149 | { |
150 | 150 | $included_file .= '.tpl.html'; |
151 | 151 | } |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | $varname = $var_val[3]; |
311 | 311 | $new = $this->generate_block_varref($namespace, $varname, $var_val[2]); |
312 | 312 | |
313 | - if(!empty($var_val[4])) { |
|
313 | + if (!empty($var_val[4])) { |
|
314 | 314 | $new = \Ptl\PtlVariableDecorator::decorate($var_val[0], $new, $this->template); |
315 | 315 | } |
316 | 316 | |
@@ -464,8 +464,8 @@ discard block |
||
464 | 464 | |
465 | 465 | $tag_template_php .= 'for ($_' . $tag_args . '_i = ' . $loop_start . '; $_' . $tag_args . '_i < ' . $loop_end . '; ++$_' . $tag_args . '_i){'; |
466 | 466 | // $tag_template_php .= '$this->_block_counter["'. $tag_args . '"] = $_' . $tag_args . '_i;'; |
467 | - $tag_template_php .= '$_'. $tag_args . '_val = &' . $varref . '[$_'. $tag_args. '_i];'; |
|
468 | - $tag_template_php .= '$this->_block_value["'. $tag_args . '"] = &' . $varref . '[$_'. $tag_args. '_i];'; |
|
467 | + $tag_template_php .= '$_' . $tag_args . '_val = &' . $varref . '[$_' . $tag_args . '_i];'; |
|
468 | + $tag_template_php .= '$this->_block_value["' . $tag_args . '"] = &' . $varref . '[$_' . $tag_args . '_i];'; |
|
469 | 469 | |
470 | 470 | return $tag_template_php; |
471 | 471 | } |
@@ -569,10 +569,10 @@ discard block |
||
569 | 569 | break; |
570 | 570 | |
571 | 571 | case 'is': |
572 | - $is_arg_start = ($tokens[$i-1] == ')') ? array_pop($is_arg_stack) : $i-1; |
|
572 | + $is_arg_start = ($tokens[$i - 1] == ')') ? array_pop($is_arg_stack) : $i - 1; |
|
573 | 573 | $is_arg = implode(' ', array_slice($tokens, $is_arg_start, $i - $is_arg_start)); |
574 | 574 | |
575 | - $new_tokens = $this->_parse_is_expr($is_arg, array_slice($tokens, $i+1)); |
|
575 | + $new_tokens = $this->_parse_is_expr($is_arg, array_slice($tokens, $i + 1)); |
|
576 | 576 | |
577 | 577 | array_splice($tokens, $is_arg_start, sizeof($tokens), $new_tokens); |
578 | 578 | |
@@ -836,11 +836,11 @@ discard block |
||
836 | 836 | } |
837 | 837 | else if ($include_last_iterator) |
838 | 838 | { |
839 | - return '$_'. $blocks[$blockcount] . '_val'; |
|
839 | + return '$_' . $blocks[$blockcount] . '_val'; |
|
840 | 840 | } |
841 | 841 | else |
842 | 842 | { |
843 | - return '$_'. $blocks[$blockcount - 1] . '_val[\''. $blocks[$blockcount]. '\']'; |
|
843 | + return '$_' . $blocks[$blockcount - 1] . '_val[\'' . $blocks[$blockcount] . '\']'; |
|
844 | 844 | } |
845 | 845 | } |
846 | 846 | |
@@ -857,7 +857,7 @@ discard block |
||
857 | 857 | if ($fp = @fopen($filename, 'wb')) |
858 | 858 | { |
859 | 859 | @flock($fp, LOCK_EX); |
860 | - @fwrite ($fp, $data); |
|
860 | + @fwrite($fp, $data); |
|
861 | 861 | @flock($fp, LOCK_UN); |
862 | 862 | @fclose($fp); |
863 | 863 | |
@@ -877,7 +877,7 @@ discard block |
||
877 | 877 | { |
878 | 878 | global $config; |
879 | 879 | |
880 | - if(!$config->tpl_minifier) |
|
880 | + if (!$config->tpl_minifier) |
|
881 | 881 | { |
882 | 882 | return $html; |
883 | 883 | } |
@@ -889,14 +889,14 @@ discard block |
||
889 | 889 | //$html = preg_replace('/[\r\n\t]+/', ' ', $html); |
890 | 890 | $html = preg_replace('/>[\s]*</', '><', $html); // Strip spacechars between tags |
891 | 891 | $html = preg_replace('/[\s]+/', ' ', $html); // Replace several spacechars with one space |
892 | - if(!empty($pre[0])) |
|
892 | + if (!empty($pre[0])) |
|
893 | 893 | { |
894 | - foreach($pre[0] as $tag) |
|
894 | + foreach ($pre[0] as $tag) |
|
895 | 895 | { |
896 | 896 | $tag = preg_replace('/^\ *\/\/[^\<]*?$/m', ' ', $tag); // Strips comments - except those that contains HTML comment inside |
897 | 897 | $tag = preg_replace('/[\ \t]{2,}/', ' ', $tag); // Replace several spaces by one |
898 | 898 | $tag = preg_replace('/\s{2,}/', "\r\n", $tag); // Replace several linefeeds by one |
899 | - $html = preg_replace('/#pre#/', $tag, $html,1); |
|
899 | + $html = preg_replace('/#pre#/', $tag, $html, 1); |
|
900 | 900 | } |
901 | 901 | } |
902 | 902 |
@@ -37,8 +37,7 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @package phpBB3 |
39 | 39 | */ |
40 | -class template_compile |
|
41 | -{ |
|
40 | +class template_compile { |
|
42 | 41 | var $template; |
43 | 42 | |
44 | 43 | // Various storage arrays |
@@ -58,8 +57,7 @@ discard block |
||
58 | 57 | * Load template source from file |
59 | 58 | * @access private |
60 | 59 | */ |
61 | - function _tpl_load_file($handle, $store_in_db = false) |
|
62 | - { |
|
60 | + function _tpl_load_file($handle, $store_in_db = false) { |
|
63 | 61 | // Try and open template for read |
64 | 62 | if (!file_exists($this->template->files[$handle])) |
65 | 63 | { |
@@ -67,8 +65,7 @@ discard block |
||
67 | 65 | { |
68 | 66 | return; |
69 | 67 | trigger_error("template->_tpl_load_file(): File {$this->template->files[$handle]} does not exist or is empty", E_USER_ERROR); |
70 | - } |
|
71 | - else |
|
68 | + } else |
|
72 | 69 | { |
73 | 70 | $this->template->files[$handle] = $this->template->files_inherit[$handle]; |
74 | 71 | } |
@@ -104,8 +101,7 @@ discard block |
||
104 | 101 | * the ones that exist in zend_language_scanner.l |
105 | 102 | * @access private |
106 | 103 | */ |
107 | - function remove_php_tags(&$code) |
|
108 | - { |
|
104 | + function remove_php_tags(&$code) { |
|
109 | 105 | // This matches the information gathered from the internal PHP lexer |
110 | 106 | $match = array( |
111 | 107 | '#<([\?%])=?.*?\1>#s', |
@@ -120,8 +116,7 @@ discard block |
||
120 | 116 | * The all seeing all doing compile method. Parts are inspired by or directly from Smarty |
121 | 117 | * @access private |
122 | 118 | */ |
123 | - function compile($code, $no_echo = false, $echo_var = '') |
|
124 | - { |
|
119 | + function compile($code, $no_echo = false, $echo_var = '') { |
|
125 | 120 | global $config; |
126 | 121 | |
127 | 122 | if ($echo_var) |
@@ -226,15 +221,13 @@ discard block |
||
226 | 221 | $var = substr($temp, 2, -1); |
227 | 222 | //$file = $this->template->_tpldata['DEFINE']['.'][$var]; |
228 | 223 | $temp = "\$this->_tpldata['DEFINE']['.']['$var']"; |
229 | - } |
|
230 | - else |
|
224 | + } else |
|
231 | 225 | { |
232 | 226 | $var = substr($temp, 1, -1); |
233 | 227 | //$file = $this->template->_rootref[$var]; |
234 | 228 | $temp = "\$this->_rootref['$var']"; |
235 | 229 | } |
236 | - } |
|
237 | - else |
|
230 | + } else |
|
238 | 231 | { |
239 | 232 | $file = $temp; |
240 | 233 | } |
@@ -293,8 +286,7 @@ discard block |
||
293 | 286 | * Compile variables |
294 | 287 | * @access private |
295 | 288 | */ |
296 | - function compile_var_tags(&$text_blocks) |
|
297 | - { |
|
289 | + function compile_var_tags(&$text_blocks) { |
|
298 | 290 | // including $lang variable |
299 | 291 | global $lang, $config; |
300 | 292 | |
@@ -368,8 +360,7 @@ discard block |
||
368 | 360 | * Compile blocks |
369 | 361 | * @access private |
370 | 362 | */ |
371 | - function compile_tag_block($tag_args) |
|
372 | - { |
|
363 | + function compile_tag_block($tag_args) { |
|
373 | 364 | $no_nesting = false; |
374 | 365 | |
375 | 366 | // Is the designer wanting to call another loop in a loop? |
@@ -392,8 +383,7 @@ discard block |
||
392 | 383 | if ($match[2] < 0) |
393 | 384 | { |
394 | 385 | $loop_start = '($_' . $tag_args . '_count ' . $match[2] . ' < 0 ? 0 : $_' . $tag_args . '_count ' . $match[2] . ')'; |
395 | - } |
|
396 | - else |
|
386 | + } else |
|
397 | 387 | { |
398 | 388 | $loop_start = '($_' . $tag_args . '_count < ' . $match[2] . ' ? $_' . $tag_args . '_count : ' . $match[2] . ')'; |
399 | 389 | } |
@@ -401,17 +391,14 @@ discard block |
||
401 | 391 | if (strlen($match[3]) < 1 || $match[3] == -1) |
402 | 392 | { |
403 | 393 | $loop_end = '$_' . $tag_args . '_count'; |
404 | - } |
|
405 | - else if ($match[3] >= 0) |
|
394 | + } else if ($match[3] >= 0) |
|
406 | 395 | { |
407 | 396 | $loop_end = '(' . ($match[3] + 1) . ' > $_' . $tag_args . '_count ? $_' . $tag_args . '_count : ' . ($match[3] + 1) . ')'; |
408 | - } |
|
409 | - else //if ($match[3] < -1) |
|
397 | + } else //if ($match[3] < -1) |
|
410 | 398 | { |
411 | 399 | $loop_end = '$_' . $tag_args . '_count' . ($match[3] + 1); |
412 | 400 | } |
413 | - } |
|
414 | - else |
|
401 | + } else |
|
415 | 402 | { |
416 | 403 | $loop_start = 0; |
417 | 404 | $loop_end = '$_' . $tag_args . '_count'; |
@@ -424,8 +411,7 @@ discard block |
||
424 | 411 | { |
425 | 412 | // We need to implode $no_nesting times from the end... |
426 | 413 | $block = array_slice($this->block_names, -$no_nesting); |
427 | - } |
|
428 | - else |
|
414 | + } else |
|
429 | 415 | { |
430 | 416 | $block = $this->block_names; |
431 | 417 | } |
@@ -435,8 +421,7 @@ discard block |
||
435 | 421 | // Block is not nested. |
436 | 422 | $tag_template_php = '$_' . $tag_args . "_count = (isset(\$this->_tpldata['$tag_args'])) ? sizeof(\$this->_tpldata['$tag_args']) : 0;"; |
437 | 423 | $varref = "\$this->_tpldata['$tag_args']"; |
438 | - } |
|
439 | - else |
|
424 | + } else |
|
440 | 425 | { |
441 | 426 | // This block is nested. |
442 | 427 | // Generate a namespace string for this block. |
@@ -475,8 +460,7 @@ discard block |
||
475 | 460 | * some adaptions for our block level methods |
476 | 461 | * @access private |
477 | 462 | */ |
478 | - function compile_tag_if($tag_args, $elseif) |
|
479 | - { |
|
463 | + function compile_tag_if($tag_args, $elseif) { |
|
480 | 464 | // Tokenize args for 'if' tag. |
481 | 465 | preg_match_all('/(?: |
482 | 466 | "[^"\\\\]*(?:\\\\.[^"\\\\]*)*" | |
@@ -584,8 +568,7 @@ discard block |
||
584 | 568 | if (preg_match('#^((?:[a-z0-9\-_]+\.)+)?(\$)?(?=[A-Za-z])([A-Za-z0-9\-_]+)#s', $token, $varrefs)) |
585 | 569 | { |
586 | 570 | $token = (!empty($varrefs[1])) ? $this->generate_block_data_ref(substr($varrefs[1], 0, -1), true, $varrefs[2]) . '[\'' . $varrefs[3] . '\']' : (($varrefs[2]) ? '$this->_tpldata[\'DEFINE\'][\'.\'][\'' . $varrefs[3] . '\']' : '$this->_rootref[\'' . $varrefs[3] . '\']'); |
587 | - } |
|
588 | - else if (preg_match('#^\.((?:[a-z0-9\-_]+\.?)+)$#s', $token, $varrefs)) |
|
571 | + } else if (preg_match('#^\.((?:[a-z0-9\-_]+\.?)+)$#s', $token, $varrefs)) |
|
589 | 572 | { |
590 | 573 | // Allow checking if loops are set with .loopname |
591 | 574 | // It is also possible to check the loop count by doing <!-- IF .loopname > 1 --> for example |
@@ -601,8 +584,7 @@ discard block |
||
601 | 584 | |
602 | 585 | // Add the block reference for the last child. |
603 | 586 | $varref .= "['" . $block . "']"; |
604 | - } |
|
605 | - else |
|
587 | + } else |
|
606 | 588 | { |
607 | 589 | $varref = '$this->_tpldata'; |
608 | 590 | |
@@ -610,8 +592,7 @@ discard block |
||
610 | 592 | $varref .= "['" . $blocks[0] . "']"; |
611 | 593 | } |
612 | 594 | $token = "sizeof($varref)"; |
613 | - } |
|
614 | - else if (!empty($token)) |
|
595 | + } else if (!empty($token)) |
|
615 | 596 | { |
616 | 597 | $token = '(' . $token . ')'; |
617 | 598 | } |
@@ -632,8 +613,7 @@ discard block |
||
632 | 613 | * Compile DEFINE tags |
633 | 614 | * @access private |
634 | 615 | */ |
635 | - function compile_tag_define($tag_args, $op) |
|
636 | - { |
|
616 | + function compile_tag_define($tag_args, $op) { |
|
637 | 617 | preg_match('#^((?:[a-z0-9\-_]+\.)+)?\$(?=[A-Z])([A-Z0-9_\-]*)(?: = (\'?)([^\']*)(\'?))?$#', $tag_args, $match); |
638 | 618 | |
639 | 619 | if (empty($match[2]) || (!isset($match[4]) && $op)) |
@@ -656,8 +636,7 @@ discard block |
||
656 | 636 | |
657 | 637 | // Now replace the php code |
658 | 638 | $match[4] = "'" . str_replace(array('<?php echo ', '; ?>'), array("' . ", " . '"), $match[4]) . "'"; |
659 | - } |
|
660 | - else |
|
639 | + } else |
|
661 | 640 | { |
662 | 641 | preg_match('#true|false|\.#i', $match[4], $type); |
663 | 642 | |
@@ -685,8 +664,7 @@ discard block |
||
685 | 664 | * Compile INCLUDE tag |
686 | 665 | * @access private |
687 | 666 | */ |
688 | - function compile_tag_include($tag_args) |
|
689 | - { |
|
667 | + function compile_tag_include($tag_args) { |
|
690 | 668 | // Process dynamic includes |
691 | 669 | if ($tag_args[0] == '$') |
692 | 670 | { |
@@ -700,8 +678,7 @@ discard block |
||
700 | 678 | * Compile INCLUDE_PHP tag |
701 | 679 | * @access private |
702 | 680 | */ |
703 | - function compile_tag_include_php($tag_args) |
|
704 | - { |
|
681 | + function compile_tag_include_php($tag_args) { |
|
705 | 682 | return "\$this->_php_include('$tag_args');"; |
706 | 683 | } |
707 | 684 | |
@@ -710,8 +687,7 @@ discard block |
||
710 | 687 | * This is from Smarty |
711 | 688 | * @access private |
712 | 689 | */ |
713 | - function _parse_is_expr($is_arg, $tokens) |
|
714 | - { |
|
690 | + function _parse_is_expr($is_arg, $tokens) { |
|
715 | 691 | $expr_end = 0; |
716 | 692 | $negate_expr = false; |
717 | 693 | |
@@ -719,8 +695,7 @@ discard block |
||
719 | 695 | { |
720 | 696 | $negate_expr = true; |
721 | 697 | $expr_type = array_shift($tokens); |
722 | - } |
|
723 | - else |
|
698 | + } else |
|
724 | 699 | { |
725 | 700 | $expr_type = $first_token; |
726 | 701 | } |
@@ -733,8 +708,7 @@ discard block |
||
733 | 708 | $expr_end++; |
734 | 709 | $expr_arg = $tokens[$expr_end++]; |
735 | 710 | $expr = "!(($is_arg / $expr_arg) % $expr_arg)"; |
736 | - } |
|
737 | - else |
|
711 | + } else |
|
738 | 712 | { |
739 | 713 | $expr = "!($is_arg & 1)"; |
740 | 714 | } |
@@ -746,8 +720,7 @@ discard block |
||
746 | 720 | $expr_end++; |
747 | 721 | $expr_arg = $tokens[$expr_end++]; |
748 | 722 | $expr = "(($is_arg / $expr_arg) % $expr_arg)"; |
749 | - } |
|
750 | - else |
|
723 | + } else |
|
751 | 724 | { |
752 | 725 | $expr = "($is_arg & 1)"; |
753 | 726 | } |
@@ -786,8 +759,7 @@ discard block |
||
786 | 759 | * |
787 | 760 | * @return string |
788 | 761 | */ |
789 | - private function generate_block_varref($namespace, $varname, $defop = false) |
|
790 | - { |
|
762 | + private function generate_block_varref($namespace, $varname, $defop = false) { |
|
791 | 763 | // Strip the trailing period. |
792 | 764 | $namespace = substr($namespace, 0, -1); |
793 | 765 | |
@@ -810,8 +782,7 @@ discard block |
||
810 | 782 | * NOTE: does not expect a trailing "." on the blockname. |
811 | 783 | * @access private |
812 | 784 | */ |
813 | - function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) |
|
814 | - { |
|
785 | + function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) { |
|
815 | 786 | // Get an array of the blocks involved. |
816 | 787 | $blocks = explode('.', $blockname); |
817 | 788 | $blockcount = sizeof($blocks) - 1; |
@@ -833,12 +804,10 @@ discard block |
||
833 | 804 | $varref .= '[$_' . $blocks[$blockcount] . '_i]'; |
834 | 805 | } |
835 | 806 | return $varref; |
836 | - } |
|
837 | - else if ($include_last_iterator) |
|
807 | + } else if ($include_last_iterator) |
|
838 | 808 | { |
839 | 809 | return '$_'. $blocks[$blockcount] . '_val'; |
840 | - } |
|
841 | - else |
|
810 | + } else |
|
842 | 811 | { |
843 | 812 | return '$_'. $blocks[$blockcount - 1] . '_val[\''. $blocks[$blockcount]. '\']'; |
844 | 813 | } |
@@ -848,8 +817,7 @@ discard block |
||
848 | 817 | * Write compiled file to cache directory |
849 | 818 | * @access private |
850 | 819 | */ |
851 | - function compile_write($handle, $data) |
|
852 | - { |
|
820 | + function compile_write($handle, $data) { |
|
853 | 821 | $filename = $this->template->cachepath . str_replace('/', '.', $this->template->filename[$handle]) . DOT_PHP_EX; |
854 | 822 | |
855 | 823 | $data = "<?php if (!defined('INSIDE')) exit;" . ((strpos($data, '<?php') === 0) ? substr($data, 5) : ' ?>' . $data); |
@@ -873,8 +841,7 @@ discard block |
||
873 | 841 | * Minifies template w/i PHP code by removing extra spaces |
874 | 842 | * @access private |
875 | 843 | */ |
876 | - function minify($html) |
|
877 | - { |
|
844 | + function minify($html) { |
|
878 | 845 | global $config; |
879 | 846 | |
880 | 847 | if(!$config->tpl_minifier) |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | } |
113 | 113 | |
114 | 114 | $payment_methods_available = array_combine(array_keys(sn_module_payment::$payment_methods), array_fill(0, count(sn_module_payment::$payment_methods), null)); |
115 | -array_walk($payment_methods_available, function (&$value, $index) { |
|
115 | +array_walk($payment_methods_available, function(&$value, $index) { |
|
116 | 116 | $value = !empty(sn_module_payment::$payment_methods[$index]) ? array_combine(array_keys(sn_module_payment::$payment_methods[$index]), array_fill(0, count(sn_module_payment::$payment_methods[$index]), null)) : $value; |
117 | 117 | }); |
118 | 118 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | 'PLAYER_CURRENCY' => $player_currency, |
301 | 301 | 'PLAYER_CURRENCY_PRICE_PER_MM' => sn_module_payment::currency_convert(1, $player_currency, 'MM_', 10), |
302 | 302 | |
303 | - 'UNIT_AMOUNT' => (float)$request['metamatter'], |
|
303 | + 'UNIT_AMOUNT' => (float) $request['metamatter'], |
|
304 | 304 | 'UNIT_AMOUNT_TEXT' => HelperString::numberFloorAndFormat($request['metamatter']), |
305 | 305 | 'UNIT_AMOUNT_BONUS_PERCENT' => $bonus_percent, |
306 | 306 | 'UNIT_AMOUNT_TEXT_DISCOUNTED' => $income_metamatter_text, |
@@ -165,8 +165,7 @@ discard block |
||
165 | 165 | $planet_info[PLANET_SYSTEM], |
166 | 166 | $planet_info[PLANET_PLANET], |
167 | 167 | htmlentities($planet_info[PLANET_NAME], ENT_COMPAT, 'UTF-8'), |
168 | - $lang[$outcome['UBE_COMBAT_RESULT'] == UBE_COMBAT_RESULT_WIN ? 'ube_report_info_outcome_win' : |
|
169 | - ($outcome['UBE_COMBAT_RESULT'] == UBE_COMBAT_RESULT_DRAW ? 'ube_report_info_outcome_draw' : 'ube_report_info_outcome_loss')] |
|
168 | + $lang[$outcome['UBE_COMBAT_RESULT'] == UBE_COMBAT_RESULT_WIN ? 'ube_report_info_outcome_win' : ($outcome['UBE_COMBAT_RESULT'] == UBE_COMBAT_RESULT_DRAW ? 'ube_report_info_outcome_draw' : 'ube_report_info_outcome_loss')] |
|
170 | 169 | ); |
171 | 170 | |
172 | 171 | $text_defender = ''; |
@@ -251,7 +250,7 @@ discard block |
||
251 | 250 | // Просматриваем результаты изменения флотов |
252 | 251 | foreach ($fleet_info[UBE_COUNT] as $unit_id => $unit_count) { |
253 | 252 | // Перебираем аутком на случай восстановления юнитов |
254 | - $units_lost = (float)$fleets_outcome[$fleet_id][UBE_UNITS_LOST][$unit_id]; |
|
253 | + $units_lost = (float) $fleets_outcome[$fleet_id][UBE_UNITS_LOST][$unit_id]; |
|
255 | 254 | |
256 | 255 | $units_left = $unit_count - $units_lost; |
257 | 256 | if ($fleet_id) { |
@@ -275,7 +274,7 @@ discard block |
||
275 | 274 | // Если во флоте остались юниты или это планета - генерируем изменение ресурсов |
276 | 275 | if ($new_fleet_count || !$fleet_id) { |
277 | 276 | foreach (sn_get_groups('resources_loot') as $resource_id) { |
278 | - $resource_change = (float)$fleets_outcome[$fleet_id][UBE_RESOURCES_LOOTED][$resource_id] + (float)$fleets_outcome[$fleet_id][UBE_CARGO_DROPPED][$resource_id]; |
|
277 | + $resource_change = (float) $fleets_outcome[$fleet_id][UBE_RESOURCES_LOOTED][$resource_id] + (float) $fleets_outcome[$fleet_id][UBE_CARGO_DROPPED][$resource_id]; |
|
279 | 278 | if ($resource_change) { |
280 | 279 | $resource_db_name = ($fleet_id ? 'fleet_resource_' : '') . pname_resource_name($resource_id); |
281 | 280 | $fleet_delta[$resource_db_name] = -($resource_change); |
@@ -290,10 +290,12 @@ discard block |
||
290 | 290 | } |
291 | 291 | } |
292 | 292 | |
293 | - if ($fleet_id) // Не планета |
|
293 | + if ($fleet_id) { |
|
294 | + // Не планета |
|
294 | 295 | { |
295 | 296 | if ($fleet_info[UBE_FLEET_TYPE] == UBE_ATTACKERS && $outcome[UBE_MOON_REAPERS] == UBE_MOON_REAPERS_DIED) { |
296 | 297 | $new_fleet_count = 0; |
298 | + } |
|
297 | 299 | } |
298 | 300 | |
299 | 301 | if ($new_fleet_count) { |
@@ -316,10 +318,12 @@ discard block |
||
316 | 318 | } |
317 | 319 | DBStaticPlanet::db_planet_set_by_id($planet_id, implode(',', $temp)); |
318 | 320 | } |
319 | - if (!empty($db_changeset)) // Сохраняем изменения юнитов на планете - если они есть |
|
321 | + if (!empty($db_changeset)) { |
|
322 | + // Сохраняем изменения юнитов на планете - если они есть |
|
320 | 323 | { |
321 | 324 | OldDbChangeSet::db_changeset_apply($db_changeset); |
322 | 325 | } |
326 | + } |
|
323 | 327 | } |
324 | 328 | } |
325 | 329 |