@@ -26,56 +26,56 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | class ScriptPlugin extends AbstractResponsePlugin |
| 28 | 28 | { |
| 29 | - /** |
|
| 29 | +/** |
|
| 30 | 30 | * @const The plugin name |
| 31 | 31 | */ |
| 32 | - public const NAME = 'script'; |
|
| 32 | +public const NAME = 'script'; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 34 | +/** |
|
| 35 | 35 | * The class constructor |
| 36 | 36 | * |
| 37 | 37 | * @param CallFactory $xFactory |
| 38 | 38 | */ |
| 39 | - public function __construct(private CallFactory $xFactory) |
|
| 40 | - {} |
|
| 39 | +public function __construct(private CallFactory $xFactory) |
|
| 40 | +{} |
|
| 41 | 41 | |
| 42 | - /** |
|
| 42 | +/** |
|
| 43 | 43 | * @return Closure |
| 44 | 44 | */ |
| 45 | - private function getCallback(): Closure |
|
| 46 | - { |
|
| 47 | - // The closure needs to capture the response object the script plugin is called with. |
|
| 48 | - $xResponse = $this->response(); |
|
| 49 | - return function(JsExpr $xJsExpr) use($xResponse) { |
|
| 50 | - // Add the newly created expression to the response |
|
| 51 | - $aOptions = [ |
|
| 52 | - 'expr' => $xJsExpr, |
|
| 53 | - 'context' => is_a($xResponse, NodeResponse::class) ? |
|
| 54 | - ['component' => true] : [], |
|
| 55 | - ]; |
|
| 56 | - $xResponse->addCommand('script.exec.expr', $aOptions) |
|
| 57 | - ->setOption('plugin', $this->getName()); |
|
| 58 | - }; |
|
| 59 | - } |
|
| 45 | +private function getCallback(): Closure |
|
| 46 | +{ |
|
| 47 | +// The closure needs to capture the response object the script plugin is called with. |
|
| 48 | +$xResponse = $this->response(); |
|
| 49 | +return function(JsExpr $xJsExpr) use($xResponse) { |
|
| 50 | +// Add the newly created expression to the response |
|
| 51 | +$aOptions = [ |
|
| 52 | + 'expr' => $xJsExpr, |
|
| 53 | + 'context' => is_a($xResponse, NodeResponse::class) ? |
|
| 54 | + ['component' => true] : [], |
|
| 55 | +]; |
|
| 56 | +$xResponse->addCommand('script.exec.expr', $aOptions) |
|
| 57 | + ->setOption('plugin', $this->getName()); |
|
| 58 | +}; |
|
| 59 | +} |
|
| 60 | 60 | |
| 61 | - /** |
|
| 61 | +/** |
|
| 62 | 62 | * @inheritDoc |
| 63 | 63 | */ |
| 64 | - public function getName(): string |
|
| 65 | - { |
|
| 66 | - return self::NAME; |
|
| 67 | - } |
|
| 64 | +public function getName(): string |
|
| 65 | +{ |
|
| 66 | +return self::NAME; |
|
| 67 | +} |
|
| 68 | 68 | |
| 69 | - /** |
|
| 69 | +/** |
|
| 70 | 70 | * @inheritDoc |
| 71 | 71 | */ |
| 72 | - public function getHash(): string |
|
| 73 | - { |
|
| 74 | - // Use the version number as hash |
|
| 75 | - return '5.0.0'; |
|
| 76 | - } |
|
| 72 | +public function getHash(): string |
|
| 73 | +{ |
|
| 74 | +// Use the version number as hash |
|
| 75 | +return '5.0.0'; |
|
| 76 | +} |
|
| 77 | 77 | |
| 78 | - /** |
|
| 78 | +/** |
|
| 79 | 79 | * Create a JQuery selector expression, and link it to the current response. |
| 80 | 80 | * |
| 81 | 81 | * @param string $sPath The jQuery selector path |
@@ -83,32 +83,32 @@ discard block |
||
| 83 | 83 | * |
| 84 | 84 | * @return JqSelectorCall |
| 85 | 85 | */ |
| 86 | - public function jq(string $sPath = '', $xContext = null): JqSelectorCall |
|
| 87 | - { |
|
| 88 | - return $this->xFactory->jq($sPath, $xContext, $this->getCallback()); |
|
| 89 | - } |
|
| 86 | +public function jq(string $sPath = '', $xContext = null): JqSelectorCall |
|
| 87 | +{ |
|
| 88 | +return $this->xFactory->jq($sPath, $xContext, $this->getCallback()); |
|
| 89 | +} |
|
| 90 | 90 | |
| 91 | - /** |
|
| 91 | +/** |
|
| 92 | 92 | * Create a Javascript object expression, and link it to the current response. |
| 93 | 93 | * |
| 94 | 94 | * @param string $sObject |
| 95 | 95 | * |
| 96 | 96 | * @return JsObjectCall |
| 97 | 97 | */ |
| 98 | - public function jo(string $sObject = ''): JsObjectCall |
|
| 99 | - { |
|
| 100 | - return $this->xFactory->jo($sObject, $this->getCallback()); |
|
| 101 | - } |
|
| 98 | +public function jo(string $sObject = ''): JsObjectCall |
|
| 99 | +{ |
|
| 100 | +return $this->xFactory->jo($sObject, $this->getCallback()); |
|
| 101 | +} |
|
| 102 | 102 | |
| 103 | - /** |
|
| 103 | +/** |
|
| 104 | 104 | * Create a Javascript element selector expression, and link it to the current response. |
| 105 | 105 | * |
| 106 | 106 | * @param string $sElementId |
| 107 | 107 | * |
| 108 | 108 | * @return JsSelectorCall |
| 109 | 109 | */ |
| 110 | - public function je(string $sElementId = ''): JsSelectorCall |
|
| 111 | - { |
|
| 112 | - return $this->xFactory->je($sElementId, $this->getCallback()); |
|
| 113 | - } |
|
| 110 | +public function je(string $sElementId = ''): JsSelectorCall |
|
| 111 | +{ |
|
| 112 | +return $this->xFactory->je($sElementId, $this->getCallback()); |
|
| 113 | +} |
|
| 114 | 114 | } |
@@ -24,107 +24,107 @@ |
||
| 24 | 24 | |
| 25 | 25 | class DialogPlugin implements PluginInterface, ResponsePluginInterface, ModalInterface, AlertInterface |
| 26 | 26 | { |
| 27 | - use ResponsePluginTrait; |
|
| 27 | +use ResponsePluginTrait; |
|
| 28 | 28 | |
| 29 | - /** |
|
| 29 | +/** |
|
| 30 | 30 | * @const The plugin name |
| 31 | 31 | */ |
| 32 | - public const NAME = 'dialog'; |
|
| 32 | +public const NAME = 'dialog'; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 34 | +/** |
|
| 35 | 35 | * The constructor |
| 36 | 36 | * |
| 37 | 37 | * @param DialogCommand $xDialogCommand |
| 38 | 38 | */ |
| 39 | - public function __construct(private DialogCommand $xDialogCommand) |
|
| 40 | - {} |
|
| 39 | +public function __construct(private DialogCommand $xDialogCommand) |
|
| 40 | +{} |
|
| 41 | 41 | |
| 42 | - /** |
|
| 42 | +/** |
|
| 43 | 43 | * @inheritDoc |
| 44 | 44 | */ |
| 45 | - public function getName(): string |
|
| 46 | - { |
|
| 47 | - return self::NAME; |
|
| 48 | - } |
|
| 45 | +public function getName(): string |
|
| 46 | +{ |
|
| 47 | +return self::NAME; |
|
| 48 | +} |
|
| 49 | 49 | |
| 50 | - /** |
|
| 50 | +/** |
|
| 51 | 51 | * Initialize the plugin |
| 52 | 52 | * |
| 53 | 53 | * @return void |
| 54 | 54 | */ |
| 55 | - protected function init(): void |
|
| 56 | - {} |
|
| 55 | +protected function init(): void |
|
| 56 | +{} |
|
| 57 | 57 | |
| 58 | - /** |
|
| 58 | +/** |
|
| 59 | 59 | * Set the library to use for the next call. |
| 60 | 60 | * |
| 61 | 61 | * @param string $sLibrary The name of the library |
| 62 | 62 | * |
| 63 | 63 | * @return DialogPlugin |
| 64 | 64 | */ |
| 65 | - public function with(string $sLibrary): DialogPlugin |
|
| 66 | - { |
|
| 67 | - $this->xDialogCommand->library($sLibrary); |
|
| 68 | - return $this; |
|
| 69 | - } |
|
| 65 | +public function with(string $sLibrary): DialogPlugin |
|
| 66 | +{ |
|
| 67 | +$this->xDialogCommand->library($sLibrary); |
|
| 68 | +return $this; |
|
| 69 | +} |
|
| 70 | 70 | |
| 71 | - /** |
|
| 71 | +/** |
|
| 72 | 72 | * @inheritDoc |
| 73 | 73 | */ |
| 74 | - public function show(string $sTitle, string $sContent, array $aButtons = [], array $aOptions = []): void |
|
| 75 | - { |
|
| 76 | - // Show the modal dialog |
|
| 77 | - $this->addCommand('dialog.modal.show', |
|
| 78 | - $this->xDialogCommand->show($sTitle, $sContent, $aButtons, $aOptions)); |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - /** |
|
| 74 | +public function show(string $sTitle, string $sContent, array $aButtons = [], array $aOptions = []): void |
|
| 75 | +{ |
|
| 76 | +// Show the modal dialog |
|
| 77 | +$this->addCommand('dialog.modal.show', |
|
| 78 | +$this->xDialogCommand->show($sTitle, $sContent, $aButtons, $aOptions)); |
|
| 79 | +} |
|
| 80 | + |
|
| 81 | +/** |
|
| 82 | 82 | * @inheritDoc |
| 83 | 83 | */ |
| 84 | - public function hide(): void |
|
| 85 | - { |
|
| 86 | - // Hide the modal dialog |
|
| 87 | - $this->addCommand('dialog.modal.hide', $this->xDialogCommand->hide()); |
|
| 88 | - } |
|
| 84 | +public function hide(): void |
|
| 85 | +{ |
|
| 86 | +// Hide the modal dialog |
|
| 87 | +$this->addCommand('dialog.modal.hide', $this->xDialogCommand->hide()); |
|
| 88 | +} |
|
| 89 | 89 | |
| 90 | - /** |
|
| 90 | +/** |
|
| 91 | 91 | * @inheritDoc |
| 92 | 92 | */ |
| 93 | - public function title(string $sTitle): AlertInterface |
|
| 94 | - { |
|
| 95 | - $this->xDialogCommand->title($sTitle); |
|
| 96 | - return $this; |
|
| 97 | - } |
|
| 93 | +public function title(string $sTitle): AlertInterface |
|
| 94 | +{ |
|
| 95 | +$this->xDialogCommand->title($sTitle); |
|
| 96 | +return $this; |
|
| 97 | +} |
|
| 98 | 98 | |
| 99 | - /** |
|
| 99 | +/** |
|
| 100 | 100 | * @inheritDoc |
| 101 | 101 | */ |
| 102 | - public function success(string $sMessage, ...$aArgs): void |
|
| 103 | - { |
|
| 104 | - $this->addCommand('dialog.alert.show', $this->xDialogCommand->success($sMessage, $aArgs)); |
|
| 105 | - } |
|
| 102 | +public function success(string $sMessage, ...$aArgs): void |
|
| 103 | +{ |
|
| 104 | +$this->addCommand('dialog.alert.show', $this->xDialogCommand->success($sMessage, $aArgs)); |
|
| 105 | +} |
|
| 106 | 106 | |
| 107 | - /** |
|
| 107 | +/** |
|
| 108 | 108 | * @inheritDoc |
| 109 | 109 | */ |
| 110 | - public function info(string $sMessage, ...$aArgs): void |
|
| 111 | - { |
|
| 112 | - $this->addCommand('dialog.alert.show', $this->xDialogCommand->info($sMessage, $aArgs)); |
|
| 113 | - } |
|
| 110 | +public function info(string $sMessage, ...$aArgs): void |
|
| 111 | +{ |
|
| 112 | +$this->addCommand('dialog.alert.show', $this->xDialogCommand->info($sMessage, $aArgs)); |
|
| 113 | +} |
|
| 114 | 114 | |
| 115 | - /** |
|
| 115 | +/** |
|
| 116 | 116 | * @inheritDoc |
| 117 | 117 | */ |
| 118 | - public function warning(string $sMessage, ...$aArgs): void |
|
| 119 | - { |
|
| 120 | - $this->addCommand('dialog.alert.show', $this->xDialogCommand->warning($sMessage, $aArgs)); |
|
| 121 | - } |
|
| 118 | +public function warning(string $sMessage, ...$aArgs): void |
|
| 119 | +{ |
|
| 120 | +$this->addCommand('dialog.alert.show', $this->xDialogCommand->warning($sMessage, $aArgs)); |
|
| 121 | +} |
|
| 122 | 122 | |
| 123 | - /** |
|
| 123 | +/** |
|
| 124 | 124 | * @inheritDoc |
| 125 | 125 | */ |
| 126 | - public function error(string $sMessage, ...$aArgs): void |
|
| 127 | - { |
|
| 128 | - $this->addCommand('dialog.alert.show', $this->xDialogCommand->error($sMessage, $aArgs)); |
|
| 129 | - } |
|
| 126 | +public function error(string $sMessage, ...$aArgs): void |
|
| 127 | +{ |
|
| 128 | +$this->addCommand('dialog.alert.show', $this->xDialogCommand->error($sMessage, $aArgs)); |
|
| 129 | +} |
|
| 130 | 130 | } |
@@ -18,43 +18,43 @@ |
||
| 18 | 18 | |
| 19 | 19 | abstract class AbstractCodeGenerator implements CodeGeneratorInterface |
| 20 | 20 | { |
| 21 | - /** |
|
| 21 | +/** |
|
| 22 | 22 | * @inheritDoc |
| 23 | 23 | */ |
| 24 | - public function getHash(): string |
|
| 25 | - { |
|
| 26 | - return ''; |
|
| 27 | - } |
|
| 24 | +public function getHash(): string |
|
| 25 | +{ |
|
| 26 | +return ''; |
|
| 27 | +} |
|
| 28 | 28 | |
| 29 | - /** |
|
| 29 | +/** |
|
| 30 | 30 | * @inheritDoc |
| 31 | 31 | */ |
| 32 | - public function getCss(): string |
|
| 33 | - { |
|
| 34 | - return ''; |
|
| 35 | - } |
|
| 32 | +public function getCss(): string |
|
| 33 | +{ |
|
| 34 | +return ''; |
|
| 35 | +} |
|
| 36 | 36 | |
| 37 | - /** |
|
| 37 | +/** |
|
| 38 | 38 | * @inheritDoc |
| 39 | 39 | */ |
| 40 | - public function getJs(): string |
|
| 41 | - { |
|
| 42 | - return ''; |
|
| 43 | - } |
|
| 40 | +public function getJs(): string |
|
| 41 | +{ |
|
| 42 | +return ''; |
|
| 43 | +} |
|
| 44 | 44 | |
| 45 | - /** |
|
| 45 | +/** |
|
| 46 | 46 | * @inheritDoc |
| 47 | 47 | */ |
| 48 | - public function getScript(): string |
|
| 49 | - { |
|
| 50 | - return ''; |
|
| 51 | - } |
|
| 48 | +public function getScript(): string |
|
| 49 | +{ |
|
| 50 | +return ''; |
|
| 51 | +} |
|
| 52 | 52 | |
| 53 | - /** |
|
| 53 | +/** |
|
| 54 | 54 | * @inheritDoc |
| 55 | 55 | */ |
| 56 | - public function getJsCode(): ?JsCode |
|
| 57 | - { |
|
| 58 | - return null; |
|
| 59 | - } |
|
| 56 | +public function getJsCode(): ?JsCode |
|
| 57 | +{ |
|
| 58 | +return null; |
|
| 59 | +} |
|
| 60 | 60 | } |
@@ -31,48 +31,48 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | trait ResponsePluginTrait |
| 33 | 33 | { |
| 34 | - /** |
|
| 34 | +/** |
|
| 35 | 35 | * The object used to build the response that will be sent to the client browser |
| 36 | 36 | * |
| 37 | 37 | * @var AbstractResponse |
| 38 | 38 | */ |
| 39 | - private $xResponse = null; |
|
| 39 | +private $xResponse = null; |
|
| 40 | 40 | |
| 41 | - /** |
|
| 41 | +/** |
|
| 42 | 42 | * Get a unique name to identify the plugin. |
| 43 | 43 | * |
| 44 | 44 | * @return string |
| 45 | 45 | */ |
| 46 | - abstract public function getName(): string; |
|
| 46 | +abstract public function getName(): string; |
|
| 47 | 47 | |
| 48 | - /** |
|
| 48 | +/** |
|
| 49 | 49 | * Initialize the plugin |
| 50 | 50 | * |
| 51 | 51 | * @return void |
| 52 | 52 | */ |
| 53 | - abstract protected function init(); |
|
| 53 | +abstract protected function init(); |
|
| 54 | 54 | |
| 55 | - /** |
|
| 55 | +/** |
|
| 56 | 56 | * @param AbstractResponse $xResponse The response |
| 57 | 57 | * |
| 58 | 58 | * @return static |
| 59 | 59 | */ |
| 60 | - public function initPlugin(AbstractResponse $xResponse): static |
|
| 61 | - { |
|
| 62 | - $this->xResponse = $xResponse; |
|
| 63 | - $this->init(); |
|
| 64 | - return $this; |
|
| 65 | - } |
|
| 60 | +public function initPlugin(AbstractResponse $xResponse): static |
|
| 61 | +{ |
|
| 62 | +$this->xResponse = $xResponse; |
|
| 63 | +$this->init(); |
|
| 64 | +return $this; |
|
| 65 | +} |
|
| 66 | 66 | |
| 67 | - /** |
|
| 67 | +/** |
|
| 68 | 68 | * @inheritDoc |
| 69 | 69 | */ |
| 70 | - public function response(): ?AbstractResponse |
|
| 71 | - { |
|
| 72 | - return $this->xResponse; |
|
| 73 | - } |
|
| 70 | +public function response(): ?AbstractResponse |
|
| 71 | +{ |
|
| 72 | +return $this->xResponse; |
|
| 73 | +} |
|
| 74 | 74 | |
| 75 | - /** |
|
| 75 | +/** |
|
| 76 | 76 | * Add a plugin command to the response |
| 77 | 77 | * |
| 78 | 78 | * @param string $sName The command name |
@@ -80,10 +80,10 @@ discard block |
||
| 80 | 80 | * |
| 81 | 81 | * @return Command |
| 82 | 82 | */ |
| 83 | - public function addCommand(string $sName, array|JsonSerializable $aOptions): Command |
|
| 84 | - { |
|
| 85 | - return $this->xResponse |
|
| 86 | - ->addCommand($sName, $aOptions) |
|
| 87 | - ->setOption('plugin', $this->getName()); |
|
| 88 | - } |
|
| 83 | +public function addCommand(string $sName, array|JsonSerializable $aOptions): Command |
|
| 84 | +{ |
|
| 85 | +return $this->xResponse |
|
| 86 | +->addCommand($sName, $aOptions) |
|
| 87 | +->setOption('plugin', $this->getName()); |
|
| 88 | +} |
|
| 89 | 89 | } |
@@ -17,46 +17,46 @@ |
||
| 17 | 17 | |
| 18 | 18 | interface CodeGeneratorInterface |
| 19 | 19 | { |
| 20 | - /** |
|
| 20 | +/** |
|
| 21 | 21 | * Get the value to be hashed |
| 22 | 22 | * |
| 23 | 23 | * @return string |
| 24 | 24 | */ |
| 25 | - public function getHash(): string; |
|
| 25 | +public function getHash(): string; |
|
| 26 | 26 | |
| 27 | - /** |
|
| 27 | +/** |
|
| 28 | 28 | * Get the HTML tags to include CSS code and files into the page |
| 29 | 29 | * |
| 30 | 30 | * The code must be enclosed in the appropriate HTML tags. |
| 31 | 31 | * |
| 32 | 32 | * @return string |
| 33 | 33 | */ |
| 34 | - public function getCss(): string; |
|
| 34 | +public function getCss(): string; |
|
| 35 | 35 | |
| 36 | - /** |
|
| 36 | +/** |
|
| 37 | 37 | * Get the HTML tags to include javascript code and files into the page |
| 38 | 38 | * |
| 39 | 39 | * The code must be enclosed in the appropriate HTML tags. |
| 40 | 40 | * |
| 41 | 41 | * @return string |
| 42 | 42 | */ |
| 43 | - public function getJs(): string; |
|
| 43 | +public function getJs(): string; |
|
| 44 | 44 | |
| 45 | - /** |
|
| 45 | +/** |
|
| 46 | 46 | * Get the javascript code to include into the page |
| 47 | 47 | * |
| 48 | 48 | * The code must NOT be enclosed in HTML tags. |
| 49 | 49 | * |
| 50 | 50 | * @return string |
| 51 | 51 | */ |
| 52 | - public function getScript(): string; |
|
| 52 | +public function getScript(): string; |
|
| 53 | 53 | |
| 54 | - /** |
|
| 54 | +/** |
|
| 55 | 55 | * Get the javascript codes to include into the page |
| 56 | 56 | * |
| 57 | 57 | * The code must NOT be enclosed in HTML tags. |
| 58 | 58 | * |
| 59 | 59 | * @return JsCode|null |
| 60 | 60 | */ |
| 61 | - public function getJsCode(): ?JsCode; |
|
| 61 | +public function getJsCode(): ?JsCode; |
|
| 62 | 62 | } |
@@ -85,8 +85,7 @@ discard block |
||
| 85 | 85 | if(is_string($xOptions)) |
| 86 | 86 | { |
| 87 | 87 | $xOptions = ['include' => $xOptions]; |
| 88 | - } |
|
| 89 | - elseif(!is_array($xOptions)) |
|
| 88 | + } elseif(!is_array($xOptions)) |
|
| 90 | 89 | { |
| 91 | 90 | throw new SetupException($this->xTranslator->trans('errors.objects.invalid-declaration')); |
| 92 | 91 | } |
@@ -261,8 +260,7 @@ discard block |
||
| 261 | 260 | |
| 262 | 261 | $sError = 'errors.objects.call'; |
| 263 | 262 | $xCallableObject->call($this->xTarget); |
| 264 | - } |
|
| 265 | - catch(ReflectionException|SetupException $e) |
|
| 263 | + } catch(ReflectionException|SetupException $e) |
|
| 266 | 264 | { |
| 267 | 265 | // Unable to execute the requested class or method |
| 268 | 266 | $this->throwException($e->getMessage(), $sError, $aErrorParams); |
@@ -82,15 +82,15 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | public function checkOptions(string $sCallable, $xOptions): array |
| 84 | 84 | { |
| 85 | - if(!$this->xValidator->validateClass(trim($sCallable))) |
|
| 85 | + if (!$this->xValidator->validateClass(trim($sCallable))) |
|
| 86 | 86 | { |
| 87 | 87 | throw new SetupException($this->xTranslator->trans('errors.objects.invalid-declaration')); |
| 88 | 88 | } |
| 89 | - if(is_string($xOptions)) |
|
| 89 | + if (is_string($xOptions)) |
|
| 90 | 90 | { |
| 91 | 91 | $xOptions = ['include' => $xOptions]; |
| 92 | 92 | } |
| 93 | - elseif(!is_array($xOptions)) |
|
| 93 | + elseif (!is_array($xOptions)) |
|
| 94 | 94 | { |
| 95 | 95 | throw new SetupException($this->xTranslator->trans('errors.objects.invalid-declaration')); |
| 96 | 96 | } |
@@ -135,15 +135,15 @@ discard block |
||
| 135 | 135 | private function addCallable(CallableObject $xCallableObject): void |
| 136 | 136 | { |
| 137 | 137 | $aCallableMethods = $xCallableObject->getCallableMethods(); |
| 138 | - if($xCallableObject->excluded() || count($aCallableMethods) === 0) |
|
| 138 | + if ($xCallableObject->excluded() || count($aCallableMethods) === 0) |
|
| 139 | 139 | { |
| 140 | 140 | return; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | $aCallableObject = &$this->aCallableObjects; |
| 144 | - foreach(explode('.', $xCallableObject->getJsName()) as $sName) |
|
| 144 | + foreach (explode('.', $xCallableObject->getJsName()) as $sName) |
|
| 145 | 145 | { |
| 146 | - if(!isset($aCallableObject['children'][$sName])) |
|
| 146 | + if (!isset($aCallableObject['children'][$sName])) |
|
| 147 | 147 | { |
| 148 | 148 | $aCallableObject['children'][$sName] = []; |
| 149 | 149 | } |
@@ -161,12 +161,11 @@ discard block |
||
| 161 | 161 | private function renderMethod(string $sIndent, array $aTemplateVars): string |
| 162 | 162 | { |
| 163 | 163 | $aOptions = []; |
| 164 | - foreach($aTemplateVars['aMethod']['options'] as $sKey => $sValue) |
|
| 164 | + foreach ($aTemplateVars['aMethod']['options'] as $sKey => $sValue) |
|
| 165 | 165 | { |
| 166 | 166 | $aOptions[] = "$sKey: $sValue"; |
| 167 | 167 | } |
| 168 | - $aTemplateVars['sArguments'] = count($aOptions) === 0 ? 'args' : |
|
| 169 | - 'args, { ' . implode(',', $aOptions) . ' }'; |
|
| 168 | + $aTemplateVars['sArguments'] = count($aOptions) === 0 ? 'args' : 'args, { ' . implode(',', $aOptions) . ' }'; |
|
| 170 | 169 | |
| 171 | 170 | return $sIndent . trim($this->xTemplateEngine |
| 172 | 171 | ->render('jaxon::callables/method.js', $aTemplateVars)); |
@@ -186,11 +185,10 @@ discard block |
||
| 186 | 185 | |
| 187 | 186 | $fMethodCallback = fn($aMethod) => $this->renderMethod($sIndent, |
| 188 | 187 | ['sJsClass' => $sJsClass, 'aMethod' => $aMethod]); |
| 189 | - $aMethods = !isset($aCallable['methods']) ? [] : |
|
| 190 | - array_map($fMethodCallback, $aCallable['methods']); |
|
| 188 | + $aMethods = !isset($aCallable['methods']) ? [] : array_map($fMethodCallback, $aCallable['methods']); |
|
| 191 | 189 | |
| 192 | 190 | $aChildren = []; |
| 193 | - foreach($aCallable['children'] ?? [] as $sName => $aChild) |
|
| 191 | + foreach ($aCallable['children'] ?? [] as $sName => $aChild) |
|
| 194 | 192 | { |
| 195 | 193 | $aChildren[] = $this->renderChild("$sName:", "$sJsClass.$sName", |
| 196 | 194 | $aChild, $nRepeat) . ','; |
@@ -231,13 +229,13 @@ discard block |
||
| 231 | 229 | $this->xRegistry->registerAllComponents(); |
| 232 | 230 | |
| 233 | 231 | $this->aCallableObjects = ['children' => []]; |
| 234 | - foreach($this->cdi->getCallableObjects() as $xCallableObject) |
|
| 232 | + foreach ($this->cdi->getCallableObjects() as $xCallableObject) |
|
| 235 | 233 | { |
| 236 | 234 | $this->addCallable($xCallableObject); |
| 237 | 235 | } |
| 238 | 236 | |
| 239 | 237 | $aScripts = []; |
| 240 | - foreach($this->aCallableObjects['children'] as $sJsClass => $aCallable) |
|
| 238 | + foreach ($this->aCallableObjects['children'] as $sJsClass => $aCallable) |
|
| 241 | 239 | { |
| 242 | 240 | $aScripts[] = $this->renderChild("{$this->sPrefix}$sJsClass =", |
| 243 | 241 | $sJsClass, $aCallable) . ';'; |
@@ -293,7 +291,7 @@ discard block |
||
| 293 | 291 | // Will be used to print a translated error message. |
| 294 | 292 | $aErrorParams = ['class' => $sClassName, 'method' => $sMethodName]; |
| 295 | 293 | |
| 296 | - if(!$this->xValidator->validateJsObject($sClassName) || |
|
| 294 | + if (!$this->xValidator->validateJsObject($sClassName) || |
|
| 297 | 295 | !$this->xValidator->validateMethod($sMethodName)) |
| 298 | 296 | { |
| 299 | 297 | // Unable to find the requested object or method |
@@ -307,7 +305,7 @@ discard block |
||
| 307 | 305 | /** @var CallableObject */ |
| 308 | 306 | $xCallableObject = $this->getCallable($sClassName); |
| 309 | 307 | |
| 310 | - if($xCallableObject->excluded($sMethodName)) |
|
| 308 | + if ($xCallableObject->excluded($sMethodName)) |
|
| 311 | 309 | { |
| 312 | 310 | // Unable to find the requested class or method |
| 313 | 311 | $this->throwException('', 'errors.objects.excluded', $aErrorParams); |
@@ -316,7 +314,7 @@ discard block |
||
| 316 | 314 | $sError = 'errors.objects.call'; |
| 317 | 315 | $xCallableObject->call($this->xTarget); |
| 318 | 316 | } |
| 319 | - catch(ReflectionException|SetupException $e) |
|
| 317 | + catch (ReflectionException|SetupException $e) |
|
| 320 | 318 | { |
| 321 | 319 | // Unable to execute the requested class or method |
| 322 | 320 | $this->throwException($e->getMessage(), $sError, $aErrorParams); |
@@ -20,50 +20,50 @@ |
||
| 20 | 20 | |
| 21 | 21 | class InputData |
| 22 | 22 | { |
| 23 | - /** |
|
| 23 | +/** |
|
| 24 | 24 | * @var ReflectionClass |
| 25 | 25 | */ |
| 26 | - private $xReflectionClass; |
|
| 26 | +private $xReflectionClass; |
|
| 27 | 27 | |
| 28 | - /** |
|
| 28 | +/** |
|
| 29 | 29 | * @param ReflectionClass|string $xClass |
| 30 | 30 | * @param array $aMethods |
| 31 | 31 | * @param array $aProperties |
| 32 | 32 | */ |
| 33 | - public function __construct(ReflectionClass|string $xClass, |
|
| 34 | - private array $aMethods = [], private array $aProperties = []) |
|
| 35 | - { |
|
| 36 | - $this->xReflectionClass = is_string($xClass) ? |
|
| 37 | - new ReflectionClass($xClass) : $xClass; |
|
| 38 | - } |
|
| 33 | +public function __construct(ReflectionClass|string $xClass, |
|
| 34 | +private array $aMethods = [], private array $aProperties = []) |
|
| 35 | +{ |
|
| 36 | +$this->xReflectionClass = is_string($xClass) ? |
|
| 37 | +new ReflectionClass($xClass) : $xClass; |
|
| 38 | +} |
|
| 39 | 39 | |
| 40 | - /** |
|
| 40 | +/** |
|
| 41 | 41 | * Get the reflection class |
| 42 | 42 | * |
| 43 | 43 | * @return ReflectionClass |
| 44 | 44 | */ |
| 45 | - public function getReflectionClass(): ReflectionClass |
|
| 46 | - { |
|
| 47 | - return $this->xReflectionClass; |
|
| 48 | - } |
|
| 45 | +public function getReflectionClass(): ReflectionClass |
|
| 46 | +{ |
|
| 47 | +return $this->xReflectionClass; |
|
| 48 | +} |
|
| 49 | 49 | |
| 50 | - /** |
|
| 50 | +/** |
|
| 51 | 51 | * The methods to check for metadata |
| 52 | 52 | * |
| 53 | 53 | * @return array |
| 54 | 54 | */ |
| 55 | - public function getMethods(): array |
|
| 56 | - { |
|
| 57 | - return $this->aMethods; |
|
| 58 | - } |
|
| 55 | +public function getMethods(): array |
|
| 56 | +{ |
|
| 57 | +return $this->aMethods; |
|
| 58 | +} |
|
| 59 | 59 | |
| 60 | - /** |
|
| 60 | +/** |
|
| 61 | 61 | * The properties to check for metadata |
| 62 | 62 | * |
| 63 | 63 | * @return array |
| 64 | 64 | */ |
| 65 | - public function getProperties(): array |
|
| 66 | - { |
|
| 67 | - return $this->aProperties; |
|
| 68 | - } |
|
| 65 | +public function getProperties(): array |
|
| 66 | +{ |
|
| 67 | +return $this->aProperties; |
|
| 68 | +} |
|
| 69 | 69 | } |
@@ -16,42 +16,42 @@ |
||
| 16 | 16 | |
| 17 | 17 | class ExcludeData extends AbstractData |
| 18 | 18 | { |
| 19 | - /** |
|
| 19 | +/** |
|
| 20 | 20 | * @var bool |
| 21 | 21 | */ |
| 22 | - private bool $bValue = true; |
|
| 22 | +private bool $bValue = true; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 24 | +/** |
|
| 25 | 25 | * @return string |
| 26 | 26 | */ |
| 27 | - public function getName(): string |
|
| 28 | - { |
|
| 29 | - return 'protected'; |
|
| 30 | - } |
|
| 27 | +public function getName(): string |
|
| 28 | +{ |
|
| 29 | +return 'protected'; |
|
| 30 | +} |
|
| 31 | 31 | |
| 32 | - /** |
|
| 32 | +/** |
|
| 33 | 33 | * @return mixed |
| 34 | 34 | */ |
| 35 | - public function getValue(): mixed |
|
| 36 | - { |
|
| 37 | - return $this->bValue; |
|
| 38 | - } |
|
| 35 | +public function getValue(): mixed |
|
| 36 | +{ |
|
| 37 | +return $this->bValue; |
|
| 38 | +} |
|
| 39 | 39 | |
| 40 | - /** |
|
| 40 | +/** |
|
| 41 | 41 | * @param bool $bValue |
| 42 | 42 | * |
| 43 | 43 | * @return void |
| 44 | 44 | */ |
| 45 | - public function setValue(bool $bValue): void |
|
| 46 | - { |
|
| 47 | - $this->bValue = $bValue; |
|
| 48 | - } |
|
| 45 | +public function setValue(bool $bValue): void |
|
| 46 | +{ |
|
| 47 | +$this->bValue = $bValue; |
|
| 48 | +} |
|
| 49 | 49 | |
| 50 | - /** |
|
| 50 | +/** |
|
| 51 | 51 | * @inheritDoc |
| 52 | 52 | */ |
| 53 | - public function encode(string $sVarName): array |
|
| 54 | - { |
|
| 55 | - return ["{$sVarName}->setValue(" . ($this->bValue ? 'true' : 'false') . ");"]; |
|
| 56 | - } |
|
| 53 | +public function encode(string $sVarName): array |
|
| 54 | +{ |
|
| 55 | +return ["{$sVarName}->setValue(" . ($this->bValue ? 'true' : 'false') . ");"]; |
|
| 56 | +} |
|
| 57 | 57 | } |
@@ -20,45 +20,45 @@ |
||
| 20 | 20 | |
| 21 | 21 | interface UploadHandlerInterface |
| 22 | 22 | { |
| 23 | - /** |
|
| 23 | +/** |
|
| 24 | 24 | * Set the uploaded file name sanitizer |
| 25 | 25 | * |
| 26 | 26 | * @param Closure $cSanitizer The closure |
| 27 | 27 | * |
| 28 | 28 | * @return void |
| 29 | 29 | */ |
| 30 | - public function sanitizer(Closure $cSanitizer); |
|
| 30 | +public function sanitizer(Closure $cSanitizer); |
|
| 31 | 31 | |
| 32 | - /** |
|
| 32 | +/** |
|
| 33 | 33 | * Get the uploaded files |
| 34 | 34 | * |
| 35 | 35 | * @return FileInterface[] |
| 36 | 36 | */ |
| 37 | - public function files(): array; |
|
| 37 | +public function files(): array; |
|
| 38 | 38 | |
| 39 | - /** |
|
| 39 | +/** |
|
| 40 | 40 | * Check if the current request contains uploaded files |
| 41 | 41 | * |
| 42 | 42 | * @param ServerRequestInterface $xRequest |
| 43 | 43 | * |
| 44 | 44 | * @return bool |
| 45 | 45 | */ |
| 46 | - public function canProcessRequest(ServerRequestInterface $xRequest): bool; |
|
| 46 | +public function canProcessRequest(ServerRequestInterface $xRequest): bool; |
|
| 47 | 47 | |
| 48 | - /** |
|
| 48 | +/** |
|
| 49 | 49 | * Process the uploaded files in the HTTP request |
| 50 | 50 | * |
| 51 | 51 | * @param ServerRequestInterface $xRequest |
| 52 | 52 | * |
| 53 | 53 | * @return bool |
| 54 | 54 | */ |
| 55 | - public function processRequest(ServerRequestInterface $xRequest): bool; |
|
| 55 | +public function processRequest(ServerRequestInterface $xRequest): bool; |
|
| 56 | 56 | |
| 57 | - /** |
|
| 57 | +/** |
|
| 58 | 58 | * @param string $sStorage |
| 59 | 59 | * @param Closure $cFactory |
| 60 | 60 | * |
| 61 | 61 | * @return void |
| 62 | 62 | */ |
| 63 | - public function registerStorageAdapter(string $sStorage, Closure $cFactory); |
|
| 63 | +public function registerStorageAdapter(string $sStorage, Closure $cFactory); |
|
| 64 | 64 | } |