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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-18-2005, 01:58 AM
MyvB8MyIPS MyvB8MyIPS is offline
 
Join Date: Apr 2005
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default What's wrong with this flashing code?

We're trying to make a flashing PM indicator. The reason why we can't use one of the others already out is because our style already uses a gif image in the background for the PM section. So what we're trying to do is to make it flash when a new PM arrives. The second image is called pmalert.gif. Ypu can ignore the mem_left.gif and mem_right.gif images. Here is the code that we've made so far:

HTML Code:
  <!-- nav buttons bar -->
<div align="center">
<table width="30%" cellpadding="0" cellspacing="0" align="center"><tr>
<td><img src="$stylevar[imgdir_misc]/mem_left.gif" alt="" border="0" /></td>
<td width="50%" class="membersbar">
</td>
<td width="40%" align="center" class="membersbar">
<if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
<else />
<if condition="$bbuserinfo['pmunread']"> 
				 <img src="$stylevar[imgdir_misc]/pmalert.gif" alt="" border="0" />
	</if> 
</td>
<td><img src="$stylevar[imgdir_misc]/mem_right.gif" alt="" border="0" /></td>
</tr></table>
</div>
<!-- / nav buttons bar -->
The problem is that the "else" tag isn't working, and when a PM arrives it tries to display TWO images there at the same time Is there a way that we can fix this so that it switches to the other image wien a PM arrives?

Thanks.
Reply With Quote
  #2  
Old 04-18-2005, 02:53 AM
Jolten Jolten is offline
 
Join Date: Mar 2004
Posts: 749
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<if condition="">

stuff

<else />

stuff

</if>
Reply With Quote
  #3  
Old 04-18-2005, 03:37 AM
MyvB8MyIPS MyvB8MyIPS is offline
 
Join Date: Apr 2005
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you saying to make it like this?

HTML Code:
 <if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
<else />
			 <img src="$stylevar[imgdir_misc]/pmalert.gif" alt="" border="0" /> 
	</if>

Because we're getting an error when we try that:

Quote:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/virtual/site140/fst/var/www/html/vbforum/includes/adminfunctions_template.php(3096) : eval()'d code on line 124


Reply With Quote
  #4  
Old 04-18-2005, 11:11 PM
Jolten Jolten is offline
 
Join Date: Mar 2004
Posts: 749
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You've simply got the tags wrong.

You have:

<if condition=="">
stuff
</if>
<else />
<if condition="">
</if>

What you need is:
<if condition="">
stuff
<else />
<if condition="">
stuff
</if>
</if>

The basic structure is <if> blah <else /> blah </if> If youwant to embed an conditional with in the else statement then it needs to be self contained so <if> blah <else /> <if>blah</if> </if> but the wrapping conditional needs to still maintain the same structure.

HTML Code:
  <!-- nav buttons bar -->
<div align="center">
<table width="30%" cellpadding="0" cellspacing="0" align="center"><tr>
<td><img src="$stylevar[imgdir_misc]/mem_left.gif" alt="" border="0" /></td>
<td width="50%" class="membersbar">
</td>
<td width="40%" align="center" class="membersbar">
<if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase>
<else />
	<if condition="$bbuserinfo['pmunread']"> 
      <img src="$stylevar[imgdir_misc]/pmalert.gif" alt="" border="0" />
    </if> 
 </if>
</td>
<td><img src="$stylevar[imgdir_misc]/mem_right.gif" alt="" border="0" /></td>
</tr></table>
</div>
<!-- / nav buttons bar -->
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 07:05 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.03936 seconds
  • Memory Usage 2,202KB
  • 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
  • (3)bbcode_html
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (4)post_thanks_box
  • (4)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit_info
  • (4)postbit
  • (4)postbit_onlinestatus
  • (4)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete