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

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
(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...")
 
m (Woozle moved page Ferreteria/class/tQueryableSource to Ferreteria/v3/class/tQueryableSource without leaving a redirect: this is all v3 documentation, and we still need v2)
(No difference)

Revision as of 14:24, 19 January 2019

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 -- //
    
}