Ferreteria/v0.3/class/cFieldRowMemory: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
(Created page with "<source lang=php> /*---- NOTE: this is sort of a hybrid between a cIORow and a cPortalRow. It's probably not the best way to do things, since maybe we'd actually want...")
 
No edit summary
Line 13: Line 13:
}
}
</source>
</source>
* '''file''': <code>/data/rows/memory.php</code>
* '''extends''': {{l/ferreteria/class|cIORow_internal}}
* '''extends''': {{l/ferreteria/class|cIORow_internal}}
* '''extended by''':
* '''extended by''':
** '''{{l/ferreteria/class|fcStackTrace}}''' extends \ferreteria\data\cIORowMemory
** '''{{l/ferreteria/class|fcStackTrace}}''' extends \ferreteria\data\cIORowMemory

Revision as of 14:02, 28 December 2018

/*----
  NOTE: this is sort of a hybrid between a cIORow and a cPortalRow.
    It's probably not the best way to do things, since maybe we'd actually want
    proper Porals for input (from memory) and output (to screen), but maybe
    it's easier to work with in a hurry (at least until I'm more familiar
    with this wacky system I've devised).
*/
abstract class cIORowMemory extends cIORow_internal {
    use tKeyedRow;
    use tSingleKey_Row;
    use tInternalStorage;
}