vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   help with php code, vbulletin (https://vborg.vbsupport.ru/showthread.php?t=232928)

fearfx 01-12-2010 10:31 PM

help with php code, vbulletin
 
PHP Code:

if ($show['pmstats']) { 
construct_phrase("phr"$vbphrase['unread_x_nav_compiled'], $vbphrase['total_x_nav_compiled'], $session['sessionurl_q']); 
echo 
'<div style="font-size: 11px; padding-left: 5px; padding-top: 5px;"><phrase 1="'.$vbphrase['unread_x_nav_compiled'].'" 2="'.$vbphrase['total_x_nav_compiled'].'" 3="'.$session['sessionurl_q'].'">'.$vbphrase['private_messages_nav'].'</phrase></div>';  


This is my code, phrase 2, and 3 do not show properly, and I cannot figure out what is wrong.

This is what shows: Private Messages: %1$s, %2$s.


This is what should show: Private Messages: Unread 0, Total 92.

Any help, I would appreciate very much. Thanks!

kh99 01-13-2010 06:06 PM

I've never done that before, but looking at the construct_phrase code, I see these comments at the beginning:

Code:

// #############################################################################
/**
* Construct Phrase
*
* this function is actually just a wrapper for sprintf but makes identification of phrase code easier
* and will not error if there are no additional arguments. The first parameter is the phrase text, and
* the (unlimited number of) following parameters are the variables to be parsed into that phrase.
*
* @param        string  Text of the phrase
* @param        mixed  First variable to be inserted
* @param        mixed  Nth variable to be inserted
*
* @return      string  The parsed phrase
*/



So this is untested, but I would think you'd want something like:

Code:

if ($show['pmstats']) { 
echo '<div style="font-size: 11px; padding-left: 5px; padding-top: 5px;>'.
        construct_phrase($vbphrase['private_messages_nav'],
                                    $vbphrase['unread_x_nav_compiled'],
                                    $vbphrase['total_x_nav_compiled'],
                                    $session['sessionurl_q']). '</div>'; 
}


but it's also possible that I just don't understand what's going on....

fearfx 01-13-2010 09:10 PM

no that doesn't work, I know the code I posted above is in the right direction, it sorta works...

Can anyone out here help please?

kh99 01-13-2010 10:46 PM

I had an extra " in there, you might try it again.

It's funny, I have to admit I was wondering what you were doing there, now I see you tried to follow something I suggested in another thread. But in that thread the "phr" was just an example, not meant to be literal, it should be replaced with the actual phrase you're constructing (which in this case I believe is $vbphrase['private_messages_nav'].

Also you have a <phrase> tag in your output, but that's a tag to be used in templates so I don't think you should be 'echoing' it as output. I think "construct_phrase" does the same thing in a php program so you should be using the return value of that as part of your output.

Just wanted to clarify what I was trying to say - if anyone else wants to help, go for it. :)

fearfx 01-15-2010 07:19 PM

Ok, that works.

Question though, the word Private Messages, that outputs, how do I add a link to that?

kh99 01-15-2010 07:47 PM

Hmm...it should be a link already, I think. The default value for that phrase includes the html tags to make the words "Private Messages" a link.


All times are GMT. The time now is 01:48 PM.

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.02409 seconds
  • Memory Usage 1,725KB
  • 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_code_printable
  • (1)bbcode_php_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