vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   $variable inside vbulletin conditions (https://vborg.vbsupport.ru/showthread.php?t=319018)

Mickie D 06-10-2015 10:35 AM

$variable inside vbulletin conditions
 
Hi all,

I have a fairly simple question, I have tried numerous ways of doing this with out much luck

Writing a basic modification for my site and it uses vbulletin usergroup permissions to access it.

I wanted to do something like this but it does not work

PHP Code:


$webspace_canuse_global 
'6, 7, 18';

if (!
is_member_of($vbulletin->userinfo$webspace_canuse_global))  {
    
print_no_permission();
}else{

// do the script 

It works if I put the 6,7,18 in place of the variable, what am i doing wrong...


I am going to make a backend that uses SQL in the future so the variable will end up being a call to the database...

Black Snow 06-10-2015 10:53 AM

Have you tried it with double quotes instead of singles?
Code:

$webspace_canuse_global = "6, 7, 18";

Mickie D 06-10-2015 10:56 AM

Quote:

Originally Posted by Black Snow (Post 2547529)
Have you tried it with double quotes instead of singles?
Code:

$webspace_canuse_global = "6, 7, 18";

yep tried that, I also tried putting the variable in "" inside the array

Cheers
Mick

Black Snow 06-10-2015 11:02 AM

If this doesn't work:
Code:

$webspace_canuse_global = '6,7,18';

if (!is_member_of($vbulletin->userinfo, $webspace_canuse_global))  {
    print_no_permission();
}else{

// do the script

Try this:
Code:

$webspace_canuse_global = '6,7,18';

if (!is_member_of($vbulletin->userinfo, explode(',', $webspace_canuse_global))) {
    print_no_permission();
}else{

// do the script

--------------- Added [DATE]1433941567[/DATE] at [TIME]1433941567[/TIME] ---------------

Oh, and keep the numbers seperated by commas only. Not commas and spaces.

Mickie D 06-10-2015 11:51 AM

explode worked (thank you), I had a feeling it might need explode, just thought there would be a more kinder way to do it.

Regards
Mick


All times are GMT. The time now is 10:45 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.01080 seconds
  • Memory Usage 1,722KB
  • 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
  • (4)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
  • (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