ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,671
- Points
- 823
Reputation:
I try to understand the parent thing; here I am now:
A method defines something like in entities:
Code:
This is like: Hey give me the basket with the fruits, I put an apple inside and give the basket back.
Then I found methods called with a value
Code:
Read more
Continue reading...
A method defines something like in entities:
Code:
Code:
public static function getStructure(Structure $structure)
{
$structure = parent::getStructure($structure);
add something to $structure
return $structure;
}
This is like: Hey give me the basket with the fruits, I put an apple inside and give the basket back.
Then I found methods called with a value
Code:
public function...
Read more
Continue reading...