Osclass forums
Development => Development => Topic started by: Xefiron on April 08, 2019, 08:47:15 pm
-
Inside the file ItemActions.php in the line #61 i found add() function, but i dont understand the next lines of code:
$aItem = $this->data;
The reason?, this class doesn't extended from another class and I can't found a data function inside this class. ¿What is the data function?
-
Hello,
"data" is a variable. Function/method will have "()" or "($variables)".
When posting or editing an item, all data is gathered and verified and saved in $data variable of the class:
$aItem = osc_apply_filter('item_prepare_data', $aItem);
$this->data = $aItem;
Regards.
-
So it was a variable, I guess it makes more sense. Thanks for your reply.