vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need help tweaking a plugin's php code (https://vborg.vbsupport.ru/showthread.php?t=155410)

projectego 08-16-2007 03:59 PM

Need help tweaking a plugin's php code
 
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 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:

Code:

$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?

Code:

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

Opserty 08-16-2007 09:07 PM

PHP Code:

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:
PHP Code:

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

With:
PHP Code:

if (in_array($post['userid'], array(1,2,3,4))) 



All times are GMT. The time now is 02:22 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01116 seconds
  • Memory Usage 1,730KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete