vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Online status in memberlist (https://vborg.vbsupport.ru/showthread.php?t=315509)

D3m0n h311ra153 11-19-2014 09:15 PM

Online status in memberlist
 
Like the Title suggests.

I have added it so far into the memberlist template like so:-
Code:

<vb:if condition="$onlinestatus==0">
        <img class="inlineimg onlinestatus" src="{vb:stylevar imgdir_statusicon}/user-offline_memberlist.png" alt="{vb:rawphrase x_is_offline, {vb:raw userinfo.username}}" border="0" />
<vb:elseif condition="$onlinestatus==1" />
        <img class="inlineimg onlinestatus" src="{vb:stylevar imgdir_statusicon}/user-online_memberlist.png" alt="{vb:rawphrase x_is_online_now, {vb:raw userinfo.username}}" border="0" />
<vb:elseif condition="$onlinestatus==2" />
        <img class="inlineimg onlinestatus" src="{vb:stylevar imgdir_statusicon}/user-invisible_memberlist.png" alt="{vb:rawphrase x_is_invisible, {vb:raw userinfo.username}}" border="0" />
</vb:if>

The "user-offline/online/invisible_memberlist.png" is a custom image to fit the size of the username height, so ignore the name change from the original.

Now, no matter what I do, the code only outputs the very first vb:if, and from what I have so far gathered, the $onlinestatus variable is not global and cannot be used in the memberlist template.

Is there a way of making this available, or a hook to pull the correct info, I am at my wits end to get this to work.

Remember, I am not a coder ;)

ozzy47 11-19-2014 09:18 PM

It may be because the last vb:elseif should be vb:else

D3m0n h311ra153 11-19-2014 09:22 PM

Nah!

Didn't make a difference ozzy47, I have reworked this code a handful of times, using slightly different methods (which is probably why I made the mistake), but none of them will display anything other than the first vb:if, which is offline.

Thanks anyway

kh99 11-19-2014 09:45 PM

I haven't tried it, but you might try this: Create a plugin using hook location memberlist_bit and code like this:
Code:

$memberlist['onlinestatus'] = fetch_online_status($memberlist);
Then in the template condition, check $userinfo['onlinestatus'] instead of $onlinestatus.

ozzy47 11-19-2014 09:55 PM

I am trying that Kevin, but it is not working ATM, still looking into it.

D3m0n h311ra153 11-19-2014 09:58 PM

I get this error when viewing the memberlist

Quote:

Fatal error: Call to undefined function fetch_online_status() in memberlist.php(884) : eval()'d code on line 5

ozzy47 11-19-2014 10:03 PM

That's because you need to add this above that.

PHP Code:

require_once(DIR '/includes/functions_bigthree.php'); 


D3m0n h311ra153 11-19-2014 10:12 PM

Thanks ozzy47 & kh99 :up:

This did exactly what I wanted, despite my 6hrs of trying.

ozzy47 11-19-2014 10:13 PM

Excellent, glad to hear it worked for you. :)


All times are GMT. The time now is 09:02 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02110 seconds
  • Memory Usage 1,727KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete