Version 1
[yaffs-website] / web / core / modules / filter / tests / filter_test / filter_test.module
diff --git a/web/core/modules/filter/tests/filter_test/filter_test.module b/web/core/modules/filter/tests/filter_test/filter_test.module
new file mode 100644 (file)
index 0000000..e3983b4
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+
+/**
+ * @file
+ * Test module for Filter module hooks and functions not used in core.
+ */
+
+/**
+ * Implements hook_filter_format_insert().
+ */
+function filter_test_filter_format_insert($format) {
+  drupal_set_message('hook_filter_format_insert invoked.');
+}
+
+/**
+ * Implements hook_filter_format_update().
+ */
+function filter_test_filter_format_update($format) {
+  drupal_set_message('hook_filter_format_update invoked.');
+}
+
+/**
+ * Implements hook_filter_format_disable().
+ */
+function filter_test_filter_format_disable($format) {
+  drupal_set_message('hook_filter_format_disable invoked.');
+}