Ferreteria/v0.6/clade/Sys/Events/InputRq/@removed: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{fmt/title|Removed Code}} =={{fmt/date|2025|10|11}}== Commented out on {{fmt/date|2025|09|27}}: {{fmt/php/block|1=# /→2025-09-27 nopenopenope... protected function OAUserInput() : InDataIface { $oa = InDataClass::GlobalData(); #echo $this->ReflectThis()->Report(); #echo $oa->ReflectThis()->Report(); #return $oa->QryIt('data'); // a bit klugey? We're only storing this one array... return $oa; } //: }} =={{fmt/da...") |
(No difference)
|
Revision as of 22:25, 17 November 2025
|
Removed Code
|
2025-10-11
#
//* 2025-09-27 nopenopenope...
protected function OAUserInput() : InDataIface {
$oa = InDataClass::GlobalData();
#echo $this->ReflectThis()->Report();
#echo $oa->ReflectThis()->Report();
#return $oa->QryIt('data'); // a bit klugey? We're only storing this one array...
return $oa;
}
//*/
2025-09-14
#
// 2025-08-06 old version
$osPair = $oItem->Attrs()->QryIt('valdef');
if ($osPair->HasIt()) {
$sVal = $osPair->GetIt()->Value();
} else {
$sVal = '';
}
2025-08-01
Commented out this morning and earlier:
#
// 2025-08-01 never used anywhere
static public function FromItemValue(ItemIface $oItem, string $sValue) : SelfIface {
$oThis = new static;
$oThis->WithItemValue($oItem,$sValue);
echo "ITEM VALUE=[$sValue]".CRLF;
return $oThis;
}
static public function FromPairObject(ItemIface $oItem, PairIface $oPair) : SelfIface {
$oThis = new static;
$oThis->WithPairObject($oItem,$oPair);
return $oThis;
}
protected function WithPairObject(ItemIface $oItem, PairIface $oPair) : void {
$this->WithItemValue($oItem,$oPair->Value);
$this->SetArgs($oPair->Extra());
}