@@ -5,7 +5,7 @@ |
||
| 5 | 5 | <div class="col-12"> |
| 6 | 6 | <a href="/"><span class="badge bg-<?= $current === '' ? |
| 7 | 7 | 'primary' : 'secondary'; ?>">Home</span></a> |
| 8 | -<?php foreach(menu_entries() as $example => $page): ?> |
|
| 8 | +<?php foreach (menu_entries() as $example => $page): ?> |
|
| 9 | 9 | <a href="<?= menu_url($example) ?>"><span class="badge bg-<?php |
| 10 | 10 | echo $current === $example ? 'primary' : 'secondary'; ?>"><?php |
| 11 | 11 | echo $page['title'] ?></span></a> |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | </p> |
| 17 | 17 | </div> |
| 18 | 18 | </div> |
| 19 | -<?php foreach(menu_entries() as $example => $page): ?> |
|
| 19 | +<?php foreach (menu_entries() as $example => $page): ?> |
|
| 20 | 20 | <div class="row col-md-12"> |
| 21 | 21 | <div class="col-md-12"> |
| 22 | 22 | <h5 style="margin-top:15px;"><a href="<?= menu_url($example) ?>"><?= $page['title'] ?></a></h5> |
@@ -8,14 +8,14 @@ |
||
| 8 | 8 | { |
| 9 | 9 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 10 | 10 | $this->response->assign('div1', 'innerHTML', $text); |
| 11 | - if(($bNotify)) |
|
| 11 | + if (($bNotify)) |
|
| 12 | 12 | $this->response->dialog->success("div1 text is now $text"); |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | public function setColor(string $sColor, bool $bNotify = true) |
| 16 | 16 | { |
| 17 | 17 | $this->response->assign('div1', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 18 | + if (($bNotify)) |
|
| 19 | 19 | $this->response->dialog->success("div1 color is now $sColor"); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -8,14 +8,14 @@ |
||
| 8 | 8 | { |
| 9 | 9 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 10 | 10 | $this->response->assign('div2', 'innerHTML', $text); |
| 11 | - if(($bNotify)) |
|
| 11 | + if (($bNotify)) |
|
| 12 | 12 | $this->response->dialog->success("div2 text is now $text"); |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | 15 | public function setColor(string $sColor, bool $bNotify = true) |
| 16 | 16 | { |
| 17 | 17 | $this->response->assign('div2', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 18 | + if (($bNotify)) |
|
| 19 | 19 | $this->response->dialog->success("div2 color is now $sColor"); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -10,14 +10,14 @@ |
||
| 10 | 10 | $text = 'Hello World!'; |
| 11 | 11 | |
| 12 | 12 | $this->response->assign('div1', 'innerHTML', $text); |
| 13 | - if(($bNotify)) |
|
| 13 | + if (($bNotify)) |
|
| 14 | 14 | $this->response->dialog->success("div1 text is now $text"); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | public function setColor(string $sColor, bool $bNotify = true) |
| 18 | 18 | { |
| 19 | 19 | $this->response->assign('div1', 'style.color', $sColor); |
| 20 | - if(($bNotify)) |
|
| 20 | + if (($bNotify)) |
|
| 21 | 21 | $this->response->dialog->success("div1 color is now $sColor"); |
| 22 | 22 | } |
| 23 | 23 | |
@@ -10,14 +10,14 @@ |
||
| 10 | 10 | $text = 'Hello World!'; |
| 11 | 11 | |
| 12 | 12 | $this->response->assign('div2', 'innerHTML', $text); |
| 13 | - if(($bNotify)) |
|
| 13 | + if (($bNotify)) |
|
| 14 | 14 | $this->response->dialog->success("div2 text is now $text"); |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | public function setColor(string $sColor, bool $bNotify = true) |
| 18 | 18 | { |
| 19 | 19 | $this->response->assign('div2', 'style.color', $sColor); |
| 20 | - if(($bNotify)) |
|
| 20 | + if (($bNotify)) |
|
| 21 | 21 | $this->response->dialog->success("div2 color is now $sColor"); |
| 22 | 22 | } |
| 23 | 23 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | // Render the result component. |
| 39 | 39 | $this->cl(Result::class)->render(); |
| 40 | 40 | } |
| 41 | - catch(Exception $e) |
|
| 41 | + catch (Exception $e) |
|
| 42 | 42 | { |
| 43 | 43 | $this->alert()->title('Error!!!')->error($e->getMessage()); |
| 44 | 44 | } |
@@ -20,26 +20,26 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | public function calculate(string $operator, string $operandA, string $operandB): mixed |
| 22 | 22 | { |
| 23 | - if(!in_array($operator, $this->operators)) |
|
| 23 | + if (!in_array($operator, $this->operators)) |
|
| 24 | 24 | { |
| 25 | 25 | throw new Exception("$operator is not a valid operator."); |
| 26 | 26 | } |
| 27 | - if($operandA === '' || $operandB === '') |
|
| 27 | + if ($operandA === '' || $operandB === '') |
|
| 28 | 28 | { |
| 29 | 29 | throw new Exception("The operands must not be empty."); |
| 30 | 30 | } |
| 31 | - if(!is_numeric($operandA)) |
|
| 31 | + if (!is_numeric($operandA)) |
|
| 32 | 32 | { |
| 33 | 33 | throw new Exception("$operandA is not a valid operand."); |
| 34 | 34 | } |
| 35 | - if(!is_numeric($operandB)) |
|
| 35 | + if (!is_numeric($operandB)) |
|
| 36 | 36 | { |
| 37 | 37 | throw new Exception("$operandB is not a valid operand."); |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | $operandA = intval($operandA); |
| 41 | 41 | $operandB = intval($operandB); |
| 42 | - if($operator === 'division' && $operandB === 0) |
|
| 42 | + if ($operator === 'division' && $operandB === 0) |
|
| 43 | 43 | { |
| 44 | 44 | throw new Exception("Division by 0 is not allowed."); |
| 45 | 45 | } |
@@ -81,11 +81,11 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | <?php $this->block('content') ?> |
| 83 | 83 | <div class="row"> |
| 84 | -<?php foreach($aLibraries as $id => $lib): ?> |
|
| 84 | +<?php foreach ($aLibraries as $id => $lib): ?> |
|
| 85 | 85 | <div class="col-md-12"> |
| 86 | 86 | <?= $lib['name'] ?> |
| 87 | 87 | </div> |
| 88 | -<?php if(is_subclass_of($lib['class'], AlertInterface::class)): ?> |
|
| 88 | +<?php if (is_subclass_of($lib['class'], AlertInterface::class)): ?> |
|
| 89 | 89 | <div class="col-md-12" style="padding-bottom: 15px;"> |
| 90 | 90 | <button type="button" class="btn btn-primary" <?php |
| 91 | 91 | echo attr()->click(rq(HelloWorld::class)->showSuccess($id, $lib['name'])) ?>>Success</button> |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | echo attr()->click(rq(HelloWorld::class)->showError($id, $lib['name'])) ?>>Error</button> |
| 98 | 98 | </div> |
| 99 | 99 | <?php endif ?> |
| 100 | -<?php if(is_subclass_of($lib['class'], ConfirmInterface::class)): ?> |
|
| 100 | +<?php if (is_subclass_of($lib['class'], ConfirmInterface::class)): ?> |
|
| 101 | 101 | <div class="col-md-12" style="padding-bottom: 15px;"> |
| 102 | 102 | <button type="button" class="btn btn-primary" |
| 103 | 103 | onclick="jaxon.confirm('<?= $id ?>', { title: 'Confirm', text: 'Really?' }, { |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | })" >Confirm</button> |
| 107 | 107 | </div> |
| 108 | 108 | <?php endif ?> |
| 109 | -<?php if(is_subclass_of($lib['class'], ModalInterface::class)): ?> |
|
| 109 | +<?php if (is_subclass_of($lib['class'], ModalInterface::class)): ?> |
|
| 110 | 110 | <div class="col-md-12" style="padding-bottom: 15px;"> |
| 111 | 111 | <button type="button" class="btn btn-primary" <?php |
| 112 | 112 | echo attr()->click(rq(HelloWorld::class)->showDialog($id, $lib['name'])) ?>>Modal</button> |