@@ -57,7 +57,7 @@ |
||
57 | 57 | '%t', |
58 | 58 | '%T' |
59 | 59 | ); |
60 | - $_win_to = array( |
|
60 | + $_win_to = array( |
|
61 | 61 | '%m/%d/%y', |
62 | 62 | '%b', |
63 | 63 | "\n", |
@@ -41,10 +41,10 @@ |
||
41 | 41 | $out = array(); |
42 | 42 | foreach ($rest as $key => $value) { |
43 | 43 | if (!is_numeric($key) && !strstr($key, '$this->scope')) { |
44 | - $key = "'" . $key . "'"; |
|
44 | + $key = "'".$key."'"; |
|
45 | 45 | } |
46 | - $out[] = $key . '=>' . $value; |
|
46 | + $out[] = $key.'=>'.$value; |
|
47 | 47 | } |
48 | 48 | |
49 | - return 'array(' . implode(', ', $out) . ')'; |
|
49 | + return 'array('.implode(', ', $out).')'; |
|
50 | 50 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | $block = &$compiler->getCurrentBlock(); |
69 | - $block['params']['hasElse'] = Compiler::PHP_OPEN . "else {\n" . Compiler::PHP_CLOSE . $content . Compiler::PHP_OPEN . "\n}" . Compiler::PHP_CLOSE; |
|
69 | + $block['params']['hasElse'] = Compiler::PHP_OPEN."else {\n".Compiler::PHP_CLOSE.$content.Compiler::PHP_OPEN."\n}".Compiler::PHP_CLOSE; |
|
70 | 70 | |
71 | 71 | return ''; |
72 | 72 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | reset($params); |
64 | 64 | while (list($k, $v) = each($params)) { |
65 | - $v = (string)$v; |
|
65 | + $v = (string) $v; |
|
66 | 66 | if (substr($v, 0, 1) === '"' || substr($v, 0, 1) === '\'') { |
67 | 67 | $vmod = strtolower(substr($v, 1, - 1)); |
68 | 68 | } else { |
@@ -171,59 +171,59 @@ discard block |
||
171 | 171 | $p[] = $v; |
172 | 172 | break; |
173 | 173 | } |
174 | - if (isset($params[$k + 1]) && strtolower(trim($params[$k + 1], '"\'')) === 'not' && $tokens[$k + 1] === Compiler::T_UNQUOTED_STRING) { |
|
174 | + if (isset($params[$k+1]) && strtolower(trim($params[$k+1], '"\'')) === 'not' && $tokens[$k+1] === Compiler::T_UNQUOTED_STRING) { |
|
175 | 175 | $negate = true; |
176 | 176 | next($params); |
177 | 177 | } else { |
178 | 178 | $negate = false; |
179 | 179 | } |
180 | - $ptr = 1 + (int)$negate; |
|
181 | - if ($tokens[$k + $ptr] !== Compiler::T_UNQUOTED_STRING) { |
|
180 | + $ptr = 1+(int) $negate; |
|
181 | + if ($tokens[$k+$ptr] !== Compiler::T_UNQUOTED_STRING) { |
|
182 | 182 | break; |
183 | 183 | } |
184 | - if (!isset($params[$k + $ptr])) { |
|
185 | - $params[$k + $ptr] = ''; |
|
184 | + if (!isset($params[$k+$ptr])) { |
|
185 | + $params[$k+$ptr] = ''; |
|
186 | 186 | } else { |
187 | - $params[$k + $ptr] = trim($params[$k + $ptr], '"\''); |
|
187 | + $params[$k+$ptr] = trim($params[$k+$ptr], '"\''); |
|
188 | 188 | } |
189 | - switch ($params[$k + $ptr]) { |
|
189 | + switch ($params[$k+$ptr]) { |
|
190 | 190 | |
191 | 191 | case 'div': |
192 | - if (isset($params[$k + $ptr + 1]) && strtolower(trim($params[$k + $ptr + 1], '"\'')) === 'by') { |
|
193 | - $p[] = ' % ' . $params[$k + $ptr + 2] . ' ' . ($negate ? '!' : '=') . '== 0'; |
|
192 | + if (isset($params[$k+$ptr+1]) && strtolower(trim($params[$k+$ptr+1], '"\'')) === 'by') { |
|
193 | + $p[] = ' % '.$params[$k+$ptr+2].' '.($negate ? '!' : '=').'== 0'; |
|
194 | 194 | next($params); |
195 | 195 | next($params); |
196 | 196 | next($params); |
197 | 197 | } else { |
198 | - throw new CompilationException($compiler, 'If : Syntax error : syntax should be "if $a is [not] div by $b", found ' . $params[$k - 1] . ' is ' . ($negate ? 'not ' : '') . 'div ' . $params[$k + $ptr + 1] . ' ' . $params[$k + $ptr + 2]); |
|
198 | + throw new CompilationException($compiler, 'If : Syntax error : syntax should be "if $a is [not] div by $b", found '.$params[$k-1].' is '.($negate ? 'not ' : '').'div '.$params[$k+$ptr+1].' '.$params[$k+$ptr+2]); |
|
199 | 199 | } |
200 | 200 | break; |
201 | 201 | case 'even': |
202 | 202 | $a = array_pop($p); |
203 | - if (isset($params[$k + $ptr + 1]) && strtolower(trim($params[$k + $ptr + 1], '"\'')) === 'by') { |
|
204 | - $b = $params[$k + $ptr + 2]; |
|
205 | - $p[] = '(' . $a . ' / ' . $b . ') % 2 ' . ($negate ? '!' : '=') . '== 0'; |
|
203 | + if (isset($params[$k+$ptr+1]) && strtolower(trim($params[$k+$ptr+1], '"\'')) === 'by') { |
|
204 | + $b = $params[$k+$ptr+2]; |
|
205 | + $p[] = '('.$a.' / '.$b.') % 2 '.($negate ? '!' : '=').'== 0'; |
|
206 | 206 | next($params); |
207 | 207 | next($params); |
208 | 208 | } else { |
209 | - $p[] = $a . ' % 2 ' . ($negate ? '!' : '=') . '== 0'; |
|
209 | + $p[] = $a.' % 2 '.($negate ? '!' : '=').'== 0'; |
|
210 | 210 | } |
211 | 211 | next($params); |
212 | 212 | break; |
213 | 213 | case 'odd': |
214 | 214 | $a = array_pop($p); |
215 | - if (isset($params[$k + $ptr + 1]) && strtolower(trim($params[$k + $ptr + 1], '"\'')) === 'by') { |
|
216 | - $b = $params[$k + $ptr + 2]; |
|
217 | - $p[] = '(' . $a . ' / ' . $b . ') % 2 ' . ($negate ? '=' : '!') . '== 0'; |
|
215 | + if (isset($params[$k+$ptr+1]) && strtolower(trim($params[$k+$ptr+1], '"\'')) === 'by') { |
|
216 | + $b = $params[$k+$ptr+2]; |
|
217 | + $p[] = '('.$a.' / '.$b.') % 2 '.($negate ? '=' : '!').'== 0'; |
|
218 | 218 | next($params); |
219 | 219 | next($params); |
220 | 220 | } else { |
221 | - $p[] = $a . ' % 2 ' . ($negate ? '=' : '!') . '== 0'; |
|
221 | + $p[] = $a.' % 2 '.($negate ? '=' : '!').'== 0'; |
|
222 | 222 | } |
223 | 223 | next($params); |
224 | 224 | break; |
225 | 225 | default: |
226 | - throw new CompilationException($compiler, 'If : Syntax error : syntax should be "if $a is [not] (div|even|odd) [by $b]", found ' . $params[$k - 1] . ' is ' . $params[$k + $ptr + 1]); |
|
226 | + throw new CompilationException($compiler, 'If : Syntax error : syntax should be "if $a is [not] (div|even|odd) [by $b]", found '.$params[$k-1].' is '.$params[$k+$ptr+1]); |
|
227 | 227 | } |
228 | 228 | break; |
229 | 229 | default: |
@@ -261,14 +261,14 @@ discard block |
||
261 | 261 | { |
262 | 262 | $tokens = $compiler->getParamTokens($params); |
263 | 263 | $params = $compiler->getCompiledParams($params); |
264 | - $pre = Compiler::PHP_OPEN . 'if (' . implode(' ', self::replaceKeywords($params['*'], $tokens['*'], $compiler)) . ") {\n" . Compiler::PHP_CLOSE; |
|
264 | + $pre = Compiler::PHP_OPEN.'if ('.implode(' ', self::replaceKeywords($params['*'], $tokens['*'], $compiler)).") {\n".Compiler::PHP_CLOSE; |
|
265 | 265 | |
266 | - $post = Compiler::PHP_OPEN . "\n}" . Compiler::PHP_CLOSE; |
|
266 | + $post = Compiler::PHP_OPEN."\n}".Compiler::PHP_CLOSE; |
|
267 | 267 | |
268 | 268 | if (isset($params['hasElse'])) { |
269 | 269 | $post .= $params['hasElse']; |
270 | 270 | } |
271 | 271 | |
272 | - return $pre . $content . $post; |
|
272 | + return $pre.$content.$post; |
|
273 | 273 | } |
274 | 274 | } |
@@ -58,26 +58,26 @@ discard block |
||
58 | 58 | $callback = $customPlugins[$func]['callback']; |
59 | 59 | if (is_array($callback)) { |
60 | 60 | if (is_object($callback[0])) { |
61 | - $callback = '$this->customPlugins[\'' . $func . '\'][0]->' . $callback[1] . '('; |
|
61 | + $callback = '$this->customPlugins[\''.$func.'\'][0]->'.$callback[1].'('; |
|
62 | 62 | } else { |
63 | - $callback = '' . $callback[0] . '::' . $callback[1] . '('; |
|
63 | + $callback = ''.$callback[0].'::'.$callback[1].'('; |
|
64 | 64 | } |
65 | 65 | } else { |
66 | - $callback = $callback . '('; |
|
66 | + $callback = $callback.'('; |
|
67 | 67 | } |
68 | 68 | } else { |
69 | - $callback = 'smarty_block_' . $func . '('; |
|
69 | + $callback = 'smarty_block_'.$func.'('; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | $paramsOut = ''; |
73 | 73 | foreach ($params as $i => $p) { |
74 | - $paramsOut .= var_export($i, true) . ' => ' . $p . ','; |
|
74 | + $paramsOut .= var_export($i, true).' => '.$p.','; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | $curBlock = &$compiler->getCurrentBlock(); |
78 | - $curBlock['params']['postOut'] = Compiler::PHP_OPEN . ' $_block_content = ob_get_clean(); $_block_repeat=false; echo ' . $callback . '$_tag_stack[count($_tag_stack)-1], $_block_content, $this, $_block_repeat); } array_pop($_tag_stack);' . Compiler::PHP_CLOSE; |
|
78 | + $curBlock['params']['postOut'] = Compiler::PHP_OPEN.' $_block_content = ob_get_clean(); $_block_repeat=false; echo '.$callback.'$_tag_stack[count($_tag_stack)-1], $_block_content, $this, $_block_repeat); } array_pop($_tag_stack);'.Compiler::PHP_CLOSE; |
|
79 | 79 | |
80 | - return Compiler::PHP_OPEN . $prepend . ' if (!isset($_tag_stack)){ $_tag_stack = array(); } $_tag_stack[] = array(' . $paramsOut . '); $_block_repeat=true; ' . $callback . '$_tag_stack[count($_tag_stack)-1], null, $this, $_block_repeat); while ($_block_repeat) { ob_start();' . Compiler::PHP_CLOSE; |
|
80 | + return Compiler::PHP_OPEN.$prepend.' if (!isset($_tag_stack)){ $_tag_stack = array(); } $_tag_stack[] = array('.$paramsOut.'); $_block_repeat=true; '.$callback.'$_tag_stack[count($_tag_stack)-1], null, $this, $_block_repeat); while ($_block_repeat) { ob_start();'.Compiler::PHP_CLOSE; |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -91,6 +91,6 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public static function postProcessing(Compiler $compiler, array $params, $prepend, $append, $content) |
93 | 93 | { |
94 | - return $content . $params['postOut']; |
|
94 | + return $content.$params['postOut']; |
|
95 | 95 | } |
96 | 96 | } |
@@ -67,18 +67,18 @@ discard block |
||
67 | 67 | } |
68 | 68 | catch (CompilationException $e) { |
69 | 69 | } |
70 | - $output = Compiler::PHP_OPEN . 'if($doCache) {' . "\n\t" . 'echo \'<dwoo:dynamic_\'.$dynamicId.\'>' . str_replace('\'', '\\\'', $content) . '</dwoo:dynamic_\'.$dynamicId.\'>\';' . "\n} else {\n\t"; |
|
70 | + $output = Compiler::PHP_OPEN.'if($doCache) {'."\n\t".'echo \'<dwoo:dynamic_\'.$dynamicId.\'>'.str_replace('\'', '\\\'', $content).'</dwoo:dynamic_\'.$dynamicId.\'>\';'."\n} else {\n\t"; |
|
71 | 71 | if (substr($content, 0, strlen(Compiler::PHP_OPEN)) == Compiler::PHP_OPEN) { |
72 | 72 | $output .= substr($content, strlen(Compiler::PHP_OPEN)); |
73 | 73 | } else { |
74 | - $output .= Compiler::PHP_CLOSE . $content; |
|
74 | + $output .= Compiler::PHP_CLOSE.$content; |
|
75 | 75 | } |
76 | 76 | if (substr($output, - strlen(Compiler::PHP_CLOSE)) == Compiler::PHP_CLOSE) { |
77 | 77 | $output = substr($output, 0, - strlen(Compiler::PHP_CLOSE)); |
78 | 78 | } else { |
79 | 79 | $output .= Compiler::PHP_OPEN; |
80 | 80 | } |
81 | - $output .= "\n}" . Compiler::PHP_CLOSE; |
|
81 | + $output .= "\n}".Compiler::PHP_CLOSE; |
|
82 | 82 | |
83 | 83 | return $output; |
84 | 84 | } |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public static function unescape($output, $dynamicId, $compiledFile) |
94 | 94 | { |
95 | - $output = preg_replace_callback('/<dwoo:dynamic_(' . $dynamicId . ')>(.+?)<\/dwoo:dynamic_' . $dynamicId . '>/s', array( |
|
95 | + $output = preg_replace_callback('/<dwoo:dynamic_('.$dynamicId.')>(.+?)<\/dwoo:dynamic_'.$dynamicId.'>/s', array( |
|
96 | 96 | 'self', |
97 | 97 | 'unescapePhp' |
98 | 98 | ), $output, - 1, $count); |
99 | 99 | // re-add the includes on top of the file |
100 | 100 | if ($count && preg_match('#/\* template head \*/(.+?)/\* end template head \*/#s', file_get_contents($compiledFile), $m)) { |
101 | - $output = '<?php ' . $m[1] . ' ?>' . $output; |
|
101 | + $output = '<?php '.$m[1].' ?>'.$output; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | return $output; |
@@ -111,6 +111,6 @@ discard block |
||
111 | 111 | */ |
112 | 112 | public static function unescapePhp($match) |
113 | 113 | { |
114 | - return preg_replace('{<\?php /\*' . $match[1] . '\*/ echo \'(.+?)\'; \?>}s', '$1', $match[2]); |
|
114 | + return preg_replace('{<\?php /\*'.$match[1].'\*/ echo \'(.+?)\'; \?>}s', '$1', $match[2]); |
|
115 | 115 | } |
116 | 116 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | $block = &$compiler->getCurrentBlock(); |
69 | - $block['params']['hasElse'] = Compiler::PHP_OPEN . "else {\n" . Compiler::PHP_CLOSE . $content . Compiler::PHP_OPEN . "\n}" . Compiler::PHP_CLOSE; |
|
69 | + $block['params']['hasElse'] = Compiler::PHP_OPEN."else {\n".Compiler::PHP_CLOSE.$content.Compiler::PHP_OPEN."\n}".Compiler::PHP_CLOSE; |
|
70 | 70 | |
71 | 71 | return ''; |
72 | 72 | } |
@@ -72,13 +72,13 @@ discard block |
||
72 | 72 | break; |
73 | 73 | } |
74 | 74 | |
75 | - $this->wrap = (int)$wrap; |
|
76 | - $this->wrapChar = (string)$wrap_char; |
|
77 | - $this->wrapCut = (bool)$wrap_cut; |
|
78 | - $this->indent = (int)$indent; |
|
79 | - $this->indChar = (string)$indent_char; |
|
80 | - $this->indFirst = (int)$indent_first + $this->indent; |
|
81 | - $this->assign = (string)$assign; |
|
75 | + $this->wrap = (int) $wrap; |
|
76 | + $this->wrapChar = (string) $wrap_char; |
|
77 | + $this->wrapCut = (bool) $wrap_cut; |
|
78 | + $this->indent = (int) $indent; |
|
79 | + $this->indChar = (string) $indent_char; |
|
80 | + $this->indFirst = (int) $indent_first+$this->indent; |
|
81 | + $this->assign = (string) $assign; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -107,13 +107,13 @@ discard block |
||
107 | 107 | ), str_replace("\n", '', $pgs[$i])); |
108 | 108 | |
109 | 109 | // wordwraps + indents lines |
110 | - $pgs[$i] = str_repeat($this->indChar, $this->indFirst) . wordwrap($pgs[$i], max($this->wrap - $this->indent, 1), $this->wrapChar . str_repeat($this->indChar, $this->indent), $this->wrapCut); |
|
110 | + $pgs[$i] = str_repeat($this->indChar, $this->indFirst).wordwrap($pgs[$i], max($this->wrap-$this->indent, 1), $this->wrapChar.str_repeat($this->indChar, $this->indent), $this->wrapCut); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | if ($this->assign !== '') { |
114 | - $this->core->assignInScope(implode($this->wrapChar . $this->wrapChar, $pgs), $this->assign); |
|
114 | + $this->core->assignInScope(implode($this->wrapChar.$this->wrapChar, $pgs), $this->assign); |
|
115 | 115 | } else { |
116 | - return implode($this->wrapChar . $this->wrapChar, $pgs); |
|
116 | + return implode($this->wrapChar.$this->wrapChar, $pgs); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public static function preProcessing(Compiler $compiler, array $params, $prepend, $append, $type) |
65 | 65 | { |
66 | - return Compiler::PHP_OPEN . $prepend . 'ob_start();' . $append . Compiler::PHP_CLOSE; |
|
66 | + return Compiler::PHP_OPEN.$prepend.'ob_start();'.$append.Compiler::PHP_CLOSE; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -79,17 +79,17 @@ discard block |
||
79 | 79 | { |
80 | 80 | $params = $compiler->getCompiledParams($params); |
81 | 81 | |
82 | - $out = $content . Compiler::PHP_OPEN . $prepend . "\n" . '$tmp = ob_get_clean();'; |
|
82 | + $out = $content.Compiler::PHP_OPEN.$prepend."\n".'$tmp = ob_get_clean();'; |
|
83 | 83 | if ($params['trim'] !== 'false' && $params['trim'] !== 0) { |
84 | - $out .= "\n" . '$tmp = trim($tmp);'; |
|
84 | + $out .= "\n".'$tmp = trim($tmp);'; |
|
85 | 85 | } |
86 | 86 | if ($params['cat'] === 'true' || $params['cat'] === 1) { |
87 | - $out .= "\n" . '$tmp = $this->readVar(\'dwoo.capture.\'.' . $params['name'] . ') . $tmp;'; |
|
87 | + $out .= "\n".'$tmp = $this->readVar(\'dwoo.capture.\'.'.$params['name'].') . $tmp;'; |
|
88 | 88 | } |
89 | 89 | if ($params['assign'] !== 'null') { |
90 | - $out .= "\n" . '$this->scope[' . $params['assign'] . '] = $tmp;'; |
|
90 | + $out .= "\n".'$this->scope['.$params['assign'].'] = $tmp;'; |
|
91 | 91 | } |
92 | 92 | |
93 | - return $out . "\n" . '$this->globals[\'capture\'][' . $params['name'] . '] = $tmp;' . $append . Compiler::PHP_CLOSE; |
|
93 | + return $out."\n".'$this->globals[\'capture\']['.$params['name'].'] = $tmp;'.$append.Compiler::PHP_CLOSE; |
|
94 | 94 | } |
95 | 95 | } |