vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin Tips & Tricks (https://vborg.vbsupport.ru/forumdisplay.php?f=239)
-   -   Show Phrase Variable Names (https://vborg.vbsupport.ru/showthread.php?t=215930)

Andreas 06-10-2009 10:00 PM

Show Phrase Variable Names
 
Sometimes it might be handy to see phrase variable names instead of text on frontend pages - this little plug-in does that for you (with some exceptions like error/redirect messages and dynamically loaded phrasegroups).

style_fetch
PHP Code:

if ($vbulletin->debug)
{
    foreach (
$vbphrase AS $key => $phrase)
    {
        
$vbphrase["$key"] = "*$key*";
    }



HolyKiller 06-11-2012 06:02 AM

Any way how to do this on vB 4.x ?

Thx

kh99 06-12-2012 09:20 PM

Try using hook [S]global_bootstrap_complete[/S] (use style_fetch, see below) and add:

Code:

global $vbulletin, $vbphrase;

to the beginning of the code.

HolyKiller 06-13-2012 09:59 AM

THANKS!!! It's working now ! :]

EDIT: With that hook you suggested not all of the phrase varnames are shown, anyway style_fetch hook will do the trick on th ewhole forum.


So, to have all info at one place ...

1] Edit config.cfg and add following line
Code:

$config['Misc']['debug'] = true;
2] Create new plugin
Hook Location: style_fetch
Code:

Code:

global $vbulletin, $vbphrase;
if ($vbulletin->debug)
{
    foreach ($vbphrase AS $key => $phrase)
    {
        $vbphrase["$key"] = "*$key*";
    }
}

Refresh forum (it can take a while)


Credits to Andreas and kh99 :]


All times are GMT. The time now is 11:25 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.02356 seconds
  • Memory Usage 1,713KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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