(bug 47070) check content model namespace on import.
[lhc/web/wiklou.git] / includes / htmlform / HTMLNestedFilterable.php
1 <?php
2 interface HTMLNestedFilterable {
3 /**
4 * Support for seperating multi-option preferences into multiple preferences
5 * Due to lack of array support.
6 *
7 * @param $data array
8 */
9 function filterDataForSubmit( $data );
10 }