Ferreteria/v0.3/class/tQueryableSource

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 00:37, 31 December 2018 by htyp>Woozle (Created page with "{{page/code/class|ferreteria}} <source lang=php> /*:::: USAGE: could be a query or a table HISTORY: 2018-12-30 adapting from tSelectable_Source Discarding functi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

/*::::
  USAGE: could be a query or a table
  HISTORY:
    2018-12-30 adapting from tSelectable_Source
      Discarding function GetStoragePortals() - doesn't belong here
        was: $rs = $this->SpawnRows(); return $rs->GetStoragePortals();
*/
trait tQueryableSource {
    // ++ FRAMEWORK ++ //

    abstract protected function GetDatabase();

    // -- FRAMEWORK -- //
    // ++ SETUP ++ //

    abstract public function FieldsString_forSelect();
    abstract public function SourceString_forSelect();

    // -- SETUP -- //
    
}