Ferreteria/v0.3/class/tRowsBlob

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 19:37, 2 January 2019 by htyp>Woozle (Created page with "{{page/code/class|ferreteria}} <source lang=php> →‎tttt IMPLEMENTS ifLoadableRows USE WITH PortalRow types, preferably: trait tLoadableRow { private $binResult;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class

/*tttt
  IMPLEMENTS ifLoadableRows
  USE WITH PortalRow types, preferably
*/
trait tLoadableRow {
    private $binResult;
    public function SetResultBlob($r) {
	$this->binResult = $r;
    }
    public function GetResultBlob() {
	return $this->binResult;
    }
}