The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#5
|
||||
|
||||
![]()
it works, but it breaks my other plugin, this is what i have
Code:
<plugin active="1" executionorder="5"> <title>DRC - Whos On Avatar</title> <hookname>forumhome_loggedinuser</hookname> <phpcode><![CDATA[require_once('./includes/functions_user.php'); $loggedin[avatarurl] = fetch_avatar_url($loggedin[userid]); if (!$loggedin[avatarurl]) { $loggedin[avatarurl] = $stylevar['imgdir_misc'] . '/noavatar.png'; } else { $loggedin[avatarurl] = $vbulletin->options['bburl'] . '/' . $loggedin[avatarurl][0]; }]]></phpcode> </plugin> <plugin active="1" executionorder="5"> <title>DRC - Whos On Avatar FH</title> <hookname>forumhome_complete</hookname> <phpcode><![CDATA[ eval('$drc_act_av = "' . fetch_template('drc_act_av') . '";'); $activeusers = $drc_act_av; ]]></phpcode> </plugin> the html is spitting out HTML Code:
<!-- BEGIN TEMPLATE: drc_act_av --> <a href="member.php?u="><img src="" height="40px" width="auto" border="0" alt=""></a> <!-- END TEMPLATE: drc_act_av --> Code:
<!-- BEGIN TEMPLATE: drc_act_av --> <a href="member.php?u=12"><img src="avatars/users/12.gif?dateline=1456633560" height="40px" width="auto" border="0" alt=""></a> <!-- END TEMPLATE: drc_act_av --> doing both plugins in one how i had does work but again not the desired way Code:
<plugin active="1" executionorder="5"> <title>DRC - Whos On Avatar</title> <hookname>forumhome_loggedinuser</hookname> <phpcode><![CDATA[require_once('./includes/functions_user.php'); $loggedin[avatarurl] = fetch_avatar_url($loggedin[userid]); if (!$loggedin[avatarurl]) { $loggedin[avatarurl] = $stylevar['imgdir_misc'] . '/noavatar.png'; } else { $loggedin[avatarurl] = $vbulletin->options['bburl'] . '/' . $loggedin[avatarurl][0]; } $vbulletin->templatecache['forumhome_loggedinuser'] = fetch_template('drc_act_av');]]></phpcode> </plugin> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|