vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Accessing variable of one plugin from another (https://vborg.vbsupport.ru/showthread.php?t=257545)

CvP 01-21-2011 08:15 PM

Accessing variable of one plugin from another
 
Say I have a variable $myvar in global_bootstrap_complete.
How do I access it from postbit_display_complete?

Also, what do the "shaded" hooks mean in debug info?

Lynne 01-21-2011 10:04 PM

Shaded means the hook is available but not being used by an active plugin on that page.

Usually the variable should be available for use. However, sometime a hook is in a function and you may have to globalize the variables in order to use it there.

CvP 01-21-2011 11:12 PM

Can you show me an example? I tried using global before, it didn't work.

For example,

global_bootstrap_complete
PHP Code:

global $myvar 5

process_templates_complete
PHP Code:

global $myvar;
$f fopen('debugx.txt''w');
fwrite ($fprint_r($myvartrue));
fclose($f); 

I tried with/without global (and a few combination of hooks) before but debugx.txt is always empty.

Lynne 01-22-2011 12:48 AM

global_bootstrap_complete:
PHP Code:

global $myvar;
$myvar 5

process_templates_complete:
PHP Code:

global $myvar;
other code 


CvP 01-22-2011 08:32 AM

* CvP punches himself.
result of not having proper sleep.

Thanks Lynne :D


All times are GMT. The time now is 04:41 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.02097 seconds
  • Memory Usage 1,717KB
  • 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_php_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