vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Template hook prob (https://vborg.vbsupport.ru/showthread.php?t=282973)

soniceffect 05-15-2012 08:19 PM

Template hook prob
 
Hi guys,
I am just having a play at trying to modify vbulletin. For a first play about I want to try and hook into the templates.

I have used the following in the process_templates_complete hook location as I want the code to be executed on all areas of the forum in the header. Now I couldnt get it to work in the header, so I moved which template hook I was using and it worked. I dont understand why, please could someone let me know what I am doing wrong :(


This code works fine.

PHP Code:

$templater vB_Template::create('SonicModbar_MainBar');
$templater->register('smb',$smb);  
$template_hook['forumhome_above_forums'] .= $templater->render(); 

However it's not working when I change the hook I am using

PHP Code:

$templater vB_Template::create('SonicModbar_MainBar');
$templater->register('smb',$smb);  
$template_hook['header_userinfo'] .= $templater->render(); 


Help!!! LOL ... Im going insain


The template btw is called SonicModbar_MainBar and simply contains the words "Blah blah blah" so there is nothing detailed in there.

kh99 05-15-2012 10:30 PM

The code at hook location process_templates_complete is executed after the header template is rendered, so setting a template hook that's in the header template doesn't do anything - it's too late. If you change to using hook location parse_templates it should work.

soniceffect 05-16-2012 06:21 AM

Top man. Cheers for that, will have another play later


All times are GMT. The time now is 01:47 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.00939 seconds
  • Memory Usage 1,715KB
  • 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)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