Futilities/v0.6/clade/Sys/dba/InReq: Difference between revisions
< Futilities | v0.6 | clade | Sys | dba
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
{{page/clade}} | {{page/clade}} | ||
{| | {| style="border: 1px solid black; float: left;" | ||
|- | |- | ||
| align=right | | | align=right | | ||
| Line 17: | Line 17: | ||
→ {{l/ver/clade|Sys\Events\InputRq|Value}} | → {{l/ver/clade|Sys\Events\InputRq|Value}} | ||
|} | |} | ||
==Purpose== | |||
Each object encapsulates a given input (request) term (its name, type, and value(s) if any). | |||
==Doing Stuff== | |||
* To access input arguments, get an appropriate {{l/ver/clade|Sys\dba|InRqData|pfx=c}} object: | |||
** {{fmt/php/inline|$this->OAThisInput()}} returns the values for ''just the current request term'' (used in e.g. Describe()) | |||
** {{fmt/php/inline|static::OAKeptInput()}} returns the ''latest'' set values across all terms (used for doing actions) | |||
Revision as of 13:47, 31 July 2025
| → InReq |
→ DoExport |
Purpose
Each object encapsulates a given input (request) term (its name, type, and value(s) if any).
Doing Stuff
- To access input arguments, get an appropriate cInRqData object:
$this->OAThisInput()returns the values for just the current request term (used in e.g. Describe())static::OAKeptInput()returns the latest set values across all terms (used for doing actions)