defaulthtmleditor; } /* if ($editor == '') { switch ($CFG->htmleditorselection) { case '0': return ''; break; case '1': $editor = 'tinymce'; break; case '2': $editor = 'fckeditor'; break; case '3': $editor = 'xinha'; break; case '4': $editor = 'yuirte'; break; default: return ''; break; } } */ $configuration = ''; switch ($editor) { case 'tinymce': $configuration = << EOF; break; case 'fckeditor': $configuration = << EOF; break; case 'xinha': $configuration = << _editor_url = "{$CFG->wwwroot}/lib/editor/xinha/" _editor_lang = "en"; _editor_skin = "blue-look"; EOF; break; case 'yuirte': $configuration = << EOF; break; default: break; } return $configuration; } public function activateEditor($name='', $id='') { $configuration = << createHTMLArea('$id'); EOF; return $configuration; } } ?>