MediaWiki master
IntvalFilter.php
Go to the documentation of this file.
1<?php
8
9class IntvalFilter implements Filter {
10
14 public function filterForForm( $value ) {
15 return $value;
16 }
17
21 public function filterFromForm( $value ) {
22 return intval( $value );
23 }
24}
Base interface for user preference filters that work as a middleware between storage and interface.
Definition Filter.php:13