SMFPT - Suporte e Manutenção de Fórum em Português

SMF 1.1.x (Móbulos Manual) => SMF 1.1.x Módulos Manual => Tópico iniciado por: joomlamz em 01 de Agosto de 2007, 10:19

Título: MOD - Manualmente
Enviado por: joomlamz em 01 de Agosto de 2007, 10:19
Colocar mais Opções no board como o exemplo

(http://i211.photobucket.com/albums/bb184/candidosa2/sshot-1-12.png)

Temos que pesquisar no BoardIndex.template.php

este codigo
Código: [Seleccione]
echo '
<table><tr><td valign="top">
<span class="smalltext"><b>', $txt['parent_boards'], '</b>:<br/>';
for($sayac2 = 0 ; $sayac2 < ceil($sayac/2);$sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span></td><td width="30"> </td><td valign="top"><span class="smalltext"><br/>';
for(; $sayac2 < $sayac ; $sayac2++)
echo $children[$sayac2], '<br/>';
echo '
</span></td></tr></table>';
}

ou por este

Código: [Seleccione]
// Show some basic information about the number of posts, etc.
echo '
</td>
<td class="windowbg" valign="middle" align="center" style="width: 12ex;"><span class="smalltext">
', $board['posts'], ' ', $txt[21], ' <br />
', $board['topics'],' ', $txt[330], '
</span></td>
<td class="windowbg2" valign="middle" width="22%">
<span class="smalltext">';

ou por este

Código: [Seleccione]
echo '
</td>

<td class="windowbg4" valign="middle" width="26%">
<span class="smalltext">';

/* The board's and children's 'last_post's have:

Colocar este Código e colocar entre um dos codigos que apanhar

[logged]
Código: [Seleccione]
// Indexte Tranlate by Joomlamz
echo'<div align="right">
<a href="',$scripturl, '?action=notifyboard;sa=' . ($context['is_marked_notify'] ? 'off' : 'on') . ';board=', $board['id'], ';sesc=' . $context['session_id'] . '"><img src="', $settings['images_url'], '/quadro.gif" title="Entrar no quadro" alt="Dentro do Quadro"></a><a href="', $scripturl, '?action=markasread;sa=board;board=', $board['id'], ';sesc=' . $context['session_id'] . '"><img src="', $settings['images_url'], '/lido.gif" title="Marcar Como Lido" alt="Marcar Lido"></a><a href="', $scripturl, '?action=unread"><img src="', $settings['images_url'], '/pesquisar.gif" title="Pesquisar no topico" alt="pesquisar"></a><a href="' . $scripturl . '?action=post;board=', $board['id'], '"><img src="', $settings['images_url'], '/Novo.gif" title="Novo Topico" alt="Novo Topico"></a>
</div>';
// (Canddiosa2) Indexte Traduzido por Joomlamz
[/logged]

(http://i211.photobucket.com/albums/bb184/candidosa2/quadro.gif)