vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   <if> statements, check secondary usergroups? (https://vborg.vbsupport.ru/showthread.php?t=83176)

N8 06-16-2005 01:38 AM

<if> statements, check secondary usergroups?
 
I need something displayed for all users in usergroup x, and everyone that has x as a secondary usergroup.

How would I check in an if statement if they have the usergroup as a secondary?

------

amykhar 06-16-2005 01:39 AM

You use the function is_member_of. Like this:
Code:

if(is_member_of($bbuserinfo,x) {
do this
}


N8 06-16-2005 01:40 AM

Awesome, Thanks for the quick response.

Quarterbore 05-25-2006 05:55 PM

I need to use this in the context that I have a secondary group that will be allowed to edit data in part of my website...

My usergroup that I am using to give access is group 35.

Following is the code I tried to use:

Code:

        if(is_member_of($bbuserinfo,35)) {
                echo " Database Team";
        }

When I put my test account on primary = Registered and Secondary = 35 I am not getting the "Database Team" being output....

My script was built outside of vBulletin and I am in the process of integrating it now....

Is it possible this has changed for vb3.5?

Paul M 05-25-2006 06:14 PM

It's changed, in 3.5 use ;

Code:

if(is_member_of($vbulletin->userinfo,35)) {
        echo " Database Team";
}



All times are GMT. The time now is 07:20 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.03956 seconds
  • Memory Usage 1,707KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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