Darathor
Citation :
But : Permet d'ajouter des classes de styles sous forme de bbcodes (utilisées soit en mode bloc (balise XHTML div), soit en mode inline (balise XHTML span)). Ces classes peuvent être ajoutées dynamiquement dans le panneau d'aministration et des menus déroulants permettent de les selectionner dans la page d'édition des messages.
Prérequis :
- [Sous-MOD] Additional CSS (1.0)
Auteur : Darathor (darathor@free.fr)
Version : 1.0 TEST - D (15/10/2006)
Compatibilité phpBB : 2.0.21
SQL :
Code :
CREATE TABLE `phpbb_styled_blocs` (
`style_id` mediumint(8) NOT NULL auto_increment,
`style_nom` varchar(75) NOT NULL default '',
`style_desc` text NOT NULL,
`style_type` varchar(10) NOT NULL default '',
`style_classe_nom` varchar(75) NOT NULL default '',
`style_classe` text NOT NULL,
PRIMARY KEY (`style_id`),
KEY `style_nom` (`style_nom`)
);
Dans "includes/bbcodes.php" :
Code :
#
# Trouver
#
$bbcode_tpl['email'] = str_replace('{EMAIL}', '\\1', $bbcode_tpl['email']);
#
# Ajouter après
#
// DEBUT MOD Styled-bloc BBcode
$bbcode_tpl['styled_bloc_open'] = str_replace('{STYLE}', '\\1', $bbcode_tpl['styled_bloc_open']);
// FIN MOD Styled-bloc BBcode
#
# Trouver
#
// [i] and [/i] for italicizing text.
$text = str_replace("[i:$uid]", $bbcode_tpl['i_open'], $text);
$text = str_replace("[/i:$uid]", $bbcode_tpl['i_close'], $text);
#
# Ajouter après
#
// DEBUT MOD Styled-bloc BBcode
$text = preg_replace("/\[bloc:$uid=([[:alnum:]]+)\]/si", $bbcode_tpl['styled_bloc_open'], $text);
$text = str_replace("[/bloc:$uid]", $bbcode_tpl['styled_bloc_close'], $text);
$text = preg_replace("/\[inline:$uid=([[:alnum:]]+)\]/si", $bbcode_tpl['styled_bloc_open'], $text);
$text = str_replace("[/inline:$uid]", $bbcode_tpl['styled_bloc_close'], $text);
// FIN MOD Styled-bloc BBcode
#
# Trouver
#
// [i] and [/i] for italicizing text.
$text = preg_replace("#\[i\](.*?)\[/i\]#si", "[i:$uid]\\1[/i:$uid]", $text);
#
# Ajouter après
#
// DEBUT MOD Styled-bloc BBcode
$text = preg_replace("#\[bloc=([[:alnum:]]+)\](.*?)\[/bloc\]#si", "[bloc:$uid=\\1]\\2[/bloc:$uid]", $text);
$text = preg_replace("#\[inline=([[:alnum:]]+)\](.*?)\[/inline\]#si", "[inline:$uid=\\1]\\2[/inline:$uid]", $text);
// FIN MOD Styled-bloc BBcode
Dans "posting.php" :
Code :
#
# Trouver
#
$template->pparse('body');
#
# Ajouteravant
#
// DEBUT MOD Styled-bloc BBcode
StBl_generate_menus();
// FIN MOD Styled-bloc BBcode
Dans "privmsgs.php" :
Code :
#
# Trouver
#
$template->assign_block_vars('switch_privmsg', array());
#
# Ajouter après
#
// DEBUT MOD Styled-bloc BBcode
StBl_generate_menus();
// FIN MOD Styled-bloc BBcode
Dans "templates/subsilver/posting_body.tpl" :
Code :
#
# Trouver
#
f_help = "{L_BBCODE_F_HELP}";
#
# Ajouter après
#
// DEBUT MOD Styled-bloc BBcode
bloc_help = "{L_BBCODE_BLOC_HELP}";
inline_help = "{L_BBCODE_INLINE_HELP}";
// FIN MOD Styled-bloc BBcode
#
# Trouver
#
</span></td>
<td nowrap="nowrap" align="right"><span class="gensmall"><a href="javascript:bbstyle(-1)" class="genmed" onMouseOver="helpline('a')">{L_BBCODE_CLOSE_TAGS}</a></span></td>
#
# Ajouter avant
#
<!-- DEBUT MOD Styled-bloc BBcode -->
<br /> {L_BLOC}: <select name="addbbcodebloc" onChange="bbfontstyle('[bloc=' + this.form.addbbcodebloc.options[this.form.addbbcodebloc.selectedIndex].value + ']', '[/bloc]');this.selectedIndex=0;" onMouseOver="helpline('bloc')">
<option value="" selected="selected" class="genmed">{L_CHOOSE}</option>
<!-- BEGIN bloc_row -->
<option value="{bloc_row.VALUE}" class="genmed">{bloc_row.NOM}</option>
<!-- END bloc_row -->
</select> {L_INLINE}: <select name="addbbcodeinline" onChange="bbfontstyle('[inline=' + this.form.addbbcodeinline.options[this.form.addbbcodeinline.selectedIndex].value + ']', '[/inline]');this.selectedIndex=0;" onMouseOver="helpline('inline')">
<option value="" selected="selected" class="genmed">{L_CHOOSE}</option>
<!-- BEGIN inline_row -->
<option value="{inline_row.VALUE}" class="genmed">{inline_row.NOM}</option>
<!-- END inline_row -->
</select>
<!-- FIN MOD Styled-bloc BBcode -->
Dans "templates/subsilver/bbcodes.tpl" :
Code :
#
# Trouver
#
<!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</a><!-- END email -->
#
# Ajouter après
#
<!-- BEGIN styled_bloc_open --><span class="{STYLE}"><!-- END styled_bloc_open -->
<!-- BEGIN styled_bloc_close --></span><!-- END styled_bloc_close -->
Uploader aux emplacement suivants les fichiers contenus dans ce zip :
- admin/admin_styled_blocs.php
- includes/constants/constants_styled_blocks_bbcode.php
- includes/functions_back/functions_back_styled_blocks_bbcode.php
- includes/functions_front/functions_front_styled_blocks_bbcode.php
- language/lang_french/lang_back/lang_back_styled_blocks_bbcode.php
- language/lang_french/lang_all/lang_all_styled_blocks_bbcode.php
- templates/subsilver/admin/styled_blocs_css.tpl
- templates/subsilver/admin/styled_blocs_edit_body.tpl
- templates/subsilver/admin/styled_blocs_list_body.tpl