Ferreteria/v0.3/class/cStandardRow

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 01:13, 7 January 2019 by htyp>Woozle (Created page with "{{page/code/class|ferreteria}} <source lang=php> /*:::: PURPOSE: data-row management for storage I/O FUNCTIONALITY: table-sourced row with single "ID" index REPLACES: fc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

/*::::
  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 tKeyedRow;
    use tSaveableRow;
    use tSingleKey_Row;
    use tFieldRow_Storage;
    
    // CEMENT
    protected function GetStoragePortalsClass() {
        return __NAMESPACE__.'\\cPortalRow_Table';
    }
}