Initial commit

This commit is contained in:
genuineparts 2025-06-02 10:01:12 +02:00
commit 43ad32700c
7085 changed files with 447606 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<h3>Roomlist</h3><a id="userlist" style="font-size:8px;">(Close Roomlist)</a><br />
{if $users==""}
<p>
No users.
</p>
{else}
<div style="padding:5px;">
{foreach from=$users key=key item=user}
{if $user.s == "unlocked"}
<strong><a id="{$key}" class="room">{$key}</a></strong> <img src="/themes/ponytopia/images/{$user.s}.png" style="border:none;" /><br />
{elseif $user.s == "password"}
<strong><a>{$key}</a></strong> <img src="/themes/ponytopia/images/{$user.s}.png" style="border:none;" /><br />
{else}
<strong><a>{$key}</a></strong> <img src="/themes/ponytopia/images/{$user.s}.png" style="border:none;" /><br />
{/if}
{foreach from=$user.u item=i}
<a id="{$i.n}" class="notice"><img src="/themes/ponytopia/images/{$i.i}" style="border:none;" /></a>{$i.l}<a href="/profile/{$i.n}" target="_blank" style="color:#{$i.c}; margin-left: 8px;">{$i.n}</a></span>&nbsp;<img src="/themes/ponytopia/images/{$i.g}.png" style="border:none;" /><br />
{/foreach}
{/foreach}
{/if}
</div>
{if $js!=""}
<script type="text/javascript">
{$js}
$(".notice").rightClickMenu(menu);
</script>
{/if}