Get User Attributes
PermalinkIf I am being plainly blind here someone please correct me :)
thanks
This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.
check the code of userinfo.php (concrete/models)
there's a call like this "public function __call($nm, $a)"
if it starts with getUser c5 executes a db call even if there's not a method available for this.
this is a very neat php feature to create dynamic stuff..
var_dump, print_r etc. won't work because of this..
Just add your attribute after "getUser" and that's it