aboutsummaryrefslogtreecommitdiff
path: root/mod/tinymce/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/tinymce/start.php')
-rw-r--r--mod/tinymce/start.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/mod/tinymce/start.php b/mod/tinymce/start.php
new file mode 100644
index 000000000..3eb12811c
--- /dev/null
+++ b/mod/tinymce/start.php
@@ -0,0 +1,25 @@
+<?php
+
+ /**
+ * TinyMCE wysiwyg editor
+ * @package ElggTinyMCE
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.org/
+ **/
+
+ function tinymce_init() {
+
+ // Load system configuration
+ global $CONFIG;
+
+ // Add our CSS
+ elgg_extend_view('css','tinymce/css');
+ set_view_location('embed/addcontentjs',$CONFIG->pluginspath . 'tinymce/views/');
+ }
+
+ // Make sure the status initialisation function is called on initialisation
+ register_elgg_event_handler('init','system','tinymce_init',9999);
+
+?> \ No newline at end of file