Special:BookSources Add global
[mediawiki.git] / maintenance / language / date-formats.php
blob146341855ebf8c0ece2c0e81a23068bc8d186290
1 <?php
2 /**
3 * Test various language time and date functions
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup MaintenanceLanguage
24 require_once __DIR__ . '/../Maintenance.php';
26 /**
27 * Maintenance script that tests various language time and date functions.
29 * @ingroup MaintenanceLanguage
31 class DateFormats extends Maintenance {
33 private $ts = '20010115123456';
35 public function __construct() {
36 parent::__construct();
37 $this->mDescription = "Test various language time and date functions";
40 public function execute() {
41 global $IP;
42 foreach ( glob( "$IP/languages/messages/Messages*.php" ) as $filename ) {
43 $base = basename( $filename );
44 $m = array();
45 if ( !preg_match( '/Messages(.*)\.php$/', $base, $m ) ) {
46 continue;
48 $code = str_replace( '_', '-', strtolower( $m[1] ) );
49 $this->output( "$code " );
50 $lang = Language::factory( $code );
51 $prefs = $lang->getDatePreferences();
52 if ( !$prefs ) {
53 $prefs = array( 'default' );
55 $this->output( "date: " );
56 foreach ( $prefs as $index => $pref ) {
57 if ( $index > 0 ) {
58 $this->output( ' | ' );
60 $this->output( $lang->date( $this->ts, false, $pref ) );
62 $this->output( "\n$code time: " );
63 foreach ( $prefs as $index => $pref ) {
64 if ( $index > 0 ) {
65 $this->output( ' | ' );
67 $this->output( $lang->time( $this->ts, false, $pref ) );
69 $this->output( "\n$code both: " );
70 foreach ( $prefs as $index => $pref ) {
71 if ( $index > 0 ) {
72 $this->output( ' | ' );
74 $this->output( $lang->timeanddate( $this->ts, false, $pref ) );
76 $this->output( "\n\n" );
81 $maintClass = "DateFormats";
82 require_once RUN_MAINTENANCE_IF_MAIN;