@@ -95,11 +95,9 @@ |
||
95 | 95 | |
96 | 96 | try { |
97 | 97 | $parent = $compiler->getDwoo()->templateFactory($resource, $identifier, null, null, null, $curTpl); |
98 | - } |
|
99 | - catch (SecurityException $e) { |
|
98 | + } catch (SecurityException $e) { |
|
100 | 99 | throw new CompilationException($compiler, 'Extends : Security restriction : ' . $e->getMessage()); |
101 | - } |
|
102 | - catch (Exception $e) { |
|
100 | + } catch (Exception $e) { |
|
103 | 101 | throw new CompilationException($compiler, 'Extends : ' . $e->getMessage()); |
104 | 102 | } |
105 | 103 |
@@ -64,8 +64,7 @@ |
||
64 | 64 | $compiler->findBlock('dynamic'); |
65 | 65 | |
66 | 66 | return $content; |
67 | - } |
|
68 | - catch (CompilationException $e) { |
|
67 | + } catch (CompilationException $e) { |
|
69 | 68 | } |
70 | 69 | $output = Compiler::PHP_OPEN . 'if($doCache) {' . "\n\t" . 'echo \'<dwoo:dynamic_\'.$dynamicId.\'>' . str_replace('\'', '\\\'', $content) . '</dwoo:dynamic_\'.$dynamicId.\'>\';' . "\n} else {\n\t"; |
71 | 70 | if (substr($content, 0, strlen(Compiler::PHP_OPEN)) == Compiler::PHP_OPEN) { |
@@ -66,11 +66,9 @@ |
||
66 | 66 | |
67 | 67 | try { |
68 | 68 | $include = $this->core->templateFactory($resource, $identifier, $cache_time, $cache_id, $compile_id); |
69 | - } |
|
70 | - catch (SecurityException $e) { |
|
69 | + } catch (SecurityException $e) { |
|
71 | 70 | $this->core->triggerError('Include : Security restriction : ' . $e->getMessage(), E_USER_WARNING); |
72 | - } |
|
73 | - catch (Exception $e) { |
|
71 | + } catch (Exception $e) { |
|
74 | 72 | $this->core->triggerError('Include : ' . $e->getMessage(), E_USER_WARNING); |
75 | 73 | } |
76 | 74 |
@@ -50,8 +50,7 @@ |
||
50 | 50 | if (!class_exists(Core::NAMESPACE_PLUGINS_BLOCKS . 'PluginIf')) { |
51 | 51 | try { |
52 | 52 | $compiler->getDwoo()->getLoader()->loadPlugin('if'); |
53 | - } |
|
54 | - catch (Exception $e) { |
|
53 | + } catch (Exception $e) { |
|
55 | 54 | throw new CompilationException($compiler, 'Tif: the if plugin is required to use Tif'); |
56 | 55 | } |
57 | 56 | } |
@@ -589,8 +589,7 @@ |
||
589 | 589 | if (!class_exists($class) && !function_exists($class)) { |
590 | 590 | try { |
591 | 591 | $this->getLoader()->loadPlugin($callback); |
592 | - } |
|
593 | - catch (Exception $e) { |
|
592 | + } catch (Exception $e) { |
|
594 | 593 | if (strstr($callback, self::NAMESPACE_PLUGINS_FILTERS)) { |
595 | 594 | throw new Exception( |
596 | 595 | 'Wrong filter name : ' . $callback . ', the "Filter" prefix should |
@@ -478,8 +478,7 @@ discard block |
||
478 | 478 | if (!class_exists($class) && !function_exists($class)) { |
479 | 479 | try { |
480 | 480 | $this->getDwoo()->getLoader()->loadPlugin($name); |
481 | - } |
|
482 | - catch (Exception $e) { |
|
481 | + } catch (Exception $e) { |
|
483 | 482 | throw new Exception('Processor ' . $name . ' could not be found in your plugin directories, please ensure it is in a file named ' . $name . '.php in the plugin directory'); |
484 | 483 | } |
485 | 484 | } |
@@ -1633,8 +1632,7 @@ discard block |
||
1633 | 1632 | // load if plugin |
1634 | 1633 | try { |
1635 | 1634 | $this->getPluginType('if'); |
1636 | - } |
|
1637 | - catch (Exception $e) { |
|
1635 | + } catch (Exception $e) { |
|
1638 | 1636 | throw new CompilationException($this, 'Assignments require the "if" plugin to be accessible'); |
1639 | 1637 | } |
1640 | 1638 | |
@@ -3449,8 +3447,7 @@ discard block |
||
3449 | 3447 | if ($pluginType === - 1) { |
3450 | 3448 | try { |
3451 | 3449 | $this->getDwoo()->getLoader()->loadPlugin('Plugin' . Core::toCamelCase($name)); |
3452 | - } |
|
3453 | - catch (Exception $e) { |
|
3450 | + } catch (Exception $e) { |
|
3454 | 3451 | if (isset($phpFunc)) { |
3455 | 3452 | $pluginType = Core::NATIVE_PLUGIN; |
3456 | 3453 | } elseif (is_object($this->getDwoo()->getPluginProxy()) && $this->getDwoo()->getPluginProxy()->handles($name)) { |