Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend sendExtraUpdates() doc blocks #174

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/Compat/CompatController.php
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,11 @@ public function sendMultipartUpdate(BaseHtmlElement ...$additionalControls)
* Instruct the client to side-load additional updates
*
* If an item in the given array is indexed by an integer, its value will be used by the client to refresh
* the parent of the element identified by it. If indexed by a string, the client will use this index to
* identify a container (by id) and will use the value (a URL) to load content into it.
* the parent of the element identified by it. The value is expected to be a valid CSS selector such
* as `.foo`, `#foo`. If indexed by a string, the client will use this index to identify a container (by id) and
* will use the value (a URL) to load content into it. Since Icinga Web >= 2.12, the indices can be specified with
* or without the `#` indicator. If you require compatibility with older Icinga Web versions, you have to specify
* the indices (container ids) without the `#` char.
*
* @param array $updates
*
Expand Down
Loading