vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Retrieving a post on external page (https://vborg.vbsupport.ru/showthread.php?t=209138)

Riotblade 03-22-2009 05:28 PM

Retrieving a post on external page
 
Hi, I'm trying to mimic the SMF function SSI_BoardNews() with my own version of SSI.php for Vbulletin. However, I can't seem to find the BBC parsing function for VB. Does anyone know the name of the function, and the include file it's under? Also, the way I'm retrieving the post right now is unconventional. Is there any way to retrieve posts without directly fetching them with queries?

Thanks

Cryo 03-22-2009 06:08 PM

You'll want to have the following included in your page...

PHP Code:

// Include vBulletin Addons
chdir("/path/to/forums/forums"); // <-- Change This
include("./global.php");
require_once(
'./includes/class_bbcode.php'); 

If you need to switch back to the CWD before the CHDIR, simply set a variable to getcwd() and then after you have included both files chdir() to that var.

To parse the post, the following code will be needed...

PHP Code:

$parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());

$parser->do_parse($var011110); 

$var contains the content you want to parse. The set of numbers after $var are flags for the following...

PHP Code:

do_parse  (string $text, [bool $do_html false], [bool $do_smilies true], [bool $do_bbcode true], [bool $do_imgcode true], [bool $do_nl2br true], [bool $cachable false]) 


Riotblade 03-23-2009 12:17 AM

Thanks, works wonderfully.

My next question would be how to retrieve the cached stats that is shown in FORUMHOME?

It retrieves it through:

Code:

                                $vbphrase[threads]: $totalthreads,
                                $vbphrase[posts]: $totalposts,
                                $vbphrase[members]: $numbermembers

I do not know how the template system works or what files it includes. I do not want to query it everytime if a cached value exists somewhere.

Thanks

Dismounted 03-23-2009 10:11 AM

Those stats are fetched from the vBulletin datastore. I believe that there is an article floating around about it. :)


All times are GMT. The time now is 03:18 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.01151 seconds
  • Memory Usage 1,720KB
  • 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
  • (1)bbcode_code_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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