MediaWiki
REL1_40
DateFormatterFactory.php
Go to the documentation of this file.
1
<?php
2
3
class
DateFormatterFactory
{
5
private
$instances;
6
11
public
function
get
(
Language
$lang
) {
12
$code =
$lang
->getCode();
13
if
( !isset( $this->instances[$code] ) ) {
14
$this->instances[$code] =
new
DateFormatter
(
$lang
);
15
}
16
return
$this->instances[$code];
17
}
18
}
DateFormatterFactory
Definition
DateFormatterFactory.php:3
DateFormatter
Date formatter.
Definition
DateFormatter.php:38
Language
Base class for language-specific code.
Definition
Language.php:56
$lang
if(!isset( $args[0])) $lang
Definition
testCompression.php:38
includes
parser
DateFormatterFactory.php
Generated on Thu Jun 27 2024 14:03:35 for MediaWiki by
1.10.0