Can someone point me in the right direction here...
I need to know where (in which file) should I modify for adding an option to the context menu in the file browser.
I am building a text file (txt|asp|php|js|inc|aspx|cs|vb|vbs|css|etc...) editor for this, and need to add the link to the File context menu.
I need to know where (in which file) should I modify for adding an option to the context menu in the file browser.
I am building a text file (txt|asp|php|js|inc|aspx|cs|vb|vbs|css|etc...) editor for this, and need to add the link to the File context menu.
Re: Add a link to the Context Menu
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Add a link to the Context Menu
I need to know the same thing.
I want to add a link to ckFinder Context Menu.
Thank's
Re: Add a link to the Context Menu
I've created a plugin called 'Accordion' and this is what I've added inside fckplugin.js. Code is simplified but should give you a brief what needs to be done and how.
1. Define listener that is responsible for showing context menu. Nicely attach your logic to FCK existing context menu.
2. Define class that manipulates DOM. Insert your logic here
3. Define commands used in context menu. This lists all available command names and assigns them callback functions
4. Register commands inside FCKEditor machinery
Re: Add a link to the Context Menu