Ferreteria/v0.6/clade/Sys/Data/Engine/aux/ActionRq/Admin/schema/EngScExport: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 9: | Line 9: | ||
}} | }} | ||
==Status== | |||
['''{{fmt/date|2025|11|24}}'''] probably obsolete | |||
==History== | |||
* '''{{fmt/date|2025|09|22}}''' Created. I feel like this *should* exist, but not yet entirely clear if it will work out. | |||
* '''{{fmt/date|2025|11|24}}''' Tentatively, this is being refactored out of existence. | |||
==Code== | ==Code== | ||
''as of {{fmt/date|2025|11|23}}:'' | ''as of {{fmt/date|2025|11|23}}:'' | ||
| Line 25: | Line 30: | ||
} | } | ||
abstract class caEngScExport extends BaseClass implements iEngScExport { use tEngScExport; } | abstract class caEngScExport extends BaseClass implements iEngScExport { use tEngScExport; } | ||
}} | |||
===Removed=== | |||
===={{fmt/date|2025|09|26}}==== | |||
Commented out yesterday (though I ended up re-using the ...Class() function on {{fmt/date|2025|10|05}}): | |||
{{fmt/php/code|1= | |||
// 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()); } | |||
} | |||
}} | }} | ||
Revision as of 13:53, 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): Template:Fmt/php/code