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: candidosa2 em 20 de Janeiro de 2008, 02:07

Título: Justify BBCode
Enviado por: candidosa2 em 20 de Janeiro de 2008, 02:07

sourcedir/Subs.php

Pesquisar por
Código: [Seleccione]
array(
'tag' => 'li',
'before' => '<li>',
'after' => '</li>',

depois colocar
Código: [Seleccione]
array(
'tag' => 'justify',
'before' => '<div align="justify">',
'after' => '</div>',
'block_level' => true,
),



$themedir/Post.template.php

Pesquisar por
Código: [Seleccione]
'left' => array('code' => 'left',
Colocar
Código: [Seleccione]
'justify' => array('code' => 'justify', 'before' => '[justify]', 'after' => '[/justify]', 'description' => $txt['justify']),

$themedir/languages/Modifications.english.php

Código: [Seleccione]
$txt['justify'] = 'Justify';

$themedir/languages/Modifications.portuguese.php

Código: [Seleccione]
$txt['justify'] = 'Justify';
Nao esqueca de colocar a imagem no $temadir/images/bbc
Título: Justify BBCode
Enviado por: candidosa2 em 04 de Janeiro de 2009, 16:20
$sourcedir/Subs.php

Pesquisar
Código: [Seleccione]
array(
'tag' => 'li',
'before' => '<li>',
'after' => '</li>',

Adicionar
Código: [Seleccione]
array(
'tag' => 'justify',
'before' => '<div align="justify">',
'after' => '</div>',
'block_level' => true,
),

$themedir/Post.template.php

Pesquisar
Código: [Seleccione]
'left' => array('code' => 'left',
Adicionar
Código: [Seleccione]
'justify' => array('code' => 'justify', 'before' => '[justify]', 'after' => '[/justify]', 'description' => $txt['justify']),
$themedir/languages/Modifications.portuguese_pt.php
Adicionar
Código: [Seleccione]
$txt['justify'] = 'Justify';

$themedir/languages/Modifications.portuguese_pt-utf8.php
Adicionar
Código: [Seleccione]
$txt['justify'] = 'Justify';