vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Please help. Need to parse bbcode in a user profile field and pass it to a template. (https://vborg.vbsupport.ru/showthread.php?t=209716)

carcomp 03-28-2009 05:39 PM

Please help. Need to parse bbcode in a user profile field and pass it to a template.
 
I posted a few days ago about this, but a member told me about user profile fields. Very helpful. I've managed to get the profile field to show in the template that I want (member info), however, when I add BBcode or html to the profile field, vbulletin just shows the code in the browser and doesn't parse it.

I know the dangers of html in vbulletin. I'm just trying things to see what works and what doesn't.

So what I need to do is this... I need to be able to show my profile field in the template but have it be parsed. I figure a plugin is needed, but I can't seem to get the code to work. I've read mod about parsing bbcode.

Code:

require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$parsed_text = $parser->do_parse($text, $do_html, $do_smilies, $do_bbcode, $do_imgcode, $do_nl2br, $cachable);

I just don't really know where that needs to go for the variable to get "back" to the template. I figure there is an eval() that needs to be there.

I know the template, plugin, and vbulletin "all become one" after the server works, but I can't grasp the concept well.

Please help.

Lynne 03-28-2009 08:08 PM

I wrote a mod where I needed to process the bbcode (View all your social group messages) and I copied/modified a function to parse the bbcode:

PHP Code:

function process_message_preview($message)
{
    global 
$vbulletin$vbphrase$stylevar$show;

    require_once(
DIR '/includes/class_bbcode.php');
    
$bbcode_parser =& new vB_BbCodeParser($vbulletinfetch_tag_list());

    
$previewhtml '';
    if (
$previewmessage $bbcode_parser->parse($message['pagetext'], 'socialmessage'$message['disablesmilies'] ? 1))
    {
        
$previewhtml $previewmessage;
    }

    return 
$previewhtml;


The call in the code was something like:
PHP Code:

query
then
    
while ($message $vbulletin->db->fetch_array($messagelist))
    {
.....
        
        
$message['pagetext'] = process_message_preview($message);
eval 
template that uses $message['pagetext'];


So, you look like you are on the right track. You would need to add the call to the function/code prior to the eval statement (like I show above).

carcomp 04-03-2009 09:05 AM

Ok I tried to do what you said. I've got a new profile field (field65) that I've managed to display once on my page using an eval statement, but when I try the following code, I get nothing. I've got my variable $mypage inserted into the MEMBERINFO template. I've been playing with this for about an hour now. I must be off to work. Any ideas?

Code:

function process_message_preview($message)
{
    global $vbulletin, $vbphrase, $stylevar, $show;

    require_once(DIR . '/includes/class_bbcode.php');
    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

    $previewhtml = '';
    if ($previewmessage = $bbcode_parser->parse($message['pagetext'], 'socialmessage', $message['disablesmilies'] ? 0 : 1))
    {
        $previewhtml = $previewmessage;
    }

    return $previewhtml;


 process_message_preview($message);

$mypage = process_message_preview($vbulletin->userinfo['field65']);

eval MEMBERINFO;


Lynne 04-03-2009 02:07 PM

That is not how you eval a template. Take a look in a page like member.php and you'll see these last lines:
PHP Code:

eval('$navbar = "' fetch_template('navbar') . '";');

$templatename 'MEMBERINFO';

(
$hook vBulletinHook::fetch_hook('member_complete')) ? eval($hook) : false;

eval(
'print_output("' fetch_template($templatename) . '");'); 


carcomp 04-03-2009 04:41 PM

I got it working! Awesome. Now all I have to do is create a bunch of bbcode tags for html elements like table td tr etc!

heres what I ended up with.

Code:

function process_message_preview($message)
{
    global $vbulletin, $vbphrase, $stylevar, $show;

    require_once(DIR . '/includes/class_bbcode.php');
    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

    $previewhtml = '';
    if ($previewmessage = $bbcode_parser->parse($message, 'socialmessage', $message['disablesmilies'] ? 0 : 1))
    {
        $previewhtml = $previewmessage;
    }

    return $previewhtml;



$mypage = process_message_preview($vbulletin->userinfo['field65']);

eval('$mypage = "' . fetch_template('user_custompage') . '";');

I created a custom template called "user_custompage" and just dumped the $mypage variable in it and nothing else. Works great.

Lynne 04-03-2009 04:55 PM

Great! :up:

carcomp 04-04-2009 03:31 PM

I had posted something saying I was going to go look at class_bbcode.php. I did, and have changed my code to the following...

Code:

function process_message_preview($message)
{
    global $vbulletin, $vbphrase, $stylevar, $show;

    require_once(DIR . '/includes/class_bbcode.php');
    $bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

    $previewhtml = '';
    if ($previewmessage = $bbcode_parser->do_parse($message, $do_html = true, $do_smilies = true, $do_bbcode = true, $do_imgcode = true, $do_nl2br = true, $cachable = false))
    {
        $previewhtml = $previewmessage;
    }

$mypage = process_message_preview($vbulletin->userinfo['field65']);

eval('$mypage = "' . fetch_template('user_custompage') . '";');

Now what I don't understand is why its not allowing me to use <table> and </table> in my profile field.
Here is my profile field code.
PHP Code:

<table>

[
B]Here is my test page[/B]
[
img]https://vborg.vbsupport.ru/external/2009/04/7.gif[/img]

</table

On MEMBERINFO template, I'm able to show my bold text, the google image, but the <table> tags just show up like text, not html. Any Ideas?

Lynne 04-04-2009 04:51 PM

<table> is html not bbcode. You would have to parse it for html otherwise it will treat the < and > as text characters and turn them into &lt; and $gt; in the page source.

carcomp 04-04-2009 06:20 PM

Risking posting before googling, is there an HTML parse function in vbulletin?

Lynne 04-05-2009 02:10 AM

Probably. You can look in the API for one (link under Quick Links)


All times are GMT. The time now is 02:13 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.02639 seconds
  • Memory Usage 1,757KB
  • 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
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete