I have a class like:
class bla_bla extends WP_Widget {
function boo(){
return 'something';
}
...
}
(it's a WordPress widget)
How can I access the boo() function from outside the class?
I want to assign the value returned by that function to a variable, like $var = boo();