2
well I just solved the last question,
you can filter the select menu to show only to users wich have admin permision on CBB.
I simply added a line in forumform.inc.php around line 119 change this:
$forum_form->addElement(new XoopsFormSelectEditor($forum_form, "editor", $editor, $nohtml));
with
if ($xoopsUser->isAdmin($xoopsModule->getVar('mid'))) {
$forum_form->addElement(new XoopsFormSelectEditor($forum_form, "editor", $editor, $nohtml));
}
now normal users won't have a select menu fot editor's choice, they'll have default editor setted in plugin.php;
admin users will have the select menu with all editors available (I stil can't filter them.. any idea?)
Only remember to activate html tags in forum settings and make a backup of the files you modifiy
Ian
ps Iv'e tried to have only select menu for forum tools in user side commenting related part in plugin.php like this
// MENU handler
/* You could remove anyone by commenting out in order to disable it */
$valid_menumodes = array(
0 => _MD_MENU_SELECT, // for selectbox
//1 => _MD_MENU_CLICK, // for "click to expand"
//2 => _MD_MENU_HOVER // for "mouse hover to expand"
);
but with no effect...