authorid is the variable
Here is the code I use to show avatar for example
PHP Code:
require_once(DIR . '/includes/functions_user.php');
$avatarurl = fetch_avatar_url($view->authorid, true);
if ($avatarurl[0]) {
$avatarurl = $avatarurl[0];
}
/* render template and register variables */
$view->avatarurl = $avatarurl;
--------------- Added [DATE]1483480748[/DATE] at [TIME]1483480748[/TIME] ---------------
I modified the plugin code to this, but without luck !!
PHP Code:
$ppuserinfo = fetch_userinfo($authorid, 8);
if ($vbulletin->options['usefileavatar'])
{
$ppuserinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $ppuserinfo['authorid'] . '_' . $ppuserinfo['profilepicrevision'] . '.gif';
if (!file_exists($ppuserinfo['profilepicurl']))
{
$ppuserinfo['profilepicrevision'] = 0;
}
}
else
{
$ppuserinfo['profilepicurl'] = 'image.php?' . $vbulletin->session->vars['sessionurl'] . 'u=' . $ppuserinfo['authorid'] . "&dateline=$ppuserinfo[profilepicdateline]&type=profile";
}
$profilepicexists = $ppuserinfo['profilepicrevision'] OR $ppuserinfo['profilepicdateline'];
if ($profilepicexists)
{
vB_Template::preRegister('vbcms_content_article_page', array('profilepicurl' => $ppuserinfo['profilepicurl']));
}
--------------- Added [DATE]1483492627[/DATE] at [TIME]1483492627[/TIME] ---------------
I made a lot of tests, but I don't know why the plugin can't see $authorid or $poststarter['userid'] or even $userid.
BTW, if I put {vb:raw authorid} in the template it give me the author id !!
Any suggestions?
--------------- Added [DATE]1483538845[/DATE] at [TIME]1483538845[/TIME] ---------------
No suggestions to how to get the authorid to complete this plugin?
--------------- Added [DATE]1483542079[/DATE] at [TIME]1483542079[/TIME] ---------------
I found it ^_^
PHP Code:
$userid = $view->authorid;
solve the things
there is only one problem left, this code
PHP Code:
$ppuserinfo['profilepicurl'] = $vbulletin->options['profilepicurl'] . '/profilepic' . $ppuserinfo['userid'] . '_' . $ppuserinfo['profilepicrevision'] . '.gif';
give me wrong image pathlike this
PHP Code:
customprofilepics/profilepic762011_2.gif
the right path is
PHP Code:
www.mysite.com/forum/customprofilepics/profilepic762011_2.gif
How I can fix this?
Thanks in advance.