vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   How to make the CKeditor return BBCODE and count caracters (https://vborg.vbsupport.ru/showthread.php?t=285194)

Altari 07-04-2012 09:55 AM

How to make the CKeditor return BBCODE and count caracters
 
Edit because i said some wrong things :

So here is how to get a message from the ckeditor, convert it from html to bbcode, and count caracters in the message without bbcode :

PHP Code:

    require_once(DIR '/includes/class_wysiwygparser.php');
    
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
    
$contenu $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], FALSE);

    require_once(
'includes/class_bbcode_alt.php');
    
$bbcodeparser_plain = new vB_BbCodeParser_PlainText($vbulletinfetch_tag_list());
    
$message_plain $bbcodeparser_plain->do_parse($contenu);
    
    
$count vbstrlen($message_plain);
    if(
$count $maximum){
        
//Is too big
    



kh99 07-04-2012 10:22 AM

That's what I would have suggested - can you give us a sample of bbcde that results in html?

Altari 07-04-2012 11:20 AM

Hmm i should be a little bit stupid, i wanted to answer "Yes" to you but during test to be sure i can see my editor return directly html, no bbcode, that's why the PlainText parser does nothing.
I don't understand, my editor returned BBcode yesterday :(

So that's not really the thread, but maybe you could tell me how to construct an edit which return bbcode and not HTML ?
I actually do this :
PHP Code:

$editorid construct_edit_toolbar('',FALSE,'nonforum',FALSE,FALSEFALSE'fe'); 


kh99 07-04-2012 12:17 PM

Well, the editor has a button in the upper left corner that sort of looks like "A/A", that toggles wysiwyg mode, and I think you get either html or bbcode depending on how that is set. I don't know a lot about the editor so I don't know how to tell you to force a certain mode, but looking at newreply.php, it does this (after "cleaning" the wysiwyg parameter):

Code:

        if ($vbulletin->GPC['wysiwyg'])
        {
                require_once(DIR . '/includes/class_wysiwygparser.php');
                $html_parser = new vB_WysiwygHtmlParser($vbulletin);
                $newpost['message'] = $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC['message'], $foruminfo['allowhtml']);
        }
        else
        {
                $newpost['message'] = $vbulletin->GPC['message'];
        }


Altari 07-04-2012 12:48 PM

Thank you for help,

About the "A/a" button : in every case it's bbcode which is shown, but $vbulletin->GPC['message'] returns html.

Thank you for the parse_wysiwyg_html_to_bbcode, it works as expected (and the PlainText parser too)

But there should be an other way to make the ckeditor return bbcode and not HTML : i did it yesterday but i don't know how :o

Thank you !

Badshah93 07-04-2012 04:23 PM

Create New Plugin

Hook: newpost_process
Code:

Code:

if ($type == 'thread')
{
  $temp_msg = strip_bbcode($post['message']);
  $count = vbstrlen($temp_msg);
}


djbaxter 08-16-2012 10:58 PM

I am looking for a plugin to convert HTML posts to BBCode posts and came across this thread but I'm not sure I understand what you guys here are trying to do.

In particular, is the first post supposed to be a plugin or a separate PHP file? And what is the plugin in post #6 doing?


All times are GMT. The time now is 07:31 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.02018 seconds
  • Memory Usage 1,730KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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