vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Removing code via plugin? (https://vborg.vbsupport.ru/showthread.php?t=194938)

Jinovich 10-29-2008 04:01 PM

Removing code via plugin?
 
At the moment we have to manually edit our infraction.php file so that our forum moderators may infract our "VIPS" who are in a different usergroup but are moderators of their very own subforum.

This works brilliantly and exactly how I wanted it over the last two years.

However I want to see if it is possible to incorporate this manual edit as a plugin to stop the neccessity for manual code edits.

the code in question is,

Code:

        ($hook = vBulletinHook::fetch_hook('infraction_verify_permissions')) ? eval($hook) : false;

        // moderators will have the infraction icon on their posts due to the overhead of checking moderator status on showthread
        // Only Admins & Supermods may give infractions to moderators
        // really could use a bit in user that is set when an user is a moderator of any forum to avoid this

        $uglist = $userinfo['usergroupid'] . iif(trim($userinfo['membergroupids']), ",$userinfo[membergroupids]");
        if (can_moderate(0, '', $userinfo['userid'], $uglist)
                AND !($vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel'])
                AND !($vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['ismoderator'])
        )
        {
                eval(standard_error(fetch_error('you_are_not_allowed_to_warn_moderators')));
        }

I want to use the verify infraction permissions hook to ignore the whole block of code below it, any suggestions as to how I could do this?

Jinovich 11-01-2008 02:42 PM

No one able to advise on this?

Lynne 11-01-2008 04:00 PM

I'm not sure if you can use the hook for it since what you really need is to set a condition to then skip the code below. Or actually, maybe what you need to do is use the hook to set a paramenter that will make it so that error doesn't get evaled.... hmmmm....
PHP Code:

if (can_moderate(0''$userinfo['userid'], $uglist)
        AND !(
$vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel'])
        AND !(
$vbulletin->userinfo['permissions']['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['ismoderator'])


Do you know which of those conditions they are failing? If you do, set the condition in the hook to not fail. (I apologize if I'm not making complete sense right now as I've only had one cup of coffee so far.)


All times are GMT. The time now is 08:05 PM.

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.01528 seconds
  • Memory Usage 1,719KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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