vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=242)
-   -   [HOW TO] Add WYSIWYG Editor to Your Modifications (https://vborg.vbsupport.ru/showthread.php?t=228693)

Mythotical 11-22-2009 10:00 PM

[HOW TO] Add WYSIWYG Editor to Your Modifications
 
1 Attachment(s)
I do this as a free service, I am a student however and all donations are welcome. You can click on the Paypal icon to make a donation: https://www.paypalobjects.com/en_US/..._donate_LG.gif

I will add instructions for pulling data when editing a file.


This article was done for vB 3.5 and later, I now bring you the article for vB 4.0 in regards to the editor in modifications.

Working Versions: Currently 4.1.10
Testing Versions: NONE

This tutorial will provide you the proper method for including the WYSIWYG editor in your modifications. I have tested this and it works so following this tutorial will provide a working editor. You are welcome to tweak it to your liking so that you get different output's or vice versa.

Lets begin.

Step 1. Make sure you have already added the row to your database table. The new row to add is:
PHP Code:

`messagevarchar(255

You can alter that to be messagearea, message, description, etc and it will work just the same.

Step 2. Open your template containing your form.
Step 3. Install the provided plugin xml file.
Step 3. Add the following lines of code.

Now add this in place of your opening form tag (Remember to change your action to your correct file):
HTML Code:

<form class="vbform block" action="file.php" method="post" name="vbform" onsubmit="return vB_Editor['{vb:raw editorid}'].prepare_submit(0, 0)">


    <div class="blockbody formcontrols">
        <div class="section">
       

            {vb:raw messagearea}


        </div>
    </div>

    <div class="blockfoot actionbuttons">
        <div class="group">
                <input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
                <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
                <input type="hidden" name="do" value="postsomething" />
                <input type="submit" class="button" name="sbutton" id="{vb:raw editorid}_save" value="{vb:rawphrase submit}" accesskey="s" tabindex="1" />
                <input type="submit" class="button" name="preview" value="{vb:rawphrase preview_post}" accesskey="r" tabindex="1" />
        </div>
    </div>


</form>

Step 4. Add the following to your php file.

Open the file you wish to add your editor to (Make sure you have this code in the area where your template containing the editor is to be called):
PHP Code:

require_once(DIR '/includes/functions_editor.php');
require_once(
DIR '/includes/functions_bigthree.php');

$editorid construct_edit_toolbar('',1,'signature',1,1,($vbulletin->userinfo['userid'])); 

Then edit your template register and add the following:
PHP Code:

$templater->register('editorid'$editorid);
$templater->register('messagearea'$messagearea); 

Add this line to your php file after you define special templates, global templates, etc:
PHP Code:

define('GET_EDIT_TEMPLATES'true); 

Add these to your specialtemplates:
PHP Code:

$specialtemplates = array('smiliecache','bbcodecache'); 

Step 5. Save and close your file, upload and test. Make sure you saved your template as well.

This is a short article/tutorial and I hope many find it useful. Even though I did not come up with the code or discover the code, I am happy to help others out as I was helped out.

Preview provided at attachments.

RS_Jelle 11-25-2009 06:56 AM

Instead of adding all these templates to globaltemplates, you could add this:

PHP Code:

define('GET_EDIT_TEMPLATES'true); 

Even better, use action templates:
PHP Code:

define('GET_EDIT_TEMPLATES''action1,action2'); 


zbahadir 11-25-2009 08:14 AM

Thanks. :)

Mythotical 11-25-2009 03:27 PM

Quote:

Originally Posted by RS_Jelle (Post 1920594)
Instead of adding all these templates to globaltemplates, you could add this:

PHP Code:

define('GET_EDIT_TEMPLATES'true); 

Even better, use action templates:
PHP Code:

define('GET_EDIT_TEMPLATES''action1,action2'); 


Thanks, I'll update the article to reflect your suggestion.

I should ask what that does since I have never seen that code before. I'm sure others will question as well.

RS_Jelle 11-25-2009 07:35 PM

Quote:

Originally Posted by Steve M (Post 1920764)
Thanks, I'll update the article to reflect your suggestion.

I should ask what that does since I have never seen that code before. I'm sure others will question as well.

It just caches the editor templates, in an easier way :)

From /includes/class_bootstrap.php:
PHP Code:

        // if we are in a message editing page then get the editor templates
        
$show['editor_css'] = false;
        if (
defined('GET_EDIT_TEMPLATES'))
        {
            
$_get_edit_templates explode(','GET_EDIT_TEMPLATES);
            if (
GET_EDIT_TEMPLATES === true OR in_array($_REQUEST['do'], $_get_edit_templates))
            {
                
$cache array_merge($cache, array(
                    
// message stuff 3.5
                    
'editor_toolbar_on',
                    
'editor_smilie',
                    
// message area for wysiwyg / non wysiwyg
                    
'editor_clientscript',
                    
'editor_toolbar_off',
                    
'editor_smilie_category',
                    
'editor_smilie_row',
                    
'editor_toolbar_fontname',
                    
'editor_toolbar_fontsize',
                    
'editor_toolbar_colors',
                    
// javascript menu builders
                    
'editor_jsoptions_font',
                    
'editor_jsoptions_size',
                    
// smiliebox templates
                    
'editor_smiliebox',
                    
// needed for thread preview
                    
'bbcode_code',
                    
'bbcode_html',
                    
'bbcode_php',
                    
'bbcode_quote',
                    
// misc often used
                    
'newpost_threadmanage',
                    
'newpost_disablesmiliesoption',
                    
'newpost_preview',
                    
'newpost_quote',
                    
'posticonbit',
                    
'posticons',
                    
'newpost_usernamecode',
                    
'newpost_errormessage',
                    
'forumrules'
                
));

                
$show['editor_css'] = true;
            }
        } 

+ If you don't do it this way, this mod won't work (if it gets ported to vB4).

Mythotical 11-25-2009 08:28 PM

Quote:

Originally Posted by RS_Jelle (Post 1920856)
It just caches the editor templates, in an easier way :)

From /includes/class_bootstrap.php:
PHP Code:

        // if we are in a message editing page then get the editor templates
        
$show['editor_css'] = false;
        if (
defined('GET_EDIT_TEMPLATES'))
        {
            
$_get_edit_templates explode(','GET_EDIT_TEMPLATES);
            if (
GET_EDIT_TEMPLATES === true OR in_array($_REQUEST['do'], $_get_edit_templates))
            {
                
$cache array_merge($cache, array(
                    
// message stuff 3.5
                    
'editor_toolbar_on',
                    
'editor_smilie',
                    
// message area for wysiwyg / non wysiwyg
                    
'editor_clientscript',
                    
'editor_toolbar_off',
                    
'editor_smilie_category',
                    
'editor_smilie_row',
                    
'editor_toolbar_fontname',
                    
'editor_toolbar_fontsize',
                    
'editor_toolbar_colors',
                    
// javascript menu builders
                    
'editor_jsoptions_font',
                    
'editor_jsoptions_size',
                    
// smiliebox templates
                    
'editor_smiliebox',
                    
// needed for thread preview
                    
'bbcode_code',
                    
'bbcode_html',
                    
'bbcode_php',
                    
'bbcode_quote',
                    
// misc often used
                    
'newpost_threadmanage',
                    
'newpost_disablesmiliesoption',
                    
'newpost_preview',
                    
'newpost_quote',
                    
'posticonbit',
                    
'posticons',
                    
'newpost_usernamecode',
                    
'newpost_errormessage',
                    
'forumrules'
                
));

                
$show['editor_css'] = true;
            }
        } 

+ If you don't do it this way, this mod won't work (if it gets ported to vB4).

Ah great info, thank you for clarifying, I have included it in the article as well. I plan to go change my ported mods to include that as well.

MaryTheG(r)eek 12-13-2009 02:06 PM

I've followed the instruction, editors works as it must works, but in all pages there is that dammit yellow triangle at browser's status bar with error:
vB_XHTML_Ready has not been definied
URI: http://www.microhellas.com/main/clie...tor.js?v=400b5


Maria

Mythotical 12-13-2009 04:02 PM

Maria, can you show me the page that you get the yellow triangle? I don't get the triangle so I'm a bit concerned right now, oh yeah, what browser you viewing the page in?

MaryTheG(r)eek 12-13-2009 04:18 PM

Quote:

Originally Posted by Steve M (Post 1929987)
Maria, can you show me the page that you get the yellow triangle? I don't get the triangle so I'm a bit concerned right now, oh yeah, what browser you viewing the page in?

Sure. http://www.microhellas.com/main/support.php

Thank you so much. By the way. IE8

Maria

Mythotical 12-13-2009 04:21 PM

Hmmmm, I opened it in IE8 but I get no error report. Let me check a few things and I'll post back.

Your welcome.

MaryTheG(r)eek 12-13-2009 04:31 PM

Quote:

Originally Posted by Steve M (Post 1929995)
Hmmmm, I opened it in IE8 but I get no error report. Let me check a few things and I'll post back.

Your welcome.

Thank you for taking the time to help me. If you want, I've post the full product at:
https://vborg.vbsupport.ru/showthread.php?t=230112
but I think that I follown your instructions step by step.

Maria

Mythotical 12-13-2009 04:39 PM

Apparently that error triangle is from subscriptions portion. Might be a bug with vB. I have tried to replicate it and even tried adding new tickets and such, still no error on my end. Sorry I couldn't provide more info than that. I'm actually sitting here scratching my head over it. LOL

MaryTheG(r)eek 12-13-2009 04:42 PM

Quote:

Originally Posted by Steve M (Post 1930011)
Apparently that error triangle is from subscriptions portion. Might be a bug with vB. I have tried to replicate it and even tried adding new tickets and such, still no error on my end. Sorry I couldn't provide more info than that. I'm actually sitting here scratching my head over it. LOL

Ok:-)) Let to see if anybody report it in my post. My site is not the stablest on the net, actually it has nothing, so maybe something else causes it.

take care
Maria

Mythotical 12-13-2009 04:43 PM

Possibly, if you need help narrowing down where it may come from, I'll gladly help you out.

AndrewD 12-14-2009 02:45 PM

1 Attachment(s)
I've spent today tearing my hair out in updating the wysiwig editor from vb3.8 to v4.0 in a product I handle. Eventually, I tried reproducing the problem using the code suggested here, and the same problem arose. Basically, when in full WYSIWIG mode, the text entered into the message box is not being returned to the server, unless one first refreshes the page. In standard mode (obtained either by using the control switch in the editor, or by setting the appropriate vb options), everything works fine. This means that the problem cropped up with IE and Firefox but not with Google Chrome or Safari, which always use the standard editor.

For some reason, though, this problem does not seem to crop up in, e.g., the standard VB editpost code.

Possibilities are that I've made a mistake (quite possible...), or there's a bug in vb4.0 (I'm testing with RC2), or there's a switch/file that we're overlooking.

The attached files are, as far as I can tell, a straight copy of the material posted at the start of this article, within a script that simply keeps re-presenting the form along with a record of the message entered by the user the previous time round. I'd be very grateful if someone can independently test this, and let me know if I'm going crazy or not.

The two files are a php script to be loaded into the forum directory, and a template.

Mythotical 12-14-2009 03:07 PM

I noticed 2 things.

First:
PHP Code:

$retvars .= "message:".$vbulletin->GPC['message'].":<br />"

You have that but not registered it for use in the template.

Second:
In your template I notice you have the form pointing to the same file that you are using to fill out this form. Am I mistaken that maybe you didn't give the process form location.

Also I noticed that you don't have this in your file:
PHP Code:

define('GET_EDIT_TEMPLATES'true); 

With your submit button, try this instead:
HTML Code:

<input name="submit" class="button" type="submit" id="save" value="submit" />

AndrewD 12-14-2009 03:42 PM

Thanks for the suggestions, see below.

Quote:

Originally Posted by Steve M (Post 1930535)
I noticed 2 things.

First:
PHP Code:

$retvars .= "message:".$vbulletin->GPC['message'].":<br />"

You have that but not registered it for use in the template.

Also I noticed that you don't have this in your file:
PHP Code:

define('GET_EDIT_TEMPLATES'true); 


sorry, Steve, not true - both are done (line 7 and 45 in the php file)

Quote:

Originally Posted by Steve M (Post 1930535)
Second:
In your template I notice you have the form pointing to the same file that you are using to fill out this form. Am I mistaken that maybe you didn't give the process form location.

this was intended to be a simpe demo of the problem, and the script is designed to return to itself, report what was filled in the message box, and then re-present the editor. So, there's no error with that, and the same issue presents itself in the (much more complex) product code I'm working on.


Quote:

Originally Posted by Steve M (Post 1930535)
With your submit button, try this instead:
HTML Code:

<input name="submit" class="button" type="submit" id="save" value="submit" />

This makes no difference. The message box contents are being correctly picked up in standard editor mode but not in wysiwig mode.

Mythotical 12-14-2009 03:56 PM

Then you have completely contradicted what you said earlier about it not working. If you can't show me how this is being used in the complexity that you are trying to make it work then I can be of no help. Lastly there apparently is an error as you stated earlier and now you state there is no error. Overall you have your code set so without more info then I am of no help any further. Sorry.

AndrewD 12-14-2009 04:18 PM

Quote:

Originally Posted by Steve M (Post 1930570)
Then you have completely contradicted what you said earlier about it not working. If you can't show me how this is being used in the complexity that you are trying to make it work then I can be of no help. Lastly there apparently is an error as you stated earlier and now you state there is no error. Overall you have your code set so without more info then I am of no help any further. Sorry.

I'll try to be a little clearer, since I didn't intend to seem to contradict myself.

The supplied attached php + template is a straightforward implementation of the code given in the first post, intended to demonstrate the problem.

With this demo code, and with the more complex product implementation, the contents of the editor message box are correctly returned (with all browser choices) when the editor is set to standard mode but not when it is set to wysiwig mode. I can consistently reproduce this problem on my own system. I am asking for someone else to attempt to reproduce it on another, so that I can be sure that it is/is not a bug in my coding or in the vb infrastructure.

Mythotical 12-14-2009 04:43 PM

Quote:

Originally Posted by AndrewD (Post 1930587)
I'll try to be a little clearer, since I didn't intend to seem to contradict myself.

The supplied attached php + template is a straightforward implementation of the code given in the first post, intended to demonstrate the problem.

With this demo code, and with the more complex product implementation, the contents of the editor message box are correctly returned (with all browser choices) when the editor is set to standard mode but not when it is set to wysiwig mode. I can consistently reproduce this problem on my own system. I am asking for someone else to attempt to reproduce it on another, so that I can be sure that it is/is not a bug in my coding or in the vb infrastructure.

Ok gotcha, I will test it out and check for you.

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

Ok tested it, you had a few issues in your template but I changed them to match my site mainly and it worked.

HTML Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en" id="vbulletin_html">

<head>
<!-- BEGIN TEMPLATE: headinclude -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta id="e_vb_meta_bburl" name="vb_meta_bburl" content="/vb40/" />
<base href="/vb40/" /><!--[if IE]></base><![endif]-->
<meta name="generator" content="vBulletin 4.0.0 Release Candidate 2" />


                <meta name="keywords" content="vbulletin,jelsoft,forum,bbs,discussion,bulletin board" />
                <meta name="description" content="This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ ." />


<script type="text/javascript" src="clientscript/yui/yuiloader-dom-event/yuiloader-dom-event.js?v=400rc2"></script>
<script type="text/javascript" src="clientscript/yui/connection/connection-min.js?v=400rc2"></script>
<script type="text/javascript">
<!--
        var SESSIONURL = "";
        var SECURITYTOKEN = "1260802232-afa16d4d00cd73257e7c03c916068b2ffef8d4c5";
        var IMGDIR_MISC = "images/misc";
        var IMGDIR_BUTTON = "images/buttons";
        var vb_disable_ajax = parseInt("0", 10);
        var SIMPLEVERSION = "400rc2";
        var BBURL = "/vb40";
// -->

</script>

<script type="text/javascript" src="clientscript/vbulletin-core.js?v=400rc2"></script>


<link rel="stylesheet" type="text/css" href="clientscript/yui/reset-fonts/reset-fonts.css" />
<link rel="stylesheet" type="text/css" href="css.php?styleid=1&amp;langid=1&amp;d=1260798350&amp;td=ltr&amp;sheet=vbulletin.css,popupmenu.css,vbulletin-chrome.css,components.css,vbulletin-formcontrols.css,editor.css" />


<!-- END TEMPLATE: headinclude -->


<script type="text/javascript" src="clientscript/vbulletin-editor.js?v={vb:raw vboptions.simpleversion}"></script>

<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}vbulletin-formcontrols.css" />
<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}editor.css" />
<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}bbcode.css" />


</head>
<body>

{vb:raw header}

{vb:raw navbar}

{vb:raw retvars}

<form class="vbform block" action="aaaatest.php" method="post" name="vbform" onsubmit="return vB_Editor['{vb:raw editorid}'].prepare_submit(this.inputname.value, {vb:raw vboptions.postminchars})">
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<div class="wysiwyg_block">
<div class="blockbody formcontrols">
<div class="blockrow">
        {vb:raw messagearea}
</div>
</div>
</div>

<div class="blockfoot actionbuttons">
<div class="group">
<input name="submit" class="button" type="submit" id="{vb:raw editorid}_save" value="submit" />
</div>
</div>

</form>
{vb:raw footer}
</body>
</html>

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

It all had to do with link tags and script tags.

EDIT AGAIN:
Tested again with your code and it worked that time so looks like it was in the template.

The way you have it, I have no idea why it won't work that way, not even sure what could cause it to not post.

xman_79 12-20-2009 12:11 PM

not understand why you use

PHP Code:

define('GET_EDIT_TEMPLATES'true); 

The php file

PHP Code:

error_reporting(E_ALL & ~E_NOTICE);
define('THIS_SCRIPT''name_of_your_script');
define('CSRF_PROTECTION'true);

$phrasegroups = array('posting');

$specialtemplates = array('smiliecache','bbcodecache',);

$globaltemplates = array(
    
'newpost_disablesmiliesoption',
    
'newpost_usernamecode',
    
'editor_toolbar_on',
    
'editor_clientscript',
    
'editor_jsoptions_font',
    
'editor_jsoptions_size',
    
'editor_smilie',
    
'editor_smiliebox',
    
'editor_smiliebox_row',
    
'editor_smiliebox_straggler',
    
'editor_css',
    
'editor_smilie_category',
    
'editor_smilie_row',
    
'editor_toolbar_colors',
    
'editor_toolbar_fontname',
    
'editor_toolbar_fontsize',
    
'bbcode_code_printable',
    
'bbcode_html_printable',
    
'bbcode_php_printable',
    
'bbcode_quote_printable',
    
'bbcode_code',
    
'bbcode_html',
    
'bbcode_php',
    
'bbcode_quote',
    
'bbcode_video',
);

require_once(
DIR '/includes/functions_editor.php');

$editorid construct_edit_toolbar(''0'signature'11false);


$templater vB_Template::create('MY_EDITOR_TEMPLATE');
    
$templater->register('editorid'$editorid);
    
$templater->register('messagearea'$messagearea);
$myeditortemplate $templater->render(); 

I use the editor to about 10 hacks, I have no problem.

Mythotical 12-23-2009 06:27 AM

The part that I use above is sticking with code ethics basically, it saves on lines of code per file and does the same exact thing as this does:

PHP Code:

$globaltemplates = array( 
    
'newpost_disablesmiliesoption'
    
'newpost_usernamecode'
    
'editor_toolbar_on'
    
'editor_clientscript'
    
'editor_jsoptions_font'
    
'editor_jsoptions_size'
    
'editor_smilie'
    
'editor_smiliebox'
    
'editor_smiliebox_row'
    
'editor_smiliebox_straggler'
    
'editor_css'
    
'editor_smilie_category'
    
'editor_smilie_row'
    
'editor_toolbar_colors'
    
'editor_toolbar_fontname'
    
'editor_toolbar_fontsize'
    
'bbcode_code_printable'
    
'bbcode_html_printable'
    
'bbcode_php_printable'
    
'bbcode_quote_printable'
    
'bbcode_code'
    
'bbcode_html'
    
'bbcode_php'
    
'bbcode_quote'
    
'bbcode_video'
); 

Just one line of code instead of 10-15 lines to call all those templates.

In all honesty, you don't have to call these templates as you have done:
PHP Code:

    'bbcode_code_printable'
    
'bbcode_html_printable'
    
'bbcode_php_printable'
    
'bbcode_quote_printable'
    
'bbcode_code'
    
'bbcode_html'
    
'bbcode_php'
    
'bbcode_quote'
    
'bbcode_video'

From what I have learned is that each one of those templates is already cached and called when you use the editor.

MaryTheG(r)eek 12-24-2009 08:21 AM

1 Attachment(s)
Hello Steve,

I've problem including the editor in my mod. See the attached images to understand what I mean. The first one is without including "...GET_EDIT_TEMPLATES..." in my php file, the second is with this.

http://www.microhellas.com/dev4/auct...do=addedititem

I'm also getting that yellow triangle:
Code:

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Date/Time: Thu, 24 Dec 2009 10:18:59 UTC
 
Message: Το 'vB_XHTML_Ready' has not been assigned
Line: 11
Character: 1
Code: 0
URI: http://www.microhellas.com/dev4/clie...ditor.js?v=400

Thank you in advance
Maria

PS- I found the solution

At the very top of the template,

After:
Code:

<![CDATA[
and Before:
Code:

<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
Must be:
Code:

{vb:stylevar htmldoctype}
But that dammit triangle still exists.

Merry Christmas Steve (and to all surfers of course).
Maria

Mythotical 12-24-2009 05:16 PM

Great to hear Maria.

MaryTheG(r)eek 12-26-2009 08:49 AM

1 Attachment(s)
Hello Steve,

In view mode the text loses some formatting (in my case bullets). See attachment 1 which is in edit mode. Bullet list has been saved correctly. Now the 2nd attachment. Even if the text coloring is ok, the bullet list appears as normal text lines.

The code that I've wrote:

PHP file
Code:

// Format Bodytext
$bodytext = $item["bodytext"];
$bodytext = convert_wysiwyg_html_to_bbcode($bodytext);
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$bodytext = $bbcode_parser->parse($bodytext, $post['allowsmilie']);

Template
Code:

<tr>
  <td colspan="4" class="blockrow" align="left" width="100%">
      {vb:raw bodytext}
  </td>
</tr>

Thank you
Maria

Mythotical 12-26-2009 05:07 PM

Thanks Maria, I will get it altered in the article.

mikey1991 02-04-2010 06:54 PM

Steve, I know you posted this article for vB3, or one was posted, I just cannot find it. Any help?

Mythotical 02-05-2010 01:04 AM

Quote:

Originally Posted by mikey1991 (Post 1974868)
Steve, I know you posted this article for vB3, or one was posted, I just cannot find it. Any help?

Here is the article, not written by me: Add Editor to Your Mods

mikey1991 02-05-2010 02:57 PM

Great, thanks alot steve, appreciate that.

Mythotical 02-15-2010 08:20 PM

Quote:

Originally Posted by mikey1991 (Post 1975442)
Great, thanks alot steve, appreciate that.

Your welcome.

Jaxel 03-29-2010 05:44 AM

Anyone got any ideas on what I should put in my DATAMANAGER so that it verifies a text field?

Jaxel 03-30-2010 02:22 AM

1 Attachment(s)
Okay... I've followed this guide EXACTLY... but I have a few questions and problems... I've circled the obvious problems in red...

https://vborg.vbsupport.ru/attachmen...1&d=1269919038

1 - "Fonts" dropdown menu is missing.
2 - "Sizes" dropdown menu is missing the word "Sizes".
3 - "Bullets" and "Lists" buttons are missing.
4 - "Quote" "Code" "PHP" buttons are missing.
5 - I have no need for attachments or video embedding in this, so I would like to remove those buttons.
6 - "Tooltips" (alt tags?) are missing from all buttons.
7 - The word "More" on the bottom right is missing.

In VB3, in order to put an editor into your mod, you had to do some plugin work. I assume that is gone now?

Also, when posting the textarea to my script, what is the variable name? $vbulletin->GPC['message'] perhaps?

And how do I add a DEFAULT VALUE for this textarea?

Jaxel 03-30-2010 02:37 AM

Looking at this code here in the guide is COMPLETELY outdated:
HTML Code:

$editorid = construct_edit_toolbar('',1,'signature',1,1,($vbulletin->userinfo['userid']));
This works for me: fixed a few of my problems, but not all.... the only still missing is the phrasegroup for Fonts, Sizes and More.
HTML Code:

$editorid = construct_edit_toolbar($description,0,'nonforum',1,1,0);
New question, how do we use the QR? I tried adding 'qr' to the end of the construct, but it killed entry into the box.

Mythotical 03-30-2010 05:01 AM

Sorry haven't had time to update this guide to match 4.0 gold release. I will get to it once I am able.

Jaxel 04-01-2010 02:28 AM

Add the following if you want to use QR (Quick Reply)

Code:

$show['qr_require_click'] = 0;
$editorid = construct_edit_toolbar('',0,'nonforum',1,1,0,'qr');


Unfortunately, I am having a bug, where the buttons on the quick-reply bars aren't working. They work fine on the FE (Full Editor), but not the QR.

Jaxel 04-06-2010 08:32 PM

Whenever I use the QR editor, I always get an error...

Code:

Uncaught ReferenceError: vB_Text_Editor is not defined
If I change to the FE editor, the error disappears.

Jaxel 04-15-2010 01:50 PM

Has anyone been able to get the QR editor working yet?

MaryTheG(r)eek 04-15-2010 02:38 PM

Quote:

Originally Posted by Jaxel (Post 2021690)
Has anyone been able to get the QR editor working yet?

I've included it in all of my mods for vb4. Where are you facing difficulties?

Maria

Jaxel 04-16-2010 02:37 AM

This is the code I am using...

Code:

        if ($perms['comment'])
        {
                require_once(DIR . '/includes/functions_editor.php');
                $show['qr_require_click'] = 0;
                $editorid = construct_edit_toolbar('',0,'nonforum',1,1,0,'qr_small');
        }

Code:

                $templater->register('editorid', $editorid);
                $templater->register('messagearea', $messagearea);


But I keep getting the following error:
Uncaught ReferenceError: vB_Text_Editor is not defined

As well, none of the buttons on the QR work. If I change the editor to FE, it works fine without error.

Vaupell 04-17-2010 02:12 PM

Works great, Thanks microhellas.


All times are GMT. The time now is 06:50 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.01686 seconds
  • Memory Usage 1,995KB
  • 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
  • (10)bbcode_code_printable
  • (6)bbcode_html_printable
  • (19)bbcode_php_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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