PDA

View Full Version : Need help tweaking a plugin's php code


projectego
08-16-2007, 03:59 PM
Hi all,

PHP newbie here. I hope a member of the community can help lend a hand and possibly find a solution to this. :)

I'm currently using Kall's rel="nofollow" attribute in parsed URLs hack (https://vborg.vbsupport.ru/showthread.php?t=93780) and it is fantastic. Definite candidate for plugin of the century in my opinion. ;)

However, I'm currently trying to tweak the plugin's php code so that the 'rel="external nofollow" tag applies to everyone's links except the primary Super Administrator with the userid of 1. At the moment, the code looks like:

$this->tag_list['no_option']['url']['callback'] = 'handle_external';
$this->tag_list['no_option']['url']['external_callback'] = 'handle_bbcode_url_relnofollow';
$this->tag_list['option']['url']['callback'] = 'handle_external';
$this->tag_list['option']['url']['external_callback'] = 'handle_bbcode_url_relnofollow';

if (!function_exists('handle_bbcode_url_relnofollow') )
{
function handle_bbcode_url_relnofollow(&$parser, $text, $link)
{
global $post;
// Excempt Admins with more than 395 posts
$parsedurl = $parser->handle_bbcode_url($text, $link);
if (is_member_of($post, 6) AND $post['posts'] > 395)
{
return $parsedurl;
}
else
{
return str_replace('href="', 'rel="external nofollow" href="', $parsedurl);
}
}
}

This will exempt all admins from having a rel="nofollow" attribute added to their links - I however would prefer for only me to be exempt from this. So, if possible, I would basically like the 'usergoup' altered to a 'userid'... part.

Would anyone be so kind as to post what might area might need to be altered in order to accomplish this? I also wouldn't mind if the minimum post count limit was removed from there too. I unfortunately can't seem to do this without causing an error! Heh.

I would be eternally grateful and be forever in love with you; Wish I could offer more but that's all I've got! ;)

Thank you very much for reading.

Eikinskjaldi
08-16-2007, 08:31 PM
replace this

if (is_member_of($post, 6) AND $post['posts'] > 395)

with this

if ($vbulletin->userinfo['userid'] == 1)

projectego
08-16-2007, 08:39 PM
Awesome! Thank you very much. :)

Just one last quick question: If I wanted to add additional userids to the equation - would this work?

if ($vbulletin->userinfo['userid'] == 1,2,666)

Opserty
08-16-2007, 09:07 PM
if(in_array($vbulletin->userinfo['userid'], array(1,2,3,4)))

There might be a parse error in there its late so :P

projectego
08-17-2007, 10:30 AM
Hi,

I just realised after testing both that neither work. Even links contained within my own posts have an rel="external follow" tagged on. Is there anything else that might work?

Dismounted
08-17-2007, 11:02 AM
Replace:
if (is_member_of($post, 6) AND $post['posts'] > 395)
With:
if (in_array($post['userid'], array(1,2,3,4)))