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

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
m (Woozle moved page Ferreteria/class/tLoadableRow to Ferreteria/class/tRowsBlob: more descriptive)
m (7 revisions imported: moving this project here)
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{page/code/class|ferreteria}}
{{page/code/class}}
<source lang=php>
<source lang=php>
/*tttt
/*tttt
   IMPLEMENTS ifLoadableRows
   IMPLEMENTS ifRowsBlob
   USE WITH PortalRow types, preferably
   STANDARD USE: PortalRow types
*/
*/
trait tLoadableRow {
trait tRowsBlob {
     private $binResult;
     private $binResult;
     public function SetResultBlob($r) {
     public function SetResultBlob($r) {
Line 16: Line 16:
</source>
</source>
* '''file''': {{l/ferreteria/file|data/rows/sourced.php}}
* '''file''': {{l/ferreteria/file|data/rows/sourced.php}}
* '''implements''': {{l/ferreteria/class|ifLoadableRows}}
* '''implements''': {{l/ferreteria/class|ifRowsBlob}}
* '''used by''': {{l/ferreteria/class|cPortalRow_storage}}

Latest revision as of 16:43, 22 May 2022

Template:Page/code/class

/*tttt
  IMPLEMENTS ifRowsBlob
  STANDARD USE: PortalRow types
*/
trait tRowsBlob {
    private $binResult;
    public function SetResultBlob($r) {
	$this->binResult = $r;
    }
    public function GetResultBlob() {
	return $this->binResult;
    }
}