When applied only three new buttons appear More, Photo, Video - what I'm really after is the Switch to HTML one.
Any ideas why this one (and others) are missing?
thanks
$buttons = array(
BOL_TextFormatService::WS_BTN_BOLD,
BOL_TextFormatService::WS_BTN_ITALIC,
BOL_TextFormatService::WS_BTN_UNDERLINE,
BOL_TextFormatService::WS_BTN_IMAGE,
BOL_TextFormatService::WS_BTN_LINK,
BOL_TextFormatService::WS_BTN_ORDERED_LIST, BOL_TextFormatService::WS_BTN_UNORDERED_LIST,
BOL_TextFormatService::WS_BTN_MORE,
BOL_TextFormatService::WS_BTN_SWITCH_HTML,
BOL_TextFormatService::WS_BTN_HTML,
BOL_TextFormatService::WS_BTN_VIDEO );
$desc = new WysiwygTextarea('desc',$buttons);
$desc->setLabel($language->text('event', 'add_form_desc_label'));
$desc->setRequired();
$event = new OW_Event(self::EVENT_NAME, array( 'name' => 'desc' ), $desc); OW::getEventManager()->trigger($event);
$desc = $event->getData();
$this->addElement($desc);