3
I don't know. But I got some ideas 'cause recently I added koivi to the custom blocks text editor.
< see here > Also I read about something similar in a very recent post
< here >so an idea could be that you search for, in the module files, where the current text editor is being called.
Then if from what I've seen some where on your file (maybe on top) there is a line that looks like this:
Quote:
include_once XOOPS_ROOT_PATH."/class/xoopsformloader.php";
to add koivi you add this below the above line:
Quote:
include_once XOOPS_ROOT_PATH."/class/wysiwyg/formwysiwygtextarea.php";
now like it was said in the 2nd link I wrote:
if replacing
XoopsFormTextArea with
XoopsFormDhtmlTextArea gives a result of taking away the dhtml editor leaving just a text editor.
you could look for the different lines where the current editor is being called in the module and replace either XoopsFormDhtmlTextArea or XoopsFormTextArea with
XoopsFormWysiwygTextArea which is the one for koivi.
This is just an experimental idea.