Completed
Branch master (b65d76)
by David
04:29
created
lib/Dwoo/Plugins/Functions/PluginWordwrapCompile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,5 +31,5 @@
 block discarded – undo
31 31
  */
32 32
 function PluginWordwrapCompile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false)
33 33
 {
34
-    return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')';
34
+    return 'wordwrap('.$value.','.$length.','.$break.','.$cut.')';
35 35
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginTruncate.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -37,21 +37,21 @@
 block discarded – undo
37 37
         return '';
38 38
     }
39 39
 
40
-    $value  = (string)$value;
41
-    $etc    = (string)$etc;
42
-    $length = (int)$length;
40
+    $value  = (string) $value;
41
+    $etc    = (string) $etc;
42
+    $length = (int) $length;
43 43
 
44 44
     if (strlen($value) < $length) {
45 45
         return $value;
46 46
     }
47 47
 
48
-    $length = max($length - strlen($etc), 0);
48
+    $length = max($length-strlen($etc), 0);
49 49
     if ($break === false && $middle === false) {
50
-        $value = preg_replace('#\s+(\S*)?$#', '', substr($value, 0, $length + 1));
50
+        $value = preg_replace('#\s+(\S*)?$#', '', substr($value, 0, $length+1));
51 51
     }
52 52
     if ($middle === false) {
53
-        return substr($value, 0, $length) . $etc;
53
+        return substr($value, 0, $length).$etc;
54 54
     }
55 55
 
