Ferreteria/v0.3/class/cStandardRow: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
m (Woozle moved page Ferreteria/class/cStandardRow to Ferreteria/v3/class/cStandardRow without leaving a redirect: this is all v3 documentation, and we still need v2) |
m (Woozle moved page Ferreteria/v3/class/cStandardRow to Ferreteria/v0.3/class/cStandardRow: version renumbering) |
(No difference)
| |
Revision as of 15:28, 3 February 2020
/*::::
PURPOSE: data-row management for storage I/O
FUNCTIONALITY: table-sourced row with single "ID" index
REPLACES: fcDataRow
HISTORY:
2018-09-30 started
2018-11-30 mostly gutted
2018-12-15 Sources are now pointed to by storage-type PortalRows, not IORows
2019-01-05 renamed from cFieldRowStandard to cStandardRow; added tFieldRow_Storage
*/
abstract class cStandardRow extends cFieldRow_sourced implements ifSingleKeyedRow {
use tMakableFieldRow;
use tKeyedRow;
use tSaveableRow;
use tSingleKey_Row;
use tFieldRow_Storage;
// CEMENT
protected function GetStoragePortalsClass() {
return __NAMESPACE__.'\\cPortalRow_Table';
}
}