Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 01-28-2010, 01:40 PM
ARP ARP is offline
 
Join Date: Mar 2009
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK Lynne, It's registered now, However the first post condition doesn't work and If I remove the If tag it's working and rendering the template.
HTML Code:
<vb:if condition="$post[postcount] == 1">
{vb:raw arp_var}
</vb:if>
Plug-in :
PHP Code:
$arp_var "{vb:raw thread.title}";

$templater vB_Template::create('ARP_TEMPLATE');
$templater->register('arp_var'$arp_var);
$template_hook["postbit_end"] .= $templater->render(); 
I Sure the plug-in is correct and it's render the template and working fine If I remove the if tags. So the problem now what's the first post if condition ?
Reply With Quote
  #12  
Old 01-28-2010, 02:43 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To see if it's the first post, use this condition:
HTML Code:
<vb:if condition="$post['postid'] == $thread['firstpostid']">
{vb:raw arp_var}
</vb:if>
(You are the second person in less than 12 hours to bring up that the postcount condition doesn't work. I'm not sure why and haven't had a chance to look into it - sleep got in the way. )
Reply With Quote
  #13  
Old 01-28-2010, 07:08 PM
James Birkett James Birkett is offline
 
Join Date: Jun 2009
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Could it be that you are using 1, the boolean value for true?

Have you tried:
Code:
<vb:if condition="$post[postcount] == '1'">{vb:raw arp_var}</vb:if>
Reply With Quote
  #14  
Old 01-28-2010, 07:18 PM
derfelix derfelix is offline
 
Join Date: Nov 2001
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

shouldnt you also register post variable in your template?

Code:
$arp_var = "{vb:raw thread.title}";

$templater = vB_Template::create('ARP_TEMPLATE');
$templater->register('arp_var', $arp_var);
$templater->register('post', $post);
$template_hook["postbit_end"] .= $templater->render();
just a thought..
F.
Reply With Quote
  #15  
Old 01-28-2010, 08:39 PM
ARP ARP is offline
 
Join Date: Mar 2009
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
To see if it's the first post, use this condition:
HTML Code:
<vb:if condition="$post['postid'] == $thread['firstpostid']">
{vb:raw arp_var}
</vb:if>
(You are the second person in less than 12 hours to bring up that the postcount condition doesn't work. I'm not sure why and haven't had a chance to look into it - sleep got in the way. )
It's doesn't work , Maybe It's a vbulletin bug ? Please check vbulletin files again lynne. Thanks for your time.

Also all other suggests doesn't work.
Reply With Quote
  #16  
Old 01-28-2010, 09:12 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is no bug, you must register any variables used in the template, including those in the conditionals (certain ones like $show are auto available).

In you case, you must register both $post and $thread (in blue).

Code:
$arp_var = "{vb:raw thread.title}";

$templater = vB_Template::create('ARP_TEMPLATE');
$templater->register('arp_var', $arp_var);
$templater->register('post', $post);
$templater->register('thread', $thread);
$template_hook["postbit_end"] .= $templater->render();

Also, I dont know what the line is red is for, but all you will output is the text {vb:raw thread.title}
Reply With Quote
  #17  
Old 01-28-2010, 10:54 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You haven't registered the $thread variable for use in your template, so it's not going to work.

Any variable array you want to use in a template must be registered.
Reply With Quote
  #18  
Old 01-29-2010, 09:06 AM
ARP ARP is offline
 
Join Date: Mar 2009
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M View Post
There is no bug, you must register any variables used in the template, including those in the conditionals (certain ones like $show are auto available).

In you case, you must register both $post and $thread (in blue).

Code:
$arp_var = "{vb:raw thread.title}";

$templater = vB_Template::create('ARP_TEMPLATE');
$templater->register('arp_var', $arp_var);
$templater->register('post', $post);
$templater->register('thread', $thread);
$template_hook["postbit_end"] .= $templater->render();

Also, I dont know what the line is red is for, but all you will output is the text {vb:raw thread.title}
You are great my friend, It's worked perfect and thanks to MARCO1 Who have send to me the working if condition for the first post.

Thanks All is working now.

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

Quote:
Originally Posted by Lynne View Post
You haven't registered the $thread variable for use in your template, so it's not going to work.

Any variable array you want to use in a template must be registered.
Thanks Lynne for your help and your great support.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:59 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04290 seconds
  • Memory Usage 2,249KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (3)bbcode_html
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (8)postbit_onlinestatus
  • (8)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete