Ferreteria/v0.6/clade/Sys/Data/Engine/aux/ActionRq/Admin/schema/EngScExport: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 34: | Line 34: | ||
===={{fmt/date|2025|09|26}}==== | ===={{fmt/date|2025|09|26}}==== | ||
Commented out yesterday (though I ended up re-using the ...Class() function on {{fmt/date|2025|10|05}}): | Commented out yesterday (though I ended up re-using the ...Class() function on {{fmt/date|2025|10|05}}): | ||
{{fmt/php/ | {{fmt/php/block|1= | ||
// 2025-09-25 refactoring these traits back out of existence | // 2025-09-25 refactoring these traits back out of existence | ||
trait tEngScExport { | trait tEngScExport { | ||
Latest revision as of 13:54, 24 November 2025
| ||||||||||||||
Status
[2025-11-24] probably obsolete
History
- 2025-09-22 Created. I feel like this *should* exist, but not yet entirely clear if it will work out.
- 2025-11-24 Tentatively, this is being refactored out of existence.
Code
interface iEngScExport extends BaseIface {}
trait tEngScExport {
// ++ ACTION ++ //
// CEMENT
public function Go() {
$oSchm = $this->QOSchema()->GetIt();
$oSchm->DoExport($this->DataFileNode(),$this->OkToReplace());
}
// -- ACTION -- //
}
abstract class caEngScExport extends BaseClass implements iEngScExport { use tEngScExport; }
Removed
2025-09-26
Commented out yesterday (though I ended up re-using the ...Class() function on 2025-10-05):
// 2025-09-25 refactoring these traits back out of existence
trait tEngScExport {
protected function EngScExportRequestClass() : string { return cEngScExport::class; }
protected function NewEngScExportRequest() : RequestIface { return ($this->EngScExportRequestClass())::FromDbOper($this->ODbOper()); }
}