TVictory
New member
How could i add values to the $visitor variable and get them out of sidebar_visitor_panel among other places?
Integration to our main site requires that we show some information about the user that is not in the xf database, or on the forum. Example: Number of comments on a custom made blog.
One of the places this value will need to be shown is in the template sidebar_visitor_panel
I have tried adding data using the listener container_public_paramas
Something to the affect of:
but this hasn't worked.
Integration to our main site requires that we show some information about the user that is not in the xf database, or on the forum. Example: Number of comments on a custom made blog.
One of the places this value will need to be shown is in the template sidebar_visitor_panel
I have tried adding data using the listener container_public_paramas
Something to the affect of:
Code:
class CBlog_Stats {
static function fbb_user(array &$params, XenForo_Dependencies_Abstract $dependencies){
$params['visitor']['blog_stats'] = Array(
"num_posts"=>5,
"num_upvotes"=>10);
}
}
but this hasn't worked.