@@ -60,8 +60,7 @@ |
||
| 60 | 60 | try |
| 61 | 61 | { |
| 62 | 62 | $xDialog->registerLibrary($sClass, $sClass::NAME); |
| 63 | - } |
|
| 64 | - catch(SetupException $_){} |
|
| 63 | + } catch(SetupException $_){} |
|
| 65 | 64 | } |
| 66 | 65 | |
| 67 | 66 | return $xDialog; |
@@ -293,10 +293,12 @@ |
||
| 293 | 293 | $aLibraries = $this->xConfigManager->getAppOption('dialogs.lib.use', []); |
| 294 | 294 | foreach($aLibraries as $sLibraryName) |
| 295 | 295 | { |
| 296 | - if(isset($this->aLibraries[$sLibraryName])) // Make sure the library exists |
|
| 296 | + if(isset($this->aLibraries[$sLibraryName])) { |
|
| 297 | + // Make sure the library exists |
|
| 297 | 298 | { |
| 298 | 299 | $this->aLibraries[$sLibraryName]['used'] = true; |
| 299 | 300 | } |
| 301 | + } |
|
| 300 | 302 | } |
| 301 | 303 | } |
| 302 | 304 | |
@@ -91,8 +91,7 @@ |
||
| 91 | 91 | if(count($aPoint) === 2) |
| 92 | 92 | { |
| 93 | 93 | $this->point($aPoint[0], $aPoint[1]); |
| 94 | - } |
|
| 95 | - else if(count($aPoint) === 3) |
|
| 94 | + } else if(count($aPoint) === 3) |
|
| 96 | 95 | { |
| 97 | 96 | $this->point($aPoint[0], $aPoint[1], $aPoint[2]); |
| 98 | 97 | } |
@@ -8,15 +8,17 @@ |
||
| 8 | 8 | { |
| 9 | 9 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 10 | 10 | $this->response->assign('div1', 'innerHTML', $text); |
| 11 | - if(($bNotify)) |
|
| 12 | - $this->response->dialog->success("div1 text is now $text"); |
|
| 11 | + if(($bNotify)) { |
|
| 12 | + $this->response->dialog->success("div1 text is now $text"); |
|
| 13 | + } |
|
| 13 | 14 | } |
| 14 | 15 | |
| 15 | 16 | public function setColor(string $sColor, bool $bNotify = true) |
| 16 | 17 | { |
| 17 | 18 | $this->response->assign('div1', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 19 | - $this->response->dialog->success("div1 color is now $sColor"); |
|
| 19 | + if(($bNotify)) { |
|
| 20 | + $this->response->dialog->success("div1 color is now $sColor"); |
|
| 21 | + } |
|
| 20 | 22 | } |
| 21 | 23 | |
| 22 | 24 | public function showDialog() |
@@ -8,15 +8,17 @@ |
||
| 8 | 8 | { |
| 9 | 9 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 10 | 10 | $this->response->assign('div2', 'innerHTML', $text); |
| 11 | - if(($bNotify)) |
|
| 12 | - $this->response->dialog->success("div2 text is now $text"); |
|
| 11 | + if(($bNotify)) { |
|
| 12 | + $this->response->dialog->success("div2 text is now $text"); |
|
| 13 | + } |
|
| 13 | 14 | } |
| 14 | 15 | |
| 15 | 16 | public function setColor(string $sColor, bool $bNotify = true) |
| 16 | 17 | { |
| 17 | 18 | $this->response->assign('div2', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 19 | - $this->response->dialog->success("div2 color is now $sColor"); |
|
| 19 | + if(($bNotify)) { |
|
| 20 | + $this->response->dialog->success("div2 color is now $sColor"); |
|
| 21 | + } |
|
| 20 | 22 | } |
| 21 | 23 | |
| 22 | 24 | public function showDialog() |
@@ -4,21 +4,24 @@ |
||
| 4 | 4 | { |
| 5 | 5 | public function sayHello(bool $isCaps, bool $bNotify = true) |
| 6 | 6 | { |
| 7 | - if ($isCaps) |
|
| 8 | - $text = 'HELLO WORLD!'; |
|
| 9 | - else |
|
| 10 | - $text = 'Hello World!'; |
|
| 7 | + if ($isCaps) { |
|
| 8 | + $text = 'HELLO WORLD!'; |
|
| 9 | + } else { |
|
| 10 | + $text = 'Hello World!'; |
|
| 11 | + } |
|
| 11 | 12 | |
| 12 | 13 | $this->response->assign('div1', 'innerHTML', $text); |
| 13 | - if(($bNotify)) |
|
| 14 | - $this->response->dialog->success("div1 text is now $text"); |
|
| 14 | + if(($bNotify)) { |
|
| 15 | + $this->response->dialog->success("div1 text is now $text"); |
|
| 16 | + } |
|
| 15 | 17 | } |
| 16 | 18 | |
| 17 | 19 | public function setColor(string $sColor, bool $bNotify = true) |
| 18 | 20 | { |
| 19 | 21 | $this->response->assign('div1', 'style.color', $sColor); |
| 20 | - if(($bNotify)) |
|
| 21 | - $this->response->dialog->success("div1 color is now $sColor"); |
|
| 22 | + if(($bNotify)) { |
|
| 23 | + $this->response->dialog->success("div1 color is now $sColor"); |
|
| 24 | + } |
|
| 22 | 25 | } |
| 23 | 26 | |
| 24 | 27 | public function showDialog() |
@@ -4,21 +4,24 @@ |
||
| 4 | 4 | { |
| 5 | 5 | public function sayHello(bool $isCaps, bool $bNotify = true) |
| 6 | 6 | { |
| 7 | - if ($isCaps) |
|
| 8 | - $text = 'HELLO WORLD!'; |
|
| 9 | - else |
|
| 10 | - $text = 'Hello World!'; |
|
| 7 | + if ($isCaps) { |
|
| 8 | + $text = 'HELLO WORLD!'; |
|
| 9 | + } else { |
|
| 10 | + $text = 'Hello World!'; |
|
| 11 | + } |
|
| 11 | 12 | |
| 12 | 13 | $this->response->assign('div2', 'innerHTML', $text); |
| 13 | - if(($bNotify)) |
|
| 14 | - $this->response->dialog->success("div2 text is now $text"); |
|
| 14 | + if(($bNotify)) { |
|
| 15 | + $this->response->dialog->success("div2 text is now $text"); |
|
| 16 | + } |
|
| 15 | 17 | } |
| 16 | 18 | |
| 17 | 19 | public function setColor(string $sColor, bool $bNotify = true) |
| 18 | 20 | { |
| 19 | 21 | $this->response->assign('div2', 'style.color', $sColor); |
| 20 | - if(($bNotify)) |
|
| 21 | - $this->response->dialog->success("div2 color is now $sColor"); |
|
| 22 | + if(($bNotify)) { |
|
| 23 | + $this->response->dialog->success("div2 color is now $sColor"); |
|
| 24 | + } |
|
| 22 | 25 | } |
| 23 | 26 | |
| 24 | 27 | public function showDialog() |
@@ -37,8 +37,7 @@ |
||
| 37 | 37 | $this->stash()->set('calculator.result', $result); |
| 38 | 38 | // Render the result component. |
| 39 | 39 | $this->cl(Result::class)->render(); |
| 40 | - } |
|
| 41 | - catch(Exception $e) |
|
| 40 | + } catch(Exception $e) |
|
| 42 | 41 | { |
| 43 | 42 | $this->alert()->title('Error!!!')->error($e->getMessage()); |
| 44 | 43 | } |
@@ -16,8 +16,7 @@ discard block |
||
| 16 | 16 | $this->response->assign('div2', 'innerHTML', $text); |
| 17 | 17 | // $this->response->confirmCommands(1, 'Skip text notification?'); |
| 18 | 18 | $this->response->dialog->success("div2 text is now $text"); |
| 19 | - } |
|
| 20 | - else |
|
| 19 | + } else |
|
| 21 | 20 | { |
| 22 | 21 | // $this->response->confirmCommands(1, 'Skip text assignement?'); |
| 23 | 22 | $this->response->assign('div2', 'innerHTML', $text); |
@@ -32,8 +31,7 @@ discard block |
||
| 32 | 31 | $this->response->assign('div2', 'style.color', $sColor); |
| 33 | 32 | // $this->response->confirmCommands(1, 'Skip color assignement?'); |
| 34 | 33 | $this->response->dialog->success("div2 color is now $sColor"); |
| 35 | - } |
|
| 36 | - else |
|
| 34 | + } else |
|
| 37 | 35 | { |
| 38 | 36 | // $this->response->confirmCommands(1, 'Skip color assignement?'); |
| 39 | 37 | $this->response->assign('div2', 'style.color', $sColor); |