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

Reply
 
Thread Tools Display Modes
  #1  
Old 12-22-2009, 04:53 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default [SOLVED]vb4 phrases in custom php. how to?

Hello
I have created 1 phrase with following settings :

Product : testAbc
Varname : testXxx
Text : This is a test message.


Now, when i try to access above phrase in my php file with following syntax, it doesn't give me any output (blank) :
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''test');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('custom_test',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
vB_Template::preRegister('custom_test', array('contents' => $contents));
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

$navbits construct_navbits(array('' => 'Test'));
$navbar render_navbar_template($navbits);
$aa=$vbphrase['testXxx'];
// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'This is a test page';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
//vB_Template::preRegister('header',array('contents' => $contents));
$templater vB_Template::create('custom_test');
$templater->register_page_templates();
$templater->register('navbar'$navbar);
$templater->register('pagetitle'$pagetitle);
print_output($templater->render());
?>
When i directly write following in my custom_test template, it does give me output.
PHP Code:
{vb:phrase testXxx
or
PHP Code:
{vb:rawphrase testXxx
Somebody please help me.
How do i access phrase text in php file?
Reply With Quote
  #2  
Old 12-22-2009, 06:45 AM
Vaupell's Avatar
Vaupell Vaupell is offline
 
Join Date: Apr 2008
Location: Esbjerg, Denmark
Posts: 1,036
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

are your phrases in global or in a group, if in a group you need to register them

// get special phrase groups
$phrasegroups = array();


And i call phrases in templates like this {vb:raw vbphrase:phrasename}
Reply With Quote
  #3  
Old 12-22-2009, 09:10 AM
nirvana43's Avatar
nirvana43 nirvana43 is offline
 
Join Date: Oct 2007
Location: Pune, India
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Vaupell View Post
are your phrases in global or in a group, if in a group you need to register them

// get special phrase groups
$phrasegroups = array();


And i call phrases in templates like this {vb:raw vbphrase:phrasename}
Yap they are global.
And no i dont want to call them in template. It works when i call 'em in template.
But here is the situation :

test/test.php contains :
PHP Code:
<?php
$ab
="I'm in php file.";
?>
i have registered above variable $ab in /test.php file outside "test" folder.
It also includes call for include("test/test.php")

In template "custom_test" i'm rendering data as :
{vb:raw ab}

Now what i want is :
PHP Code:
<?php
$tmpaa
=$vbphrase['testXxx'];
$ab="I'm in php file.";
$ab.="Phrase contents=".$tmpaa;
?>
I dont understand understand how do i capture phrase data in custom php file (outside vbulletin template) and yeah file does have include(global.php);

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

somebody please help

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

I just got it sorted out..
Posting solution for future troubles :
PHP Code:
<?php
include(./global.php);
$aa=sprintf($vbphrase['my_phrase_name']);
echo 
$aa;
?>
Now you can directly use phrase contents outside vbulletin's template.
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 01: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.03628 seconds
  • Memory Usage 2,200KB
  • Queries Executed 11 (?)
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
  • (6)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (3)post_thanks_box
  • (3)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit_info
  • (3)postbit
  • (3)postbit_onlinestatus
  • (3)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_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