MediaWiki master
TimezoneFilter.php
Go to the documentation of this file.
1<?php
8
10
11class TimezoneFilter implements Filter {
12
16 public function filterForForm( $value ) {
17 return $value;
18 }
19
23 public function filterFromForm( $tz ) {
24 return ( new UserTimeCorrection( $tz ) )->toString();
25 }
26}
Utility class to parse the TimeCorrection string value.
Base interface for user preference filters that work as a middleware between storage and interface.
Definition Filter.php:13