Osclass forums

Development => Development => Topic started by: Xefiron on April 08, 2019, 08:47:15 pm

Title: Where is data function?
Post 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:

Code: [Select]
$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?
Title: Re: Where is data function?
Post by: WEBmods on April 08, 2019, 10:43:08 pm
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:

Code: [Select]
            $aItem = osc_apply_filter('item_prepare_data', $aItem);
            $this->data = $aItem;

Regards.
Title: Re: Where is data function?
Post by: Xefiron on April 09, 2019, 08:48:36 pm
So it was a variable, I guess it makes more sense. Thanks for your reply.