Merge "Use __DIR__ instead of dirname( __FILE__ )"
[lhc/web/wiklou.git] / maintenance / language / date-formats.php
1 <?php
2 /**
3 * Test various language time and date functions
4 *
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.
9 *
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.
14 *
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
19 *
20 * @ingroup MaintenanceLanguage
21 */
22
23 require_once( __DIR__ . '/../Maintenance.php' );
24
25 class DateFormats extends Maintenance {
26
27 private $ts = '20010115123456';
28
29 public function __construct() {
30 parent::__construct();
31 $this->mDescription = "Test various language time and date functions";
32 }
33
34 public function execute() {
35 global $IP;
36 foreach ( glob( "$IP/languages/messages/Messages*.php" ) as $filename ) {
37 $base = basename( $filename );
38 $m = array();
39 if ( !preg_match( '/Messages(.*)\.php$/', $base, $m ) ) {
40 continue;
41 }
42 $code = str_replace( '_', '-', strtolower( $m[1] ) );
43 $this->output( "$code " );
44 $lang = Language::factory( $code );
45 $prefs = $lang->getDatePreferences();
46 if ( !$prefs ) {
47 $prefs = array( 'default' );
48 }
49 $this->output( "date: " );
50 foreach ( $prefs as $index => $pref ) {
51 if ( $index > 0 ) {
52 $this->output( ' | ' );
53 }
54 $this->output( $lang->date( $this->ts, false, $pref ) );
55 }
56 $this->output( "\n$code time: " );
57 foreach ( $prefs as $index => $pref ) {
58 if ( $index > 0 ) {
59 $this->output( ' | ' );
60 }
61 $this->output( $lang->time( $this->ts, false, $pref ) );
62 }
63 $this->output( "\n$code both: " );
64 foreach ( $prefs as $index => $pref ) {
65 if ( $index > 0 ) {
66 $this->output( ' | ' );
67 }
68 $this->output( $lang->timeanddate( $this->ts, false, $pref ) );
69 }
70 $this->output( "\n\n" );
71 }
72 }
73 }
74
75 $maintClass = "DateFormats";
76 require_once( RUN_MAINTENANCE_IF_MAIN );