Changeset 1304
- Timestamp:
- 11/21/07 20:51:16 (1 year ago)
- Files:
-
- devel/mod/dotty (deleted)
- devel/mod/tinymce/lib.php (modified) (1 diff)
- devel/mod/tinymce/tinymce_js.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/mod/tinymce/lib.php
r1294 r1304 16 16 // What is the user preference 17 17 $function['userdetails:editor'][] = $CFG->dirroot . "mod/tinymce/tinymce_userdetails.php"; 18 19 // Action handling20 $function['userdetails:init'][] = $CFG->dirroot . "mod/tinymce/tinymce_userdetails_actions.php";21 18 22 // TODO figure this out23 // User details editable options19 // TODO figure this out 20 // User details editable options 24 21 $function['userdetails:edit:details'][] = $CFG->dirroot . "mod/tinymce/tinymce_userdetails_edit.php"; 25 22 26 27 // Let the system know we've got TinyMCE loaded 28 //$CFG->plugins->tinymce = true; 29 30 // Added editor section to enable future editor choice in user config 31 $CFG->plugins->editor["tinymce"] = true; 32 23 // Added editor section to enable future editor choice in user config 24 $CFG->plugins->editor["tinymce"] = true; 33 25 } 34 26 35 27 function tinymce_init() { 28 global $CFG, $function; 29 30 // Action handling (user preference) 31 $function['userdetails:init'][] = $CFG->dirroot . "mod/tinymce/tinymce_userdetails_actions.php"; 36 32 } 37 33 ?> devel/mod/tinymce/tinymce_js.php
r1294 r1304 34 34 35 35 // gzip thingy should only assemble plugins we're actually using 36 $plugins = 'spellchecker,emotions,contextmenu,preview,style,searchreplace,autosave ';36 $plugins = 'spellchecker,emotions,contextmenu,preview,style,searchreplace,autosave,safari'; 37 37 //plugins : 'style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,spellchecker', 38 38
