Getting $user Information

Getting $user Information

In XenForo 1, getting the user_id involved the getInstance and getUserId methods.

PHP:
$user_id =XenForo_Visitor::getInstance()->getUserId();

In XenForo 2, it's a matter of using visitor().

PHP:
$visitor = \XF::visitor();

$user_id =...
You do not have permission to view the full content of this resource. Log in or register now.
Author
LPH
Views
3,016
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from LPH

Top