Ferreteria/v0.6/clade/Sys/Events/InputReq/Settable: Difference between revisions
< Ferreteria | v0.6 | clade | Sys | Events
Jump to navigation
Jump to search
(Created page with "{{fmt/title|clade: <code>Sys/Events/InputReq/Settable</code>}} At runtime, this gets: * the keyname from {{fmt/php/inline|$this->NameOfInput()}} * the value from {{fmt/php/inline|$this->OAKeptInput()->GetIt(}}{{fmt/arg|keyname}}<code>)</code> -- which doesn't make sense... * and then calls {{fmt/php/inline|$this->OAKeptInput()->SetIt($sVal,$sName)}} to retain the received value in the Kept values. I think maybe step 2 is supposed to be $this->OAThisInput() or similar...") |
No edit summary |
||
| Line 1: | Line 1: | ||
{{fmt/title|clade: <code>Sys/Events/InputReq/Settable</code>}} | {{fmt/title|clade: <code>Sys/Events/InputReq/Settable</code>}} | ||
==This Is No Longer Correct (OAKeptInput() removed)== | |||
At runtime, this gets: | At runtime, this gets: | ||
* the keyname from {{fmt/php/inline|$this->NameOfInput()}} | * the keyname from {{fmt/php/inline|$this->NameOfInput()}} | ||
| Line 5: | Line 6: | ||
* and then calls {{fmt/php/inline|$this->OAKeptInput()->SetIt($sVal,$sName)}} to retain the received value in the Kept values. | * and then calls {{fmt/php/inline|$this->OAKeptInput()->SetIt($sVal,$sName)}} to retain the received value in the Kept values. | ||
I think maybe step 2 is supposed to be $this-> | I think maybe step 2 is supposed to be $this->OAUserInput() or similar... | ||
Revision as of 20:41, 8 August 2025
|
clade:
Sys/Events/InputReq/Settable |
This Is No Longer Correct (OAKeptInput() removed)
At runtime, this gets:
- the keyname from
$this->NameOfInput() - the value from
$this->OAKeptInput()->GetIt(<keyname>)-- which doesn't make sense... - and then calls
$this->OAKeptInput()->SetIt($sVal,$sName)to retain the received value in the Kept values.
I think maybe step 2 is supposed to be $this->OAUserInput() or similar...