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 20: | Line 20: | ||
Each object encapsulates a given input (request) term (its name, type, and value(s) if any). | Each object encapsulates a given input (request) term (its name, type, and value(s) if any). | ||
==Doing Stuff== | ==Doing Stuff== | ||
{| | |||
| | |||
* To access input arguments, get an appropriate {{l/ver/clade|Sys\dba|InRqData|pfx=c}} object: | * 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|$this->OAThisInput()}} returns the values for ''just the current request term'' (used in e.g. Describe()) (THAT WAS THE THEORY, NOT SURE THIS IS CORRECT) | ||
** {{fmt/php/inline|static::OAKeptInput()}} returns the ''latest'' set values across all terms (used for doing actions) | ** {{fmt/php/inline|static::OAKeptInput()}} returns the ''latest'' set values across all terms (used for doing actions) | ||
|} | |||
Revision as of 14:01, 31 July 2025
| → InReq |
→ DoExport |
Purpose
Each object encapsulates a given input (request) term (its name, type, and value(s) if any).
Doing Stuff
|