Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/plugins/avatarep.php on line 1102

Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
Reputación Plugin
Páginas (2): 1 2   
MrDarkWood   22 Jul, 2011, 2:54 pm
#1

No sabrán donde bajar un plugin o mod, que muestre la reputación en cuadros como este: [Imagen: reputation_balance.png]

Así como si fuese vbulletin.


Gracias.
MrDarkWood   23 Jul, 2011, 8:39 am
#3
sabrás cual es el código para ponerlo en el perfil de miembro?

También tengo error por que lo que sale abajo de la reputación se subraya como si fuese link:
http://emusoftware.cz.cc/showthread.php?...90#pid1090

como edito o donde podré editar para que no salga la palabra "Reputación"

Por cierto, gracias
Última modificación: 23 Jul, 2011, 8:47 am por juanms07.
Omar G.   24 Jul, 2011, 7:41 pm
#4
Creo que no sale en el perfil.

Pasa tu postbit_author_user para ver que pasa.
MrDarkWood   25 Jul, 2011, 4:50 pm
#5
Aquí está:
Código PHP:
<?php 
{$lang->postbit_posts} {$post['postnum']}<br />

{
$lang->postbit_joined} {$post['userregdate']}
{
$post['replink']}{$post['warninglevel']}
{
$post['awards']}
Omar G.   25 Jul, 2011, 9:10 pm
#6
Ahora pasa una que se llama postbit_reputation.
MrDarkWood   26 Jul, 2011, 8:38 am
#7
Acá está:
Código PHP:
<?php 
<br />{$lang->postbit_reputation} {$post['userreputation']}
Omar G.   26 Jul, 2011, 8:14 pm
#8
Abre el plugin y busca:
Código PHP:
<?php 
<img src="images/rep_bars/rep_neg.png">

<
img src="images/rep_bars/rep_neu.png">

<
img src="images/rep_bars/rep_pos.png">

Cambialas por esto:
Código PHP:
<?php 
<img src="images/rep_bars/rep_neg.png"/>

<
img src="images/rep_bars/rep_neu.png"/>

<
img src="images/rep_bars/rep_pos.png"/>

Creo que es por que esa ultima / Yaldaram no la coloco
MrDarkWood   27 Jul, 2011, 8:50 am
#9
ok ok, deja intentar
MrDarkWood   27 Jul, 2011, 2:28 pm
#10
en el plugin sale esto:
Código PHP:
<?php
/*********************************************************************************************
+ Reputation Bars v0.2 : A Plugin for MyBB 1.4 and 1.6
+ Free to Use
+ Free to Edit
+ But Not Allowed to distribute
-----
Update 0.2: Fix an small bug. Also added Reputation page link to the Image Bars.
**********************************************************************************************
*/
if(!defined("IN_MYBB")){
die(
"Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}
function
rep_bars_info(){
return array(
"name" => "Reputation Bars", "description" => "Change Reputation number to Bars.", "website" => "http://yaldaram.com", "author" => "Yaldaram", "authorsite" => "http://yaldaram.com", "version" => "0.2", "compatibility" => "14*,16*", "guid" => "ee481a454ca5e0f54624425f2062bd1d" );
}
function
rep_bars_activate(){
global
$db, $mybb;
require
MYBB_ROOT."/inc/adminfunctions_templates.php";
$template = array(
"title" => "rep_bars",
"template" => '<span title="{$post[\\\'username\\\']} has {$rep_points} points."><a href="reputation.php?uid={$post[\\\'uid\\\']}">{$rep_bars}</span>',
"sid" => -1
);
$db->insert_query("templates", $template);
}
function
rep_bars_deactivate(){
global
$db, $mybb;
require
MYBB_ROOT."/inc/adminfunctions_templates.php";
$db->query("DELETE FROM ".TABLE_PREFIX."templates WHERE title='rep_bars'");
rebuild_settings();
}
$plugins->add_hook("postbit", "rep_bars");
function
rep_bars($post){
global
$mybb, $templates;
if (
$post['uid'] != "0"){
if (
$post['reputation'] < "0"){
$rep_bars = '<img src="images/rep_bars/rep_neg.png">';
}
else if (
$post['reputation'] == "0"){
$rep_bars = '<img src="images/rep_bars/rep_neu.png">';
}
else if (
$post['reputation'] > "0" && $post['reputation'] <= "10"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "11" && $post['reputation'] <= "20"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "21" && $post['reputation'] <= "30"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "31" && $post['reputation'] <= "40"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "41" && $post['reputation'] <= "50"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "51" && $post['reputation'] <= "60"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "61" && $post['reputation'] <= "70"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "71" && $post['reputation'] <= "80"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] >= "81" && $post['reputation'] <= "90"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
else if (
$post['reputation'] > "90"){
$rep_bars = '<img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png"><img src="images/rep_bars/rep_pos.png">';
}
$rep_points = $post['reputation'];
eval(
"\$post['rep_bars'] = \"".$templates->get("rep_bars")."\";");
$post['user_details'] = str_replace($post['userreputation'], $post['rep_bars'], $post['user_details']);
}
}
?>
Páginas (2): 1 2   
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.