@@ -38,15 +38,15 @@ |
||
| 38 | 38 | public function process($value, $numwords = false) |
| 39 | 39 | { |
| 40 | 40 | if ($numwords || preg_match('#^[^0-9]+$#', $value)) { |
| 41 | - return mb_convert_case((string)$value, MB_CASE_TITLE, $this->core->getCharset()); |
|
| 41 | + return mb_convert_case((string) $value, MB_CASE_TITLE, $this->core->getCharset()); |
|
| 42 | 42 | } else { |
| 43 | - $bits = explode(' ', (string)$value); |
|
| 43 | + $bits = explode(' ', (string) $value); |
|
| 44 | 44 | $out = ''; |
| 45 | 45 | while (list(, $v) = each($bits)) { |
| 46 | 46 | if (preg_match('#^[^0-9]+$#', $v)) { |
| 47 | - $out .= ' ' . mb_convert_case($v, MB_CASE_TITLE, $this->core->getCharset()); |
|
| 47 | + $out .= ' '.mb_convert_case($v, MB_CASE_TITLE, $this->core->getCharset()); |
|
| 48 | 48 | } else { |
| 49 | - $out .= ' ' . $v; |
|
| 49 | + $out .= ' '.$v; |
|
| 50 | 50 | } |
| 51 | 51 | } |
| 52 | 52 | |
@@ -60,10 +60,10 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | if ($tpl === null) { |
| 62 | 62 | throw new CompilationException($compiler, |
| 63 | - 'Load Templates : Resource "' . $resource . ':' . $identifier . '" not found.'); |
|
| 63 | + 'Load Templates : Resource "'.$resource.':'.$identifier.'" not found.'); |
|
| 64 | 64 | } elseif ($tpl === false) { |
| 65 | 65 | throw new CompilationException($compiler, |
| 66 | - 'Load Templates : Resource "' . $resource . '" does not support includes.'); |
|
| 66 | + 'Load Templates : Resource "'.$resource.'" does not support includes.'); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | $cmp = clone $compiler; |
@@ -75,23 +75,23 @@ discard block |
||
| 75 | 75 | $compiler->addUsedPlugin($plugin, $type); |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - $out = '\'\';// checking for modification in ' . $resource . ':' . $identifier . "\r\n"; |
|
| 78 | + $out = '\'\';// checking for modification in '.$resource.':'.$identifier."\r\n"; |
|
| 79 | 79 | |
| 80 | 80 | $modCheck = $tpl->getIsModifiedCode(); |
| 81 | 81 | |
| 82 | 82 | if ($modCheck) { |
| 83 | - $out .= 'if (!(' . $modCheck . ')) { ob_end_clean(); return false; }'; |
|
| 83 | + $out .= 'if (!('.$modCheck.')) { ob_end_clean(); return false; }'; |
|
| 84 | 84 | } else { |
| 85 | 85 | $out .= 'try { |
| 86 | - $tpl = $this->templateFactory("' . $resource . '", "' . $identifier . '"); |
|
| 86 | + $tpl = $this->templateFactory("' . $resource.'", "'.$identifier.'"); |
|
| 87 | 87 | } catch (Dwoo\Exception $e) { |
| 88 | - $this->triggerError(\'Load Templates : Resource <em>' . $resource . '</em> was not added to Dwoo, can not extend <em>' . $identifier . '</em>\', E_USER_WARNING); |
|
| 88 | + $this->triggerError(\'Load Templates : Resource <em>' . $resource.'</em> was not added to Dwoo, can not extend <em>'.$identifier.'</em>\', E_USER_WARNING); |
|
| 89 | 89 | } |
| 90 | 90 | if ($tpl === null) |
| 91 | - $this->triggerError(\'Load Templates : Resource "' . $resource . ':' . $identifier . '" was not found.\', E_USER_WARNING); |
|
| 91 | + $this->triggerError(\'Load Templates : Resource "' . $resource.':'.$identifier.'" was not found.\', E_USER_WARNING); |
|
| 92 | 92 | elseif ($tpl === false) |
| 93 | - $this->triggerError(\'Load Templates : Resource "' . $resource . '" does not support extends.\', E_USER_WARNING); |
|
| 94 | -if ($tpl->getUid() != "' . $tpl->getUid() . '") { ob_end_clean(); return false; }'; |
|
| 93 | + $this->triggerError(\'Load Templates : Resource "' . $resource.'" does not support extends.\', E_USER_WARNING); |
|
| 94 | +if ($tpl->getUid() != "' . $tpl->getUid().'") { ob_end_clean(); return false; }'; |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | return $out; |
@@ -42,6 +42,6 @@ |
||
| 42 | 42 | */ |
| 43 | 43 | public static function compile(Compiler $compiler, $value, $by = 4, $char = ' ') |
| 44 | 44 | { |
| 45 | - return "preg_replace('#^#m', '" . str_repeat(substr($char, 1, - 1), trim($by, '"\'')) . "', $value)"; |
|
| 45 | + return "preg_replace('#^#m', '".str_repeat(substr($char, 1, - 1), trim($by, '"\''))."', $value)"; |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | \ No newline at end of file |
@@ -48,22 +48,22 @@ |
||
| 48 | 48 | return ''; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - $value = (string)$value; |
|
| 52 | - $etc = (string)$etc; |
|
| 53 | - $length = (int)$length; |
|
| 51 | + $value = (string) $value; |
|
| 52 | + $etc = (string) $etc; |
|
| 53 | + $length = (int) $length; |
|
| 54 | 54 | |
| 55 | 55 | if (strlen($value) < $length) { |
| 56 | 56 | return $value; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - $length = max($length - strlen($etc), 0); |
|
| 59 | + $length = max($length-strlen($etc), 0); |
|
| 60 | 60 | if ($break === false && $middle === false) { |
| 61 | - $value = preg_replace('#\s+(\S*)?$#', '', substr($value, 0, $length + 1)); |
|
| 61 | + $value = preg_replace('#\s+(\S*)?$#', '', substr($value, 0, $length+1)); |
|
| 62 | 62 | } |
| 63 | 63 | if ($middle === false) { |
| 64 | - return substr($value, 0, $length) . $etc; |
|
| 64 | + return substr($value, 0, $length).$etc; |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - return substr($value, 0, ceil($length / 2)) . $etc . substr($value, - floor($length / 2)); |
|
| 67 | + return substr($value, 0, ceil($length/2)).$etc.substr($value, - floor($length/2)); |
|
| 68 | 68 | } |
| 69 | 69 | } |
| 70 | 70 | \ No newline at end of file |
@@ -40,6 +40,6 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | public static function compile(Compiler $compiler, $value, $default = '') |
| 42 | 42 | { |
| 43 | - return '(($tmp = ' . $value . ')===null||$tmp===\'\' ? ' . $default . ' : $tmp)'; |
|
| 43 | + return '(($tmp = '.$value.')===null||$tmp===\'\' ? '.$default.' : $tmp)'; |
|
| 44 | 44 | } |
| 45 | 45 | } |
| 46 | 46 | \ No newline at end of file |
@@ -39,6 +39,6 @@ |
||
| 39 | 39 | */ |
| 40 | 40 | public static function compile(Compiler $compiler, $value, array $rest) |
| 41 | 41 | { |
| 42 | - return '(' . $value . ').(' . implode(').(', $rest) . ')'; |
|
| 42 | + return '('.$value.').('.implode(').(', $rest).')'; |
|
| 43 | 43 | } |
| 44 | 44 | } |
@@ -41,9 +41,9 @@ |
||
| 41 | 41 | public static function compile(Compiler $compiler, $value, $count_spaces = false) |
| 42 | 42 | { |
| 43 | 43 | if ($count_spaces === 'false') { |
| 44 | - return 'preg_match_all(\'#[^\s\pZ]#u\', ' . $value . ', $tmp)'; |
|
| 44 | + return 'preg_match_all(\'#[^\s\pZ]#u\', '.$value.', $tmp)'; |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - return 'mb_strlen(' . $value . ', $this->charset)'; |
|
| 47 | + return 'mb_strlen('.$value.', $this->charset)'; |
|
| 48 | 48 | } |
| 49 | 49 | } |
| 50 | 50 | \ No newline at end of file |
@@ -45,29 +45,29 @@ |
||
| 45 | 45 | |
| 46 | 46 | if ($tpl === null) { |
| 47 | 47 | throw new CompilationException($compiler, |
| 48 | - 'Load Templates : Resource "' . $resource . ':' . $identifier . '" not found.'); |
|
| 48 | + 'Load Templates : Resource "'.$resource.':'.$identifier.'" not found.'); |
|
| 49 | 49 | } elseif ($tpl === false) { |
| 50 | 50 | throw new CompilationException($compiler, |
| 51 | - 'Load Templates : Resource "' . $resource . '" does not support includes.'); |
|
| 51 | + 'Load Templates : Resource "'.$resource.'" does not support includes.'); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - $out = '\'\';// checking for modification in ' . $resource . ':' . $identifier . "\r\n"; |
|
| 54 | + $out = '\'\';// checking for modification in '.$resource.':'.$identifier."\r\n"; |
|
| 55 | 55 | |
| 56 | 56 | $modCheck = $tpl->getIsModifiedCode(); |
| 57 | 57 | |
| 58 | 58 | if ($modCheck) { |
| 59 | - $out .= 'if (!(' . $modCheck . ')) { ob_end_clean(); return false; }'; |
|
| 59 | + $out .= 'if (!('.$modCheck.')) { ob_end_clean(); return false; }'; |
|
| 60 | 60 | } else { |
| 61 | 61 | $out .= 'try { |
| 62 | - $tpl = $this->templateFactory("' . $resource . '", "' . $identifier . '"); |
|
| 62 | + $tpl = $this->templateFactory("' . $resource.'", "'.$identifier.'"); |
|
| 63 | 63 | } catch (Dwoo\Exception $e) { |
| 64 | - $this->triggerError(\'Load Templates : Resource <em>' . $resource . '</em> was not added to Dwoo, can not extend <em>' . $identifier . '</em>\', E_USER_WARNING); |
|
| 64 | + $this->triggerError(\'Load Templates : Resource <em>' . $resource.'</em> was not added to Dwoo, can not extend <em>'.$identifier.'</em>\', E_USER_WARNING); |
|
| 65 | 65 | } |
| 66 | 66 | if ($tpl === null) |
| 67 | - $this->triggerError(\'Load Templates : Resource "' . $resource . ':' . $identifier . '" was not found.\', E_USER_WARNING); |
|
| 67 | + $this->triggerError(\'Load Templates : Resource "' . $resource.':'.$identifier.'" was not found.\', E_USER_WARNING); |
|
| 68 | 68 | elseif ($tpl === false) |
| 69 | - $this->triggerError(\'Load Templates : Resource "' . $resource . '" does not support extends.\', E_USER_WARNING); |
|
| 70 | -if ($tpl->getUid() != "' . $tpl->getUid() . '") { ob_end_clean(); return false; }'; |
|
| 69 | + $this->triggerError(\'Load Templates : Resource "' . $resource.'" does not support extends.\', E_USER_WARNING); |
|
| 70 | +if ($tpl->getUid() != "' . $tpl->getUid().'") { ob_end_clean(); return false; }'; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | return $out; |
@@ -38,6 +38,6 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public static function compile(Compiler $compiler, $value) |
| 40 | 40 | { |
| 41 | - return 'nl2br((string) ' . $value . ')'; |
|
| 41 | + return 'nl2br((string) '.$value.')'; |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | \ No newline at end of file |