vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   is_member_of info (https://vborg.vbsupport.ru/showthread.php?t=206276)

Trek 02-22-2009 10:35 PM

is_member_of info
 
First, if there's somewhere that lists vB functions, please point me in the right direction.

That being said, I'm trying to do something like this

Code:

if (is_member_of(3,5,6)) {
Do stuff
}

Basically, pass in the memberID that I want to check. Since this isn't the ID of the member online, but one I have stored in the DB. So I want to see if member ID 3, is in usergroups 5 or 6. Is this possible?

1Unreal 02-22-2009 10:50 PM

http://www.vbulletin.com/docs/html/t...e_conditionals

Code:

<if condition="is_member_of($vbulletin->userinfo, 3, 5, 6)">
Do stuff
</if>


Lynne 02-22-2009 11:02 PM

And to see more than you ever thought you would want to see, the vB API - http://members.vbulletin.com/api/

Post 2 is for templates. For plugins:

PHP Code:

if (is_member_of($your_user_info3,5,6))  
{
whatever



Trek 02-22-2009 11:54 PM

This helped perfectly, thank you! Basically I used fetch_userinfo with the user number I had, then used that in the is_member_of function. Works great, thanks again!

Dismounted 02-24-2009 04:52 AM

If you are using the current user, you don't need to use fetch_userinfo(). (If otherwise, that's fine. :p)

Trek 02-24-2009 09:58 PM

Quote:

Originally Posted by Dismounted (Post 1753010)
If you are using the current user, you don't need to use fetch_userinfo(). (If otherwise, that's fine. :p)

Yup, using other users. Basically I made a quick mod that goes through a custom user profile field (SMS Address) and then text's anyone that has filled it out and is in the proper user groups.

So the check was to make sure each user that has that field filled out, is in the user group I allow to get text messages from the website.

The only odd thing is, the person that sends the message, never gets text'd, everyone else does though.

Dismounted 02-25-2009 06:33 AM

It looks like your dealing with multiple users (and hence multiple calls to fetch_userinfo). In this case, you probably want to run a query that fetches all the users at once (fetch_userinfo() will run one query every time it is called).


All times are GMT. The time now is 12:58 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.01025 seconds
  • Memory Usage 1,726KB
  • 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
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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