PDA

View Full Version : admin you plugin


TrueDeath
07-23-2005, 02:55 PM
Hi, can any1 code a "You" thing for administrators, i wish to use it for news articles, i.e Hello "you" bla bla, but it must be admin only so it dont get used by those who will make it confusing.

Logikos
07-23-2005, 03:38 PM
Well i tried adding this:


global $bbuserinfo;
$bbcode = str_replace("/you","<font color=\"#2DA72E\"><i>" .$bbuserinfo['username']. "</i></font> ",$bbcode);


After:

// some nasty code so that characters like >) and ") dont have a space
// why do we have that anyway :confused:
$bbcode = str_replace(array("&gt;\xE4)", "&lt;\xE4)", "&quot;\xE4)"), array('&gt;)', '&lt;)','&quot;)'), $bbcode);
} // end smilies


Just to get the /you part working and it is not working as expected. If it did i was just gonna throw a condition around it to check if its a admin posting or not.

But i must leave for awhile, maybe someone else can try.

TrueDeath
07-24-2005, 08:41 AM
where did you put that?

Logikos
07-24-2005, 04:17 PM
/forum/includes/functions_bbcodephrase.php

The old /you and /me hack is edited there as well, so it should be the same. But was not working for me.