Hi,
I have an array of objects I would like to display for the user, but the user
can not be allowed to see all of the products in the variable.
How can I display only the parts of the products that he/she is allowed to see.
In PHP I would write:
if (user->hasToken(product->viewToken)) {
display(product);
}
|