56
-    return substr($value, 0, ceil($length / 2)) . $etc . substr($value, - floor($length / 2));
56
+    return substr($value, 0, ceil($length/2)).$etc.substr($value, - floor($length/2));
57 57
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginTifCompile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 function PluginTifCompile(Compiler $compiler, array $rest, array $tokens)
36 36
 {
37 37
     // load if plugin
38
-    if (!class_exists(Core::NAMESPACE_PLUGINS_BLOCKS . 'PluginIf')) {
38
+    if (!class_exists(Core::NAMESPACE_PLUGINS_BLOCKS.'PluginIf')) {
39 39
         try {
40 40
             $compiler->getDwoo()->getLoader()->loadPlugin('if');
41 41
         }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         array_pop($rest);
57 57
     } elseif (trim(end($rest), '"\'') === '?' || count($rest) === 1) {
58 58
         if ($falseResult === '?' || $falseResult === ':') {
59
-            throw new CompilationException($compiler, 'Tif: incomplete tif statement, value missing after ' . $falseResult);
59
+            throw new CompilationException($compiler, 'Tif: incomplete tif statement, value missing after '.$falseResult);
60 60
         }
61 61
         // there was in fact no false result provided, so we move it to be the true result instead
62 62
         $trueResult  = $falseResult;
@@ -85,5 +85,5 @@  discard block
 block discarded – undo
85 85
     // parse condition
86 86
     $condition = PluginIf::replaceKeywords($rest, $tokens, $compiler);
87 87
 
88
-    return '((' . implode(' ', $condition) . ') ? ' . ($trueResult === true ? implode(' ', $condition) : $trueResult) . ' : ' . $falseResult . ')';
88
+    return '(('.implode(' ', $condition).') ? '.($trueResult === true ? implode(' ', $condition) : $trueResult).' : '.$falseResult.')';
89 89
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginReplaceCompile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
  */
31 31
 function PluginReplaceCompile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true)
32 32
 {
33
-    if ($case_sensitive == 'false' || (bool)$case_sensitive === false) {
34
-        return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')';
33
+    if ($case_sensitive == 'false' || (bool) $case_sensitive === false) {
34
+        return 'str_ireplace('.$search.', '.$replace.', '.$value.')';
35 35
     } else {
36
-        return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')';
36
+        return 'str_replace('.$search.', '.$replace.', '.$value.')';
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginCountParagraphsCompile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,5 +28,5 @@
 block discarded – undo
28 28
  */
29 29
 function PluginCountParagraphsCompile(Compiler $compiler, $value)
30 30
 {
31
-    return '(preg_match_all(\'#[\r\n]+#\', ' . $value . ', $tmp)+1)';
31
+    return '(preg_match_all(\'#[\r\n]+#\', '.$value.', $tmp)+1)';
32 32
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginFetch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
                     break 2;
48 48
                 }
49 49
             }
50
-            $dwoo->triggerError('The security policy prevents you to read <em>' . $file . '</em>', E_USER_WARNING);
50
+            $dwoo->triggerError('The security policy prevents you to read <em>'.$file.'</em>', E_USER_WARNING);
51 51
         }
52 52
     }
53 53
     $file = str_replace(array(
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginSpacifyCompile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,5 +29,5 @@
 block discarded – undo
29 29
  */
30 30
 function PluginSpacifyCompile(Compiler $compiler, $value, $space_char = ' ')
31 31
 {
32
-    return 'implode(' . $space_char . ', str_split(' . $value . ', 1))';
32
+    return 'implode('.$space_char.', str_split('.$value.', 1))';
33 33
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginLowerCompile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,5 +28,5 @@
 block discarded – undo
28 28
  */
29 29
 function PluginLowerCompile(Compiler $compiler, $value)
30 30
 {
31
-    return 'mb_strtolower((string) ' . $value . ', $this->charset)';
31
+    return 'mb_strtolower((string) '.$value.', $this->charset)';
32 32
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginEscape.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -39,33 +39,33 @@  discard block
 block discarded – undo
39 39
     switch ($format) {
40 40
 
41 41
         case 'html':
42
-            return htmlspecialchars((string)$value, ENT_QUOTES, $charset);
42
+            return htmlspecialchars((string) $value, ENT_QUOTES, $charset);
43 43
         case 'htmlall':
44
-            return htmlentities((string)$value, ENT_QUOTES, $charset);
44
+            return htmlentities((string) $value, ENT_QUOTES, $charset);
45 45
         case 'url':
46
-            return rawurlencode((string)$value);
46
+            return rawurlencode((string) $value);
47 47
         case 'urlpathinfo':
48
-            return str_replace('%2F', '/', rawurlencode((string)$value));
48
+            return str_replace('%2F', '/', rawurlencode((string) $value));
49 49
         case 'quotes':
50
-            return preg_replace("#(?<!\\\\)'#", "\\'", (string)$value);
50
+            return preg_replace("#(?<!\\\\)'#", "\\'", (string) $value);
51 51
         case 'hex':
52 52
             $out = '';
53
-            $cnt = strlen((string)$value);
53
+            $cnt = strlen((string) $value);
54 54
             for ($i = 0; $i < $cnt; ++ $i) {
55
-                $out .= '%' . bin2hex((string)$value[$i]);
55
+                $out .= '%'.bin2hex((string) $value[$i]);
56 56
             }
57 57
 
58 58
             return $out;
59 59
         case 'hexentity':
60 60
             $out = '';
61
-            $cnt = strlen((string)$value);
61
+            $cnt = strlen((string) $value);
62 62
             for ($i = 0; $i < $cnt; ++ $i) {
63
-                $out .= '&#x' . bin2hex((string)$value[$i]) . ';';
63
+                $out .= '&#x'.bin2hex((string) $value[$i]).';';
64 64
             }
65 65
 
66 66
             return $out;
67 67
         case 'javascript':
68
-            return strtr((string)$value, array(
68
+            return strtr((string) $value, array(
69 69
                 '\\' => '\\\\',
70 70
                 "'"  => "\\'",
71 71
                 '"'  => '\\"',
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
             ), array(
81 81
                 '&nbsp;(AT)&nbsp;',
82 82
                 '&nbsp;(DOT)&nbsp;'
83
-            ), (string)$value);
83
+            ), (string) $value);
84 84
         default:
85
-            $dwoo->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript or mail, "' . $format . '" given.', E_USER_WARNING);
85
+            $dwoo->triggerError('Escape\'s format argument must be one of : html, htmlall, url, urlpathinfo, hex, hexentity, javascript or mail, "'.$format.'" given.', E_USER_WARNING);
86 86
     }
87 87
 }
Please login to merge, or discard this patch.