Ferreteria/v0.3/class/tRowsBlob: 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> →‎tttt IMPLEMENTS ifLoadableRows USE WITH PortalRow types, preferably: trait tLoadableRow { private $binResult;...")
 
m (Woozle moved page Ferreteria/class/tLoadableRow to Ferreteria/class/tRowsBlob: more descriptive)
(No difference)

Revision as of 11:57, 7 January 2019

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