Ferreteria/v0.3/class/cIOSource standard table: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
No edit summary
m (page template)
Line 1: Line 1:
{{page/code/class|ferreteria}}
<source lang=php>
<source lang=php>
// PURPOSE: standard db table source with a single "ID" key
// PURPOSE: standard db table source with a single "ID" key

Revision as of 18:56, 28 December 2018

Template:Page/code/class

// PURPOSE: standard db table source with a single "ID" key
abstract class cIOSource_standard_table extends cIOSource_db_keyed {
    use tSelectable_Source_simple;
    use tInsertable_Source;
    use tUpdateable_Source;

    public function GetKeyName() { return 'ID'; }
    protected function SourceString_forSelect() // returns TableName()
    abstract protected function TableName();
}