Ferreteria/v0.3/class/tRowsBlob

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Revision as of 11:57, 7 January 2019 by htyp>Woozle (Woozle moved page Ferreteria/class/tLoadableRow to Ferreteria/class/tRowsBlob: more descriptive)
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;
    }
}