vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Generate a variable usable in templates (https://vborg.vbsupport.ru/showthread.php?t=153436)

eisstern 07-26-2007 07:34 AM

Generate a variable usable in templates
 
Hello,
I need a variable which i can insert into the navbar template. I want to use the plugin system of 3.6.7.
The variable should only be generated if a user is logged in. I thougth this should work:

Plugin:
hook: parse_templates
PHP Code:

if($bbuserinfo['userid'] >= 0){
  global 
$htSid;
  
$htSid "Dummy";  


Template:
HTML Code:

<if condition="$bbuserinfo['userid'] >= 0">
        <td class="vbmenu_control"><a href="http://domain/index.php?VAR=$htSid">My link</a></td>
</if>

The link appears in the forntend, but not the variable appended to the url. Did I something wrong in the plugin (wrong hook or bad variable declaration)?

Thanks for your help in advance :)

ragtek 07-26-2007 07:48 AM

you could make it like this:
in the template:
Code:

<if condition="$show['member']">show to registered..
<td class="vbmenu_control"><a href="http://domain/index.php?VAR=Dummy">My link</a></td>

</if>


eisstern 07-26-2007 07:57 AM

Yes, that was my first thought, but the $htSid will be filled with a dynamic content (from a soap client). "Dummy" was only a test if the content of the variable is displayed in general. So how can I use this variable?
But thanks for your help ;)

ragtek 07-26-2007 08:28 AM

have you tried another hook?
like global_complete?

eisstern 07-26-2007 09:00 AM

Yes, I tried:
  • parse_templates
  • global_start
  • global_complete
  • fetch_userinfo

No content of the variable is displayed. Maybe I have to implement the variable in a different way? :(

SDB 07-26-2007 01:26 PM

you need $userinfo, not $bbuserinfo :)

sorry.. by that I mean "in the hook".. you still need bbuserinfo in the template.

Kirk Y 07-26-2007 06:27 PM

Actually in plugins you use $vbulletin->userinfo.


All times are GMT. The time now is 01:21 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.00962 seconds
  • Memory Usage 1,723KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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