@@ -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> |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | public function sayHello(bool $isCaps, bool $bNotify = true) |
| 11 | 11 | { |
| 12 | 12 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 13 | - if(($bNotify)) |
|
| 13 | + if (($bNotify)) |
|
| 14 | 14 | { |
| 15 | 15 | // $this->response->confirmCommands(2, 'Skip text assignement?'); |
| 16 | 16 | $this->response->assign('div2', 'innerHTML', $text); |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | public function setColor(string $sColor, bool $bNotify = true) |
| 28 | 28 | { |
| 29 | - if(($bNotify)) |
|
| 29 | + if (($bNotify)) |
|
| 30 | 30 | { |
| 31 | 31 | // $this->response->confirmCommands(1, 'Skip color assignement?'); |
| 32 | 32 | $this->response->assign('div2', 'style.color', $sColor); |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | $text = $isCaps ? 'HELLO WORLD!' : 'Hello World!'; |
| 8 | 8 | $xResponse = jaxon()->newResponse(); |
| 9 | 9 | $xResponse->assign('div2', 'innerHTML', $text); |
| 10 | - if(($bNotify)) |
|
| 10 | + if (($bNotify)) |
|
| 11 | 11 | $xResponse->dialog->success("div2 text is now $text"); |
| 12 | 12 | } |
| 13 | 13 | |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | { |
| 16 | 16 | $xResponse = jaxon()->newResponse(); |
| 17 | 17 | $xResponse->assign('div2', 'style.color', $sColor); |
| 18 | - if(($bNotify)) |
|
| 18 | + if (($bNotify)) |
|
| 19 | 19 | $xResponse->dialog->success("div2 color is now $sColor"); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | $menus = menu_entries(); |
| 6 | 6 | $example = menu_current(); |
| 7 | -if(isset($menus[$example])) |
|
| 7 | +if (isset($menus[$example])) |
|
| 8 | 8 | { |
| 9 | 9 | renderExample($example); |
| 10 | 10 | exit(); |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | $menus = menu_entries(); |
| 6 | 6 | $example = menu_current(); |
| 7 | -if(isset($menus[$example])) |
|
| 7 | +if (isset($menus[$example])) |
|
| 8 | 8 | { |
| 9 | 9 | require dirname(__DIR__) . "/examples/$example/code.php"; |
| 10 | 10 | |
@@ -43,16 +43,16 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | private function setScheme(array $aServerParams): void |
| 45 | 45 | { |
| 46 | - if(isset($this->aUrl['scheme'])) |
|
| 46 | + if (isset($this->aUrl['scheme'])) |
|
| 47 | 47 | { |
| 48 | 48 | return; |
| 49 | 49 | } |
| 50 | - if(isset($aServerParams['HTTP_SCHEME'])) |
|
| 50 | + if (isset($aServerParams['HTTP_SCHEME'])) |
|
| 51 | 51 | { |
| 52 | 52 | $this->aUrl['scheme'] = $aServerParams['HTTP_SCHEME']; |
| 53 | 53 | return; |
| 54 | 54 | } |
| 55 | - if((isset($aServerParams['HTTPS']) && strtolower($aServerParams['HTTPS']) === 'on') || |
|
| 55 | + if ((isset($aServerParams['HTTPS']) && strtolower($aServerParams['HTTPS']) === 'on') || |
|
| 56 | 56 | (isset($aServerParams['HTTP_X_FORWARDED_SSL']) && $aServerParams['HTTP_X_FORWARDED_SSL'] === 'on') || |
| 57 | 57 | (isset($aServerParams['HTTP_X_FORWARDED_PROTO']) && $aServerParams['HTTP_X_FORWARDED_PROTO'] === 'https')) |
| 58 | 58 | { |
@@ -72,11 +72,11 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | private function setHostFromServer(array $aServerParams, string $sKey): void |
| 74 | 74 | { |
| 75 | - if(isset($this->aUrl['host']) || empty($aServerParams[$sKey])) |
|
| 75 | + if (isset($this->aUrl['host']) || empty($aServerParams[$sKey])) |
|
| 76 | 76 | { |
| 77 | 77 | return; |
| 78 | 78 | } |
| 79 | - if(strpos($aServerParams[$sKey], ':') === false) |
|
| 79 | + if (strpos($aServerParams[$sKey], ':') === false) |
|
| 80 | 80 | { |
| 81 | 81 | $this->aUrl['host'] = $aServerParams[$sKey]; |
| 82 | 82 | return; |
@@ -95,11 +95,11 @@ discard block |
||
| 95 | 95 | $this->setHostFromServer($aServerParams, 'HTTP_X_FORWARDED_HOST'); |
| 96 | 96 | $this->setHostFromServer($aServerParams, 'HTTP_HOST'); |
| 97 | 97 | $this->setHostFromServer($aServerParams, 'SERVER_NAME'); |
| 98 | - if(empty($this->aUrl['host'])) |
|
| 98 | + if (empty($this->aUrl['host'])) |
|
| 99 | 99 | { |
| 100 | 100 | throw new UriException(); |
| 101 | 101 | } |
| 102 | - if(empty($this->aUrl['port']) && isset($aServerParams['SERVER_PORT'])) |
|
| 102 | + if (empty($this->aUrl['port']) && isset($aServerParams['SERVER_PORT'])) |
|
| 103 | 103 | { |
| 104 | 104 | $this->aUrl['port'] = $aServerParams['SERVER_PORT']; |
| 105 | 105 | } |
@@ -112,16 +112,16 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | private function setPath(array $aServerParams): void |
| 114 | 114 | { |
| 115 | - if(isset($this->aUrl['path']) && strlen(basename($this->aUrl['path'])) === 0) |
|
| 115 | + if (isset($this->aUrl['path']) && strlen(basename($this->aUrl['path'])) === 0) |
|
| 116 | 116 | { |
| 117 | 117 | unset($this->aUrl['path']); |
| 118 | 118 | } |
| 119 | - if(isset($this->aUrl['path'])) |
|
| 119 | + if (isset($this->aUrl['path'])) |
|
| 120 | 120 | { |
| 121 | 121 | return; |
| 122 | 122 | } |
| 123 | 123 | $aPath = parse_url($aServerParams['PATH_INFO'] ?? ($aServerParams['PHP_SELF'] ?? '')); |
| 124 | - if(isset($aPath['path'])) |
|
| 124 | + if (isset($aPath['path'])) |
|
| 125 | 125 | { |
| 126 | 126 | $this->aUrl['path'] = $aPath['path']; |
| 127 | 127 | } |
@@ -140,12 +140,12 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | private function getUser(): string |
| 142 | 142 | { |
| 143 | - if(empty($this->aUrl['user'])) |
|
| 143 | + if (empty($this->aUrl['user'])) |
|
| 144 | 144 | { |
| 145 | 145 | return ''; |
| 146 | 146 | } |
| 147 | 147 | $sUrl = $this->aUrl['user']; |
| 148 | - if(isset($this->aUrl['pass'])) |
|
| 148 | + if (isset($this->aUrl['pass'])) |
|
| 149 | 149 | { |
| 150 | 150 | $sUrl .= ':' . $this->aUrl['pass']; |
| 151 | 151 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | private function getPort(): string |
| 159 | 159 | { |
| 160 | - if(isset($this->aUrl['port']) && |
|
| 160 | + if (isset($this->aUrl['port']) && |
|
| 161 | 161 | (($this->aUrl['scheme'] === 'http' && $this->aUrl['port'] != 80) || |
| 162 | 162 | ($this->aUrl['scheme'] === 'https' && $this->aUrl['port'] != 443))) |
| 163 | 163 | { |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | */ |
| 174 | 174 | private function setQuery(array $aServerParams): void |
| 175 | 175 | { |
| 176 | - if(empty($this->aUrl['query'])) |
|
| 176 | + if (empty($this->aUrl['query'])) |
|
| 177 | 177 | { |
| 178 | 178 | $this->aUrl['query'] = $aServerParams['QUERY_STRING'] ?? ''; |
| 179 | 179 | } |
@@ -184,19 +184,19 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | private function getQuery(): string |
| 186 | 186 | { |
| 187 | - if(empty($this->aUrl['query'])) |
|
| 187 | + if (empty($this->aUrl['query'])) |
|
| 188 | 188 | { |
| 189 | 189 | return ''; |
| 190 | 190 | } |
| 191 | 191 | $aQueries = explode('&', $this->aUrl['query']); |
| 192 | - foreach($aQueries as $sKey => $sQuery) |
|
| 192 | + foreach ($aQueries as $sKey => $sQuery) |
|
| 193 | 193 | { |
| 194 | - if(substr($sQuery, 0, 11) === 'jxnGenerate') |
|
| 194 | + if (substr($sQuery, 0, 11) === 'jxnGenerate') |
|
| 195 | 195 | { |
| 196 | 196 | unset($aQueries[$sKey]); |
| 197 | 197 | } |
| 198 | 198 | } |
| 199 | - if(empty($aQueries)) |
|
| 199 | + if (empty($aQueries)) |
|
| 200 | 200 | { |
| 201 | 201 | return ''; |
| 202 | 202 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | { |
| 216 | 216 | $this->aUrl = []; |
| 217 | 217 | // Try to get the request URL |
| 218 | - if(isset($aServerParams['REQUEST_URI'])) |
|
| 218 | + if (isset($aServerParams['REQUEST_URI'])) |
|
| 219 | 219 | { |
| 220 | 220 | $this->aUrl = parse_url($aServerParams['REQUEST_URI']); |
| 221 | 221 | } |
@@ -255,17 +255,17 @@ discard block |
||
| 255 | 255 | { |
| 256 | 256 | $aQueryParts = []; |
| 257 | 257 | parse_str($sQueryPart, $aQueryParts); |
| 258 | - if(empty($aQueryParts)) |
|
| 258 | + if (empty($aQueryParts)) |
|
| 259 | 259 | { |
| 260 | 260 | // Couldn't break up the query, but there's one there. |
| 261 | 261 | // Possibly "http://url/page.html?query1234" type of query? |
| 262 | 262 | // Try to get data from the server environment var. |
| 263 | 263 | parse_str($aServerParams['QUERY_STRING'] ?? '', $aQueryParts); |
| 264 | 264 | } |
| 265 | - if(($aQueryParts)) |
|
| 265 | + if (($aQueryParts)) |
|
| 266 | 266 | { |
| 267 | 267 | $aNewQueryParts = []; |
| 268 | - foreach($aQueryParts as $sKey => $sValue) |
|
| 268 | + foreach ($aQueryParts as $sKey => $sValue) |
|
| 269 | 269 | { |
| 270 | 270 | $aNewQueryParts[] = $this->makeQueryPart($sQueryPart, $sKey, $sValue); |
| 271 | 271 | } |
@@ -288,13 +288,13 @@ discard block |
||
| 288 | 288 | // Can't just use parse_url() cos we could be dealing with a relative URL which parse_url() can't deal with. |
| 289 | 289 | $sURL = trim($sURL); |
| 290 | 290 | $nQueryStart = strpos($sURL, '?', strrpos($sURL, '/')); |
| 291 | - if($nQueryStart === false) |
|
| 291 | + if ($nQueryStart === false) |
|
| 292 | 292 | { |
| 293 | 293 | return $sURL; |
| 294 | 294 | } |
| 295 | 295 | $nQueryStart++; |
| 296 | 296 | $nQueryEnd = strpos($sURL, '#', $nQueryStart); |
| 297 | - if($nQueryEnd === false) |
|
| 297 | + if ($nQueryEnd === false) |
|
| 298 | 298 | { |
| 299 | 299 | $nQueryEnd = strlen($sURL); |
| 300 | 300 | } |