The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[HOW-TO - vB4] Create a Custom Button for CK Editor (no file edits)
This article explains how to add or remove buttons from CKEditor by using Ckeditor and vBulletin plugins. No standard file edits needed. To add a button to CKEditor, you need to create a CKE plugin. This is an example code for such a plugin. It will add "Hello World" to the editor and spawn a JS alert. Important note: This article is on the technique of adding a button, not on how you will get your button to do whatever it is you want it to do. There are plenty sites out there that give support for CKEditor plugins. The CKE API documentation can be found here. First step: Create the CKEditor plugin The editor plugin files reside in the folder [forumroot]/clientscript/ckeplugins. Create a new folder in there. For the purpose of this article, I'll name it celButtonDemo. Inside that folder, create a file called plugin.js. So you end up with this: [forumroot]/clientscript/ckeplugins/celButtonDemo/plugin.js Important note: Please take notice that "celButtonDemo" will have to be replaced in the folder name and in the following code examples accordingly!. Inside plugin.js goes the plugin code: Code:
CKEDITOR.plugins.add( 'celButtonDemo', { init : function( editor ) { // This adds the button editor.ui.addButton('celButtonDemo', { // label: adds a hover text to the button. This uses the vBulletin // phrase "celButtonDemo" which you will have to add to your phrases // and to pass to CKE in a plugin label : editor.config.vbulletin.phrase.celButtonDemo, // command: the command that will be executed. It's defined later // in this file command : 'celButtonDemo', // icon: The path to the icon file you want to use for your button. // Here we use buttonimage.png in the buttons directory defined for // the current style (default: /images/editor) icon: BBURL + '/' + IMGDIR_BUTTON + '/celButtonDemo.png', }); // This defines the command that's executed when the button is clicked editor.addCommand('celButtonDemo', { // modes: decide in what editor modes the button will be active; // set to 0 to grey it out modes : { enhancedsource:1, wysiwyg:1 }, // Execute your JS Code - CKE offers a great API: exec: function(editor){ alert('Hello world!'); editor.insertHtml( 'Hello World! - Hello World!' ); } }); } }); Second step: vB Operations - register your button, add it to the toolbar, and more In a second step we will create two vB plugins and a vB phrase. You should bundle all that together to a product, to have it all nicely together. Let's start with the phrase: Go to AdminCP, create a phrase in the CKEditor phrase group, and name it CelButtonDemo. Enter "Hello World, hello Button" - or whatever. Save. Done. Then create a new plugin at hook "editor_construct". This will add our button to the CKE configuration. PHP Code:
In this example, our button will be inserted after the Quote-Button. Your options to place the button can be found in /vb/ckeditor.php. See line 7 in the following code: PHP Code:
Result (Screencast): http://screencast-o-matic.com/watch/clnqDcazQ Removing buttons The technique used above to add the button can also be used to remove a button. Example: Removing the image button would look like that (hook "editor_toolbar_filter") PHP Code:
PHP Code:
Restricting buttons by editor-mode or usergroup You have everything available to you in the vB-universe to restrict access to your button, just extend the if-condition. You can restrict by usergroup, or you can show a button only in a certain editor The editor mode can be queried via $this->editor_type in plugins at editor_toolbar_filter: fe = full qr = quick reply qe = quick edit cms_article Example: PHP Code:
Have fun! cellarius . . |
#14
|
|||
|
|||
Quote:
Code:
https://vborg.vbsupport.ru/showthread.php?t=282328 |
Благодарность от: | ||
cstreater |
#15
|
|||
|
|||
This is awesome. Thanks to both of you
|
#16
|
|||
|
|||
Back again -- I can't get this permissions piece of the code to work:
Code:
if (is_array($row) AND is_member_of($vbulletin->userinfo['usergroupid'], 5, 6, 7) AND $this->editor_type == 'qr' ) |
#17
|
||||
|
||||
thanks, this is very useful.
Is there any way to use {vb:raw vboptions.xxx} in plugin.js ? |
#18
|
|||
|
|||
Lets say i already have a bbcode, for example the [ hide ] for the dbtech post thanks mod.
How would i add it in this example? |
#19
|
|||
|
|||
PHP Code:
|
#20
|
|||
|
|||
Unfortunately, no support here more or?????
|
#21
|
|||
|
|||
I can't seem to get this to work ... did something change between 4.2 and 4.2.1?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|