vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Question about calling PHP functions within a thread (https://vborg.vbsupport.ru/showthread.php?t=214667)

MoH672 05-27-2009 05:14 PM

1 Attachment(s)
Sure, sorry I haven't been able to describe it accurately.

https://vborg.vbsupport.ru/attachmen...1&d=1243448066

Of course, I don't want it to be in quote tags I just included that for formatting reasons.

Lynne 05-27-2009 05:42 PM

OK, but this is only one specific post (the first post) in one specific thread, right?

MoH672 05-27-2009 05:43 PM

Correct.

Lynne 05-27-2009 07:18 PM

I still think a page is a better idea cuz if you do it in a thread, that means you are going to be doing some sort of condition to check the thread id every single time someone hits the showthread page.

But if you want to do it in a thread, I'd create a plugin at the hook location I suggested and first do a condition to check the thread id. If that passes, check the post id. If that passes, then do some conditions based on the usergroup and concatenate your stuff to the $post[messagetext] (or whatever it's called).

MoH672 05-28-2009 12:22 PM

Ok, so I guess that brings me to a new question.

I've created a new page called calculator.php (at myforums.com/forums/calculator.php) using this tutorial and want to restrict the page to certain usergroups. I have tried the following:

PHP Code:

<?php
if ( $bbuserinfo[usergroupid] == ) {
    echo 
"<font face='Tahoma' size='4' color='#FFFFFF'>This is 
a test using permissions in PHP.</font>"
;
}
else {
    echo 
"<font face='Tahoma' size='4' color='#FFFFFF'>You do 
not have permission to access this page.</font>"
;
}
?>

But it still returns "You do not have permission to access this page." even though I am in the proper usergroup. What am I doing wrong?

Lynne 05-28-2009 12:59 PM

Use this:
PHP Code:

if (!isset($vbulletin->userinfo['userid']) OR $vbulletin->userinfo['userid'] == OR !is_member_of($vbulletin->userinfo,x,y,z))
{
    
print_no_permission();


Change x,y,z to the usergroup ids you *want* to allow - all others will get No Permission - or modify the print_no_permission per your code above.


All times are GMT. The time now is 12:30 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.01121 seconds
  • Memory Usage 1,728KB
  • 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_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete