vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Registering $variables for Forumhome (https://vborg.vbsupport.ru/showthread.php?t=289321)

TheSupportForum 10-19-2012 02:19 PM

Registering $variables for Forumhome
 
Hello

i need help with registering some $variables for use in Forumhome
within a plugin, the variables are already registered within a admincp file

but i want to show the same data from those $variables in a plugin
for the following Hook Location: forumhome_complete

i need to output data from $whattoecho variable

so the question is how do i register this variable to work in the plugin

kh99 10-19-2012 03:04 PM

I'm not sure what you're asking. You only need to register variables for use in a template, not a plugin. So when you say "the variables are already registered within a admincp file", what does that mean exactly? Maybe you're Using "registered" in some way other than what I think it means?

TheSupportForum 10-19-2012 03:17 PM

Quote:

Originally Posted by kh99 (Post 2374270)
I'm not sure what you're asking. You only need to register variables for use in a template, not a plugin. So when you say "the variables are already registered within a admincp file", what does that mean exactly? Maybe you're Using "registered" in some way other than what I think it means?

say for example in my admincp file whatever.php
i have the following variables registered :

PHP Code:

$whattoecho "";
if (
$httpbl != 0) {
    
$whattoecho .= "httpBL: " $httpbl " | ";


i have a template hook i want this information to appear in

PHP Code:

$template_hook[forumhome_wgo_pos2] .= ''

i have already done the following to start it off

http://img833.imageshack.us/img833/5...5fe87212a5.png

now i need the data to appear below that so i need the data from $whattoecho
to appear below that

Lynne 10-19-2012 04:06 PM

I don't see any code that is registering the variables. Cellarius wrote a really good article that you may be interested in - [vB4] Rendering templates and registering variables - a short guide It will show you the code to register your variables for use in the FORUMHOME template.

kh99 10-19-2012 04:41 PM

Quote:

Originally Posted by simonhind (Post 2374272)
now i need the data to appear below that so i need the data from $whattoecho to appear below that

You need to calculate $whattoecho in a plugin that's called when the forumhome page is being displayed. It doesn't do any good to have it in an admincp script - you can't register it to a template from there. If you can build $whattoecho in the forumhome_complete plugin, then that's what you want to do. If there's no way to do it from there, then you'd have to figure out a way to save it in the database and read it back in when you need it.

If you do have the value in the forumhome_complete plugin, if you're using a template hook thenyou don't need to register the variable.

TheSupportForum 10-19-2012 05:40 PM

Quote:

Originally Posted by Lynne (Post 2374282)
I don't see any code that is registering the variables. Cellarius wrote a really good article that you may be interested in - [vB4] Rendering templates and registering variables - a short guide It will show you the code to register your variables for use in the FORUMHOME template.

Quote:

Originally Posted by kh99 (Post 2374298)
You need to calculate $whattoecho in a plugin that's called when the forumhome page is being displayed. It doesn't do any good to have it in an admincp script - you can't register it to a template from there. If you can build $whattoecho in the forumhome_complete plugin, then that's what you want to do. If there's no way to do it from there, then you'd have to figure out a way to save it in the database and read it back in when you need it.

If you do have the value in the forumhome_complete plugin, if you're using a template hook thenyou don't need to register the variable.

thank you both, i managed in the end to do it with both your help


All times are GMT. The time now is 02:17 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.01042 seconds
  • Memory Usage 1,731KB
  • 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
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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