cirisme
01-17-2004, 10:00 PM
This will help you add an extra button to vb3's editor toolbar. The button calls a function that you define in vbulletin_global.js that can do anything you want. ;) Originally posted here. (https://vborg.vbsupport.ru/showpost.php?p=464358&postcount=2)
Open ./includes/functions_editor.php and find this:
global $datastore, $bbcodecache;
And change to:
global $datastore, $bbcodecache, $stylevar;
Find this
foreach ($bbcodecache AS $bbcode)
{
if ($bbcode['buttonimage'] != '')
{
$tag = strtoupper($bbcode['bbcodetag']);
if ($toolbartype == 2)
{
$extrabuttons .= "<td><div class=\"imagebutton\" id=\"cmd_wrap$bbcode[twoparams]_$bbcode\"><img src=\"$bbcode[buttonimage]\" alt=\"Wrap [$tag] Tags\" width=\"21\" height=\"20\" /></div></td>\n";
}
else
{
$extrabuttons .= "<td><div class=\"imagebutton\"><a href=\"#\" onclick=\"return vbcode('$tag', '')\"><img src=\"$bbcode[buttonimage]\" alt=\"Wrap [$tag] Tags\" title=\"Wrap [$tag] Tags\" width=\"21\" height=\"20\" border=\"0\" /></a></div></td>\n";
}
}
}
And add this below:
if ($toolbartype == 2){
$extrabuttons .= '<td><div class="imagebutton" id="cmd_[b]xxxx"><img src="' . $stylevar . '/xxxx.gif" alt="[i]<Alt Text>" width="21" height="20" /></div></td>';
}else{
$extrabuttons .= '<td><div class="imagebutton"><a href="#" onclick="return xxxx()"><img src="' . $stylevar . '/xxxx.gif" alt="[i]<Alt Text>" title="<Alt Text>" width="21" height="20" border="0" /></a></div></td>';
}
Be sure to change the bolded xxxx to be whatever you want it to be.
Now, open clientscript/vbulletin_wysiwyg.js and find this:
htmlbox.execCommand(formatcommand, showinterface, extraparameters);
set_context(formatcommand);
And REPLACE with:
if(formatcommand == 'xxxx') {
xxxx();
}else{
// this was original but outside IF
htmlbox.execCommand(formatcommand, showinterface, extraparameters);
set_context(formatcommand);
}
Be sure to change the xxxx's above to be the same as in the other code snippet. :)
And open clientscript/vbulletin_global.js and add a function called whatever you changed xxxx to. It can do whatever you want it to do and you'll be set.
If you want to add it to the showthread quick reply... open showthread.php and find:
eval('$quickreply = "' . fetch_template('showthread_quickreply') . '";');
And replace with:
$extrabuttons = construct_editor_extra_buttons($WYSIWYG);
eval('$quickreply = "' . fetch_template('showthread_quickreply') . '";');
In the showthread_quickreply template find this:
<td><div class="imagebutton" id="cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" alt="$vbphrase[wrap_quote_tags]" width="21" height="20" /></div></td>
And add this below:
<if condition="$extrabuttons"><td>$extrabuttons</td></if>
Find this:
<td><div class="imagebutton"><a href="#" onclick="return vbcode('QUOTE', '')"><img src="$stylevar[imgdir_editor]/quote.gif" alt="$vbphrase[wrap_quote_tags]" title="$vbphrase[wrap_quote_tags]" width="21" height="21" border="0" /></a></div></td>
And add below:
<if condition="$extrabuttons"><td>$extrabuttons</td></if>
Done! :)
Open ./includes/functions_editor.php and find this:
global $datastore, $bbcodecache;
And change to:
global $datastore, $bbcodecache, $stylevar;
Find this
foreach ($bbcodecache AS $bbcode)
{
if ($bbcode['buttonimage'] != '')
{
$tag = strtoupper($bbcode['bbcodetag']);
if ($toolbartype == 2)
{
$extrabuttons .= "<td><div class=\"imagebutton\" id=\"cmd_wrap$bbcode[twoparams]_$bbcode\"><img src=\"$bbcode[buttonimage]\" alt=\"Wrap [$tag] Tags\" width=\"21\" height=\"20\" /></div></td>\n";
}
else
{
$extrabuttons .= "<td><div class=\"imagebutton\"><a href=\"#\" onclick=\"return vbcode('$tag', '')\"><img src=\"$bbcode[buttonimage]\" alt=\"Wrap [$tag] Tags\" title=\"Wrap [$tag] Tags\" width=\"21\" height=\"20\" border=\"0\" /></a></div></td>\n";
}
}
}
And add this below:
if ($toolbartype == 2){
$extrabuttons .= '<td><div class="imagebutton" id="cmd_[b]xxxx"><img src="' . $stylevar . '/xxxx.gif" alt="[i]<Alt Text>" width="21" height="20" /></div></td>';
}else{
$extrabuttons .= '<td><div class="imagebutton"><a href="#" onclick="return xxxx()"><img src="' . $stylevar . '/xxxx.gif" alt="[i]<Alt Text>" title="<Alt Text>" width="21" height="20" border="0" /></a></div></td>';
}
Be sure to change the bolded xxxx to be whatever you want it to be.
Now, open clientscript/vbulletin_wysiwyg.js and find this:
htmlbox.execCommand(formatcommand, showinterface, extraparameters);
set_context(formatcommand);
And REPLACE with:
if(formatcommand == 'xxxx') {
xxxx();
}else{
// this was original but outside IF
htmlbox.execCommand(formatcommand, showinterface, extraparameters);
set_context(formatcommand);
}
Be sure to change the xxxx's above to be the same as in the other code snippet. :)
And open clientscript/vbulletin_global.js and add a function called whatever you changed xxxx to. It can do whatever you want it to do and you'll be set.
If you want to add it to the showthread quick reply... open showthread.php and find:
eval('$quickreply = "' . fetch_template('showthread_quickreply') . '";');
And replace with:
$extrabuttons = construct_editor_extra_buttons($WYSIWYG);
eval('$quickreply = "' . fetch_template('showthread_quickreply') . '";');
In the showthread_quickreply template find this:
<td><div class="imagebutton" id="cmd_wrap0_quote"><img src="$stylevar[imgdir_editor]/quote.gif" alt="$vbphrase[wrap_quote_tags]" width="21" height="20" /></div></td>
And add this below:
<if condition="$extrabuttons"><td>$extrabuttons</td></if>
Find this:
<td><div class="imagebutton"><a href="#" onclick="return vbcode('QUOTE', '')"><img src="$stylevar[imgdir_editor]/quote.gif" alt="$vbphrase[wrap_quote_tags]" title="$vbphrase[wrap_quote_tags]" width="21" height="21" border="0" /></a></div></td>
And add below:
<if condition="$extrabuttons"><td>$extrabuttons</td></if>
Done! :)