Online Users Addon [UberCMS]
Hello Ragezoners,
This is my first release so the topic won't have much on it.
If you don't like it, Don't use it and don't post negative comments.
It Basically is a Page Addon.
open me.php find
Code:
$tpl->AddTemplate($compMe);
And under that add
Code:
$tpl->AddGeneric('comp-onlineusers');
Open inc->tpl folder and save this Code below as comp-onlineusers.tpl
Code:
<div class="habblet-container ">
<div class="cbb clearfix red ">
<h2 class="title">Online Users</h2>
<div id="online-users">
<?php
echo '<b>The following users are currently online:</b>';
$getUsers = dbquery("SELECT id FROM users WHERE online = '1' ORDER BY id ASC");
if (mysql_num_rows($getUsers) > 0)
{
echo '<ul style="margin: 0; color:#000000">';
while ($u = mysql_fetch_assoc($getUsers))
{
echo $users->formatUsername($u['id']); echo ', ';
}
echo '</ul>';
}
else
{
echo '<br /><br /><i>There are currently no users online.</i>';
}
?>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
Screenshot : Here
Regards
Edward
Re: Online Users Addon [UberCMS]
Don't like it, and its a rip from onlineusers.html :P
Re: Online Users Addon [UberCMS]
Quote:
Originally Posted by
PEjump2
Don't like it, and its a rip from onlineusers.html :P
I know but i edited to make it work in a box where it doesn't make a big ass list.
Re: Online Users Addon [UberCMS]
Wow, that's hard to do, Just add an:
Code:
<div class="habblet-container ">
<div class="cbb clearfix red ">
<h2 class="title">Online Users</h2>
Re: Online Users Addon [UberCMS]
Quote:
Originally Posted by
PEjump2
Wow, that's hard to do, Just add an:
Code:
<div class="habblet-container ">
<div class="cbb clearfix red ">
<h2 class="title">Online Users</h2>
Unless you want to make it look
Online Users
User1,
User2,
User3,
User4,
and so on full page spammed.
Quote:
Originally Posted by
-ClaNHabbo-
If you don't like it, Don't use it and don't post negative comments.
Re: Online Users Addon [UberCMS]
Quote:
Originally Posted by
-ClaNHabbo-
Unless you want to make it look
Online Users
User1,
User2,
User3,
User4,
and so on full page spammed.
Your wrong their, because this isn't neat, this is what you called spammed. But good try.
Re: Online Users Addon [UberCMS]
Ok, i guess, nice for first Rel :D
Re: Online Users Addon [UberCMS]
You just put Sleddy's page on the me.php
Re: Online Users Addon [UberCMS]
Quote:
Originally Posted by
Cobe
You just put Sleddy's page on the me.php
Thanking you. [;
Re: Online Users Addon [UberCMS]
Ehhhhh what the hell its ok? lol
Re: Online Users Addon [UberCMS]
nop i did not. :S I did that myself its on my site for more than 1 month.
Re: Online Users Addon [UberCMS]
Im not saying you did..
and he made his back in April/May/June
Re: Online Users Addon [UberCMS]
It looks a bit messy. but hey, any release/contribution is good
Re: Online Users Addon [UberCMS]
ok guys why must u always down people who release stuff? SO what if its edited or easy or w/e point is they are still giving stuff to the community...
ontopic: Great release Man!
Re: Online Users Addon [UberCMS]