MediaWiki  1.23.13
date-formats.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/../Maintenance.php';
25 
31 class DateFormats extends Maintenance {
32 
33  private $ts = '20010115123456';
34 
35  public function __construct() {
36  parent::__construct();
37  $this->mDescription = "Test various language time and date functions";
38  }
39 
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;
47  }
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' );
54  }
55  $this->output( "date: " );
56  foreach ( $prefs as $index => $pref ) {
57  if ( $index > 0 ) {
58  $this->output( ' | ' );
59  }
60  $this->output( $lang->date( $this->ts, false, $pref ) );
61  }
62  $this->output( "\n$code time: " );
63  foreach ( $prefs as $index => $pref ) {
64  if ( $index > 0 ) {
65  $this->output( ' | ' );
66  }
67  $this->output( $lang->time( $this->ts, false, $pref ) );
68  }
69  $this->output( "\n$code both: " );
70  foreach ( $prefs as $index => $pref ) {
71  if ( $index > 0 ) {
72  $this->output( ' | ' );
73  }
74  $this->output( $lang->timeanddate( $this->ts, false, $pref ) );
75  }
76  $this->output( "\n\n" );
77  }
78  }
79 }
80 
81 $maintClass = "DateFormats";
82 require_once RUN_MAINTENANCE_IF_MAIN;
$maintClass
$maintClass
Definition: date-formats.php:81
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
DateFormats
Maintenance script that tests various language time and date functions.
Definition: date-formats.php:31
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
DateFormats\execute
execute()
Do the actual work.
Definition: date-formats.php:40
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:184
DateFormats\$ts
$ts
Definition: date-formats.php:33
$IP
$IP
Definition: WebStart.php:88
DateFormats\__construct
__construct()
Default constructor.
Definition: date-formats.php:35