Does anyone know how to assign and then use a closure in a model/view using F3::set? Or offer a solution to the following scenario?
I'm using version 1.4.4
Here's what I'm trying to do:
//In Model - Loaded from controller w/ F3::call
F3::set('getPrice', function($tax, $profile){
//return price
});
//In View - Inside an F3:repeat of @products
{@getPrice(@product.tax, @product.profile)}
But closures don't seem to be supported... If I load the model using require/include, define the function w/o F3::set, and enable user defined functions in the view I can make it work. But I was hoping to maintain the level of separation afforded by using F3::call/F3::set.
Thanks!
Okay, so version 1.4.4 didn't support this, but version 2.0 does. Thanks for the great updates in 2.0! Here's the anonymous function support:
Controller-
Template-
And here's the object support:
http://fatfree.sourceforge.net/page/views-templates