Ferreteria/v0.3/class/tFieldRow Storage: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
m (Woozle moved page Ferreteria/v3/class/tFieldRow Storage to Ferreteria/v0.3/class/tFieldRow Storage: version renumbering) |
m (4 revisions imported: moving this project here) |
(No difference)
|
Latest revision as of 16:43, 22 May 2022
/*tttt
PURPOSE: FieldRow with storage portals
TODO: will eventually need a corresponding trait for display portals
*/
trait tFieldRow_Storage {
abstract protected function GetStoragePortalsClass();
public function GetStoragePortals() {
$sClass = $this->GetStoragePortalsClass();
return new $sClass($this);
}
}