M
madridmania
alguien sabria decirme donde esta este archivo: postbit_legacy.php?
y si son tan amables de traducirlo mejor.
y si son tan amables de traducirlo mejor.
PHP:
Copyright 2004 Megatekno Redistribution inderdite
This file may not be redistributed in whole or significant part.
#################################################
# Posbit lagacy for Vbulletin #
# VB 3.0.1 #
# #
# Megatekno #
# #
# http://mortimeur.topforum.firstream.net #
# http://ressource-forum.fr.fm/ #
#################################################
--------------------------------------------------------------------------------------------------
Ce hack permet aux membres de selectionner les styles de postbits (verticale ou horizontal).
Cette options etait selectionnable par l'admin, voila elle y est dans les options du membre.
--------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
Dans le cp admin cliquez sur Gerer Phrase / Manage Phrase
Puis cliquez en bas sur Ajouter Nouvelle Phrase / Add new phrase
(1)
phrase:
type de phrase / type of phrase: User Tools (global)
Nom de la variable / Name of the variable : Mode_Postbit_Legacy
Texte / Test: Mode Postbit Legacy
(2)
phrase:
type de phrase / type of phrase: User Tools (global)
Nom de la variable / Name of the variable : Mode_Postbit_Legacy_descript
Texte / Test: Permet de selectionner le style Legacy vertical du Postbit dans les méssages ou le mettre en horizontal.
(3)
phrase:
type de phrase / type of phrase: User Tools (global)
Nom de la variable / Name of the variable : Mode_Postbit_Legacy_select
Texte / Test: Style Postbit Legacy vertical
--------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
Ouvrez le fichier includes/fonctions.php de votre forum
--------------------------------------------------------------------------------------------------
---------------------
Cherchez
---------------------
$locale2 = setlocale(LC_CTYPE, $userinfo['lang_locale']);
}
---------------------
Ajoutez juste après:
---------------------
// choix des sytes postbits par Megatekno
if ($userinfo['userid'])
{
$vboptions['legacypostbit'] = $userinfo['legacypostbit'];
}
// end choie des sytes postbits par Megatekno
--------------------------------------------------------------------------------------------------
Ouvrez le fichier profile.php du dossier de votre forum
--------------------------------------------------------------------------------------------------
---------------------
Cherchez
---------------------
// Get custom otions
$customfields = array();
fetch_profilefields(1);
---------------------
Ajoutez juste au dessus:
---------------------
// choix des sytes postbits par Megatekno
if ($bbuserinfo['legacypostbit']==1)
{
$checked['legacypostbit'] = HTML_CHECKED;
$show['legacypostbit'] = true;
}
else
{
$show['legacypostbit'] = false;
}
// end choie des sytes postbits par Megatekno
--------------------------------------------------------------------------------------------------
Ouvrez le fichier init.php du dossier includes/
--------------------------------------------------------------------------------------------------
---------------------
Cherchez
---------------------
$_USEROPTIONS = array(
---------------------
Ajouter avant le );
---------------------
'legacypostbit' => 65536,
PS: Le numéro 65536 peu varier selon les options deja présente, prendre le chifre le plus grand et
il suffit de multiplier par 2
--------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
Dand le template modifyoptions
--------------------------------------------------------------------------------------------------
---------------------
Cherchez
---------------------
<fieldset class="fieldset">
<legend>$vbphrase[visible_post_elements]</legend>
---------------------
Ajoutez juste au dessus:
---------------------
<fieldset class="fieldset">
<legend>$vbphrase[Mode_Postbit_Legacy]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>$vbphrase[Mode_Postbit_Legacy_descript]</td>
</tr>
<tr>
<td>
<div>
<input type="checkbox" name="options[legacypostbit]" value="1" $checked[legacypostbit]>$vbphrase[Mode_Postbit_Legacy_select]
</div> </td>
</tr>
</table>
</fieldset>
--------------------------------------------------------------------------------------------------