summaryrefslogtreecommitdiff
path: root/includes/htmlform/HTMLNestedFilterable.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/htmlform/HTMLNestedFilterable.php')
-rw-r--r--includes/htmlform/HTMLNestedFilterable.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/includes/htmlform/HTMLNestedFilterable.php b/includes/htmlform/HTMLNestedFilterable.php
new file mode 100644
index 00000000..2c09ea4e
--- /dev/null
+++ b/includes/htmlform/HTMLNestedFilterable.php
@@ -0,0 +1,11 @@
+<?php
+
+interface HTMLNestedFilterable {
+ /**
+ * Support for seperating multi-option preferences into multiple preferences
+ * Due to lack of array support.
+ *
+ * @param array $data
+ */
+ function filterDataForSubmit( $data );
+}