Ferreteria/v0.3/class/tFieldRow Storage: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
m (Woozle moved page Ferreteria/class/tFieldRow Storage to Ferreteria/v3/class/tFieldRow Storage without leaving a redirect: this is all v3 documentation, and we still need v2) |
m (Woozle moved page Ferreteria/v3/class/tFieldRow Storage to Ferreteria/v0.3/class/tFieldRow Storage: version renumbering) |
(No difference)
|
Revision as of 15:28, 3 February 2020
/*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);
}
}