wersja skryptu MyBB:
adres forum:
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Jak widać Forumowe Statystyki (Pro Stats 1.9.5), ten obrazek jest prostokątny chciałbym by był zaokrąglony tak jak wyżej w działach i chciałbym też, żeby DVZ shoutbox, miał taki sam efekt [chyba, że znacie fajny shoutbox, który sam się ładnie wkomponuję w styl]
Chciałbym też, żeby napis Forumowe Statystyki był bardziej w prawą stronę położony.
Jeśli potrzebujecie jakiś plików to je podam.
W szablonach globalnych powinienes mieć szablony dotyczące tych dwóch pluginów, skopiuj ich zawartość tutaj (pamiętając o tagach [code ] lub [php ]).
Pro stats.
Kod:
<script type="text/javascript">
<!--
var spinner=null;
function prostats_reload()
{
if(spinner){return false;}
this.spinner = new ActivityIndicator("body", {image: "images/spinner_big.gif"});
new Ajax.Request('{$mybb->settings['bburl']}/xmlhttp.php?action=prostats_reload&my_post_key='+my_post_key, {method: 'post',postBody:"", onComplete:prostats_done});
return false;
}
function prostats_done(request)
{
if(this.spinner)
{
this.spinner.destroy();
this.spinner = '';
}
if(request.responseText.match(/<error>(.*)<\/error>/))
{
message = request.responseText.match(/<error>(.*)<\/error>/);
alert(message[1]);
}
else if(request.responseText)
{
$("prostats_table").innerHTML = request.responseText;
}
}
-->
</script>
<div id="prostats_table">
{$remote_msg}
<table width="100%" border="0" cellspacing="{$theme[borderwidth]}" cellpadding="0" class="tborder">
<thead>
<tr><td colspan="{$num_columns}">
<table border="0" cellspacing="0" cellpadding="{$theme[tablespace]}" width="100%">
<tr class="thead">
<td><strong>{$lang->prostats_prostats}</strong></td>
<td style="text-align:{$ps_ralign};"><a href="" onclick="return prostats_reload();">{$lang->prostats_reload} <img src="{$mybb->settings['bburl']}/images/prostats/ps_reload.gif" style="vertical-align:middle;" alt="" /></a></td>
</tr>
</table>
</td>
</tr>
</thead>
<tbody>
{$trow_message_top}
<tr valign="top">
{$prostats_content}
</tr>
{$trow_message_down}
</tbody>
</table>
<br />
</div>
DVZ :
(1)
Kod:
<div class="tablehead">Shoutbox<p class="right"><a href="{$mybb->settings[bburl]}/index.php?action=shoutbox_archive">« {$lang->dvz_sb_archivelink}</a></p></div>
<div id="shoutbox">
<div class="panel-away" style="display:none"><button class="button" onclick="dvz_shoutbox.setBack()">{$lang->dvz_sb_away_button}</button>{$lang->dvz_sb_away}</div>
{$dvz_shoutbox_panel}
<div id="shoutbox_data" style="height:{$mybb->settings[dvz_sb_height]}px; overflow:auto;"></div>
</div>
<script type="text/javascript" src="jscripts/dvz_shoutbox.js"></script>
<script>
now = new Date;
dvz_shoutbox.userLastAction = now.getTime();
dvz_shoutbox.interval = {$mybb->settings[dvz_sb_interval]};
dvz_shoutbox.antiflood = {$mybb->settings[dvz_sb_antiflood]};
dvz_shoutbox.maxShouts = {$mybb->settings[dvz_sb_num]};
dvz_shoutbox.awayTimeout = {$mybb->settings[dvz_sb_away]}*1000;
dvz_shoutbox.lang = ['{$lang->dvz_sb_delete_confirm}', '{$lang->dvz_sb_antiflood}'];
{$dvz_shoutbox_js}
dvz_shoutbox.checkForMessages();
</script>
(2) - dvz_shoutbox_archive [chyba nie potrzebne]
Kod:
<html>
<head>
<title>{$lang->dvz_sb_archive}</title>
{$headerinclude}
</head>
<body>
{$header}
<script type="text/javascript" src="jscripts/dvz_shoutbox.js"></script>
{$dvz_shoutbox_js}
{$multipage}
<div class="tablehead">{$lang->dvz_sb_archive}</div>
<div id="shoutbox">
{$messagesList}
</div>
<br />
{$multipage}
{$footer}
</body>
</html>
Bardzo dziękuję!
Działa bardzo dobrze
Jeśli zamykacie tutaj tematy - to zamknąć.
Autora nagrodziłem reputacją.