vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   if (THIS_SCRIPT != 'register') question (https://vborg.vbsupport.ru/showthread.php?t=249659)

slobra 08-31-2010 03:31 AM

if (THIS_SCRIPT != 'register') question
 
Hello,

Lynne helped me setup this hook (global_start) to exclude displaying sponsor images on register.php:

Code:

if (THIS_SCRIPT != 'register') {
ob_start();
include('/home/user/domain.com/forums/sponsors.php');
$includedphp = ob_get_contents();
ob_end_clean();
}


Thanks Lynne! Now I'm trying to also exclude showing the images in a specific forum. I think there's an <if> statement I can use, but I'm not sure. How would I add the forum number "f=59" to the exclusion? Thanks in advance for any tips!

Keith

Lynne 08-31-2010 04:09 AM

You might be able to just add "AND $forumid != 59" to the condition.

slobra 08-31-2010 02:46 PM

Worked perfectly, thanks as always Lynne! :D For anyone interested I added the code in red:

Code:

if (THIS_SCRIPT != 'register' AND $forumid != '59') {
ob_start();
include('/home/user/domain.com/forums/sponsors.php');
$includedphp = ob_get_contents();
ob_end_clean();
}



All times are GMT. The time now is 12:27 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.00900 seconds
  • Memory Usage 1,709KB
  • 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)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