Skip to content

Commit

Permalink
MDL-75078 editor_tiny: Hola TinyMCE 6
Browse files Browse the repository at this point in the history
Part of MDL-75966

This commit adds TinyMCE version 6.1 into Moodle core.

A basic editor implementation is included, along with Moodle loader, and
basic Plugin API for Moodle. The Plugin API will be extended and
improved in future changes.

A new subplugin is defined for this plugin.
  • Loading branch information
andrewnicols committed Nov 10, 2022
1 parent 5877ae3 commit 71d3054
Show file tree
Hide file tree
Showing 167 changed files with 110,419 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/classes/plugin_manager.php
Expand Up @@ -1861,7 +1861,7 @@ public static function standard_plugins_list($type) {
),

'editor' => array(
'atto', 'textarea', 'tinymce'
'atto', 'textarea', 'tiny', 'tinymce'
),

'enrol' => array(
Expand Down Expand Up @@ -2028,6 +2028,9 @@ public static function standard_plugins_list($type) {
'objectives'
),

'tiny' => [
],

'tinymce' => array(
'ctrlhelp', 'managefiles', 'moodleemoticon', 'moodleimage',
'moodlemedia', 'moodlenolink', 'pdw', 'spellchecker', 'wrap'
Expand Down
3 changes: 3 additions & 0 deletions lib/editor/tiny/amd/build/editor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/editor/tiny/amd/build/editor.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions lib/editor/tiny/amd/build/loader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/editor/tiny/amd/build/loader.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 71d3054

Please sign in to comment.