1
tcnet
Display the Whos Online Block from a Theme
  • 2011/1/1 14:32

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Want to display the Who's Online block anywhere in a theme? This worked for me.

<{php}>
$block b_system_online_show();
print 
"<div>".$block['online_total']."<br /><br />".
$block['lang_members'].": ".$block['online_members']."<br />".
$block['lang_guests'].": ".$block['online_guests']
.
"<br /><br />".
$block['online_names']
.
"<a href= &92"javascript:openWithSelfMain('".XOOPS_URL."/misc.php?action=showpopups&type=online','Online',420,350);&92" title=&92"".$block['lang_more']."&92">
    "
.$block['lang_more']."
</a>
</div>"
;
<{/
php}>

EDIT: The backslash is not displaying with dhtml editor. Manually replace &92 with backslash.


2
Anonymous
Re: Display the Whos Online Block from a Theme
  • 2011/1/1 14:38

  • Anonymous

  • Posts: 0

  • Since: 0



3
tcnet
Re: Display the Whos Online Block from a Theme
  • 2011/1/1 14:49

  • tcnet

  • Friend of XOOPS

  • Posts: 297

  • Since: 2006/5/12


Client did not want to install additional files or modify core files. This application required all code in the theme.