View Single Post
  #5  
Old 06-08-2012, 05:19 PM
codewaggle codewaggle is offline
 
Join Date: Dec 2011
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The first forum was ID 25, so all three lines in my template worked, I saw:
25 25 Show this if forum id is 25

I added the include to all four forumbit templates:
forumhome_forumbit_level2_post
forumhome_forumbit_level2_nopost
forumhome_forumbit_level1_post
forumhome_forumbit_level1_nopost

But the output only appeared next to the first forum listing.

For the include, I used the ad_location array when using the hook on forum.php because it was registered there:
$ad_location['board_inside_forum_listing']

I used the forum array when I used the forumbit_display hook because the forum array was being registered there:
$forum['board_inside_forum_listing']


I'll try using the ad_location array while using the forumbit_display hook and check through my code for mistakes.

Be Well

--------------- Added [DATE]1339184649[/DATE] at [TIME]1339184649[/TIME] ---------------

One more time.

Here is my plugin code:
Code:
ob_start();
  require_once('includes/plugin_marbuzz_insert_block_hook_forumhome_start.php');
  $marbuzz_insert_block_forumhome_start = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('ad_board_inside_forum_listing',array('marbuzz_insert_b
Here is the code in the file called by the plugin:
Code:
array_push($globaltemplates, 'ad_board_inside_forum_listing');
$template = vB_Template::create('ad_board_inside_forum_listing');
$template->register('forumid', $forumid);

$ad_location['board_inside_forum_listing'] = $template->render();
OR
$forum['board_inside_forum_listing'] = $template->render();

print $forumid;
echo $forumid;
Here is the code in my template named "ad_board_inside_forum_listing":
Code:
test
{vb:var forumid}
{vb:raw forumid}
<vb:if condition="$forumid == 25">Show this if forum id is 25</vb:if>

{vb:var marbuzz_forumbit_display_hook}
{vb:raw marbuzz_forumbit_display_hook}
<vb:if condition="$marbuzz_forumbit_display_hook== 25">Show this if forum id is 25</vb:if>
Here's the code I place in "forumhome_forumbit_level2_post" and the other forumbit files:
Code:
{vb:raw ad_location.board_inside_forum_listing}
OR
{vb:raw forum.board_inside_forum_listing}
Case A:
Use the forumhome_start hook and the $ad_location variable. The text appears next to each forum name, no ID.

Case B:
Use the forumbit_display hook and the $ad_location variable. Nothing appears.

Case C:
Use the forumbit_display hook and the $forum variable. THe Text and ID appears next to the name of the first forum only.

I tried echoing and printing the ID and then using the plugin variable "marbuzz_insert_block_forumhome_start" to display it, but nothing there.

Any idea why it doesn't work past the first forum?
Be Well
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01041 seconds
  • Memory Usage 1,774KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete