diff dnd.module @ 29:37ca57016cbe

Added TinyMCE atomic selection plugin.
author David Eads <eads@chicagotech.org>
date Tue, 17 Mar 2009 10:59:50 -0500
parents 7d6bf2dca269
children 2d49adbd8992
line wrap: on
line diff
--- a/dnd.module	Tue Mar 17 06:25:47 2009 -0500
+++ b/dnd.module	Tue Mar 17 10:59:50 2009 -0500
@@ -126,3 +126,14 @@
 }
 
 function template_preprocess_dnd_library($library) {}
+
+/**
+ * Implementation of hook_wywiwyg_plugin().
+ */
+function dnd_wysiwyg_plugin($editor) {
+  switch ($editor) {
+    case 'tinymce':
+      dpm($editor);
+      break;
+  }
+}