vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin Tips & Tricks (https://vborg.vbsupport.ru/forumdisplay.php?f=239)
-   -   Remove Buttons from Editor with Plugin (https://vborg.vbsupport.ru/showthread.php?t=197705)

RLShare 11-30-2008 10:00 PM

Remove Buttons from Editor with Plugin
 
1 Attachment(s)
I recently ran into a problem with a style I was creating where the editor in the userCP was just too wide for the style because of the userCP sidebar. I tried editing the CSS for the editor but there is a point where the editor will not get any smaller because of the buttons, and that was still too wide for the style I was working with. After a little searching through code I figured out how to remove some of the buttons to allow the editor to be smaller, its pretty simple.

First off, this will be done in a plug-in and the hook location will be 'editor_toolbar_start'. From this hook location you have access to a variable $forumid, if your making a post in a forum this variable will hold the forum ID, but if your using another section of the site such as creating a PM or editing your signature this variable will hold the values telling you that as well.

Possible values for $forumid:
'privatemessage'
'usernote'
'calendar'
'announcement'
'signature'
'visitormessage'
'groupmessage'
'picturecomment'
'nonforum'
Or it will be the forumID of the forum in which a post is being edited/created



Just like most areas of VB there is an array named 'show' that holds a list of true/false values of which things need to be shown. Such as which buttons to show in the editor.

Possible $show items:
$show['img_bbcode'] = image embed button
$show['font_bbcode'] = fonts drop down
$show['size_bbcode'] = font sizes drop down
$show['color_bbcode'] = font color drop down
$show['align_bbcode'] = align buttons
$show['list_bbcode'] =list buttons
$show['code_bbcode']= code button
$show['html_bbcode'] = html button
$show['php_bbcode'] = php button
$show['basic_bbcode'] = Bold/Italic/Underline all in one
$show['url_bbcode'] = embed link button
$show['quote_bbcode'] = quote button
$show['smiliebox'] = show the smilie box


Setting any of those values to false in a plugin with the hook location of 'editor_toolbar_start' will tell VB not to show the items in the editors toolbar.

Here is the plug-in I created to remove buttons on the PM/Edit Signature pages of my style to give you an example of how its done...

PHP Code:


switch($forumid)
{
case 
'privatemessage':
case 
'signature':
            
$show['font_bbcode']  = false
            
$show['basic_bbcode'] = false;        
            break;



And thats pretty much it, its really simple.

MarioN70 06-23-2009 08:48 AM

Thanks helped me a lot, if I want to hide a button in all editors that I have just put:
Code:

$ show [ 'size_bbcode'] = false;
:up:

James Birkett 10-18-2009 12:46 PM

Quote:

Originally Posted by MarioN70 (Post 1835458)
Thanks helped me a lot, if I want to hide a button in all editors that I have just put:
Code:

$ show [ 'size_bbcode'] = false;
:up:

I wouldn't recommend putting spaces in between ;)

PHP Code:

$show['size_bbcode'] = false



All times are GMT. The time now is 10:05 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.00958 seconds
  • Memory Usage 1,724KB
  • 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)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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