vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to evalute a $vbulletin->option variable in a phrase? (https://vborg.vbsupport.ru/showthread.php?t=144571)

CyberRanger 04-11-2007 02:24 PM

How to evalute a $vbulletin->option variable in a phrase?
 
Anyone know how to make a vbulletin->option variable evaluate in a phrase? I'm trying to use the phrase as part of the description for an admincp setting.

For example, I have the variable $vbulletin->options['throttle_posts_time'] set to 24.

I want my phrase to read:
Quote:

Maximum number of posts in a 24 hour period? Set to -1 for an unlimited number of posts allowed.
I've tried:
Quote:

Maximum number of posts in a {{vbulletin->options['throttle_posts_time']}} hour period? Set to -1 for an unlimited number of posts allowed.
Quote:

Maximum number of posts in a {{$vbulletin->options['throttle_posts_time']}} hour period? Set to -1 for an unlimited number of posts allowed.
Quote:

Maximum number of posts in a $vbulletin->options['throttle_posts_time'] hour period? Set to -1 for an unlimited number of posts allowed.
with no luck. The variable still stays as the string (like {{vbulletin->options['throttle_posts_time']}}) instead of being evaluated. Any ideas?

Thanks!

HMBeaty 04-11-2007 03:11 PM

EDIT: Sorry, didn't fully understand

magnus 04-11-2007 03:15 PM

The phrase should be
Code:

Maximum number of posts in a {1} hour period? Set to -1 for an unlimited number of posts allowed.
Then, call the phrase using:
PHP Code:

construct_phrase($vbphrase['phrase_name'], $vbulletin->options['throttle_posts_time']); 


CyberRanger 04-11-2007 03:30 PM

Quote:

Originally Posted by magnus (Post 1225016)
Then, call the phrase using:
PHP Code:

construct_phrase($vbphrase['phrase_name'], $vbulletin->options['throttle_posts_time']); 


The problem is that the phrase is being displayed as part of the usergroup permissions using an xml file:

Code:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?php construct_phrase($vbphrase['throttle_posts_throttle'], $vbulletin->options['throttle_posts_time']);?>
<bitfields product="throttle_posts">
        <bitfielddefs>
                <group name="ugp">
                        <group name="throttle_postspermissions">
                                <bitfield name="throttle_postspermissions" intperm="true" group="throttle_postspermissions" phrase="throttle_posts_throttle">1</bitfield>
                        </group>
                </group>
        </bitfielddefs>
</bitfields>

I don't see any way to evaluate the php statement. Even if I put it in the above code wrapped in php tags, it won't get evaluated since the web server only sees the file as an xml file. :confused:

magnus 04-11-2007 03:36 PM

Well, since you're trying to evaluate a variable where no variable is expected you'll need to modify the backend.

In the calling PHP file, you'll need to perform an str_replace(); somewhere in the function call parsing the XML data. This will most likely require file edits, as I don't believe there are any appropriate hooks available.

CyberRanger 04-11-2007 03:38 PM

Quote:

Originally Posted by magnus (Post 1225029)
Well, since you're trying to evaluate a variable where no variable is expected you'll need to modify the backend.

In the calling PHP file, you'll need to perform an str_replace(); on the phrase before outputting.

k, thx. That's way too much work just to make it look pretty for admins! :-)

magnus 04-11-2007 03:41 PM

Yea, I just checked. The changes to make would be in /includes/class_bitfield_builder.php -- and there are no hooks available. Alternatively, you could probably do it in /admincp/usergroup.php but, again, no hooks available.

hambil 04-12-2007 10:48 AM

Quote:

Originally Posted by CyberRanger (Post 1225024)
The problem is that the phrase is being displayed as part of the usergroup permissions using an xml file:

Code:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?php construct_phrase($vbphrase['throttle_posts_throttle'], $vbulletin->options['throttle_posts_time']);?>
<bitfields product="throttle_posts">
    <bitfielddefs>
        <group name="ugp">
            <group name="throttle_postspermissions">
                <bitfield name="throttle_postspermissions" intperm="true" group="throttle_postspermissions" phrase="throttle_posts_throttle">1</bitfield>
            </group>
        </group>
    </bitfielddefs>
</bitfields>

I don't see any way to evaluate the php statement. Even if I put it in the above code wrapped in php tags, it won't get evaluated since the web server only sees the file as an xml file. :confused:

Well, I haven't tried this, but because of the way vb processes templates you might be able to put code into a phrase. e.g. make the value of the actual phrase throttle_posts_throttle be
Code:

construct_phrase($vbphrase['throttle_posts_throttle'], $vbulletin->options['throttle_posts_time']);


All times are GMT. The time now is 02:52 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.01174 seconds
  • Memory Usage 1,747KB
  • 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
  • (4)bbcode_code_printable
  • (2)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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