MediaWiki REL1_31
date-formats.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/../Maintenance.php';
25
31class DateFormats extends Maintenance {
32
33 private $ts = '20010115123456';
34
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription( '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 = [];
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 = [ '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::class;
82require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script that tests various language time and date functions.
__construct()
Default constructor.
execute()
Do the actual work.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addDescription( $text)
Set the description text.
$maintClass
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:865
$IP
Definition update.php:3
require_once RUN_MAINTENANCE_IF_MAIN
if(!isset( $args[0])) $lang