Ferreteria/v0.3/class/tRowsBlob: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
(update) |
m (7 revisions imported: moving this project here) |
||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{page/code/class | {{page/code/class}} | ||
<source lang=php> | <source lang=php> | ||
/*tttt | /*tttt | ||
Line 17: | Line 17: | ||
* '''file''': {{l/ferreteria/file|data/rows/sourced.php}} | * '''file''': {{l/ferreteria/file|data/rows/sourced.php}} | ||
* '''implements''': {{l/ferreteria/class|ifRowsBlob}} | * '''implements''': {{l/ferreteria/class|ifRowsBlob}} | ||
* '''used by''': {{l/ferreteria/class|cPortalRow_storage}} |
Latest revision as of 16:43, 22 May 2022
/*tttt
IMPLEMENTS ifRowsBlob
STANDARD USE: PortalRow types
*/
trait tRowsBlob {
private $binResult;
public function SetResultBlob($r) {
$this->binResult = $r;
}
public function GetResultBlob() {
return $this->binResult;
}
}
- file: Template:L/ferreteria/file
- implements: Template:L/ferreteria/class
- used by: Template:L/ferreteria/class