Home
last modified time | relevance | path

Searched refs:ISO88592 (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/Factories/
H A DEncodingFactory.php30 use Fisharebest\Webtrees\Encodings\ISO88592; alias
128 'ISO-8859-2' => ISO88592::NAME,
129 'ISO8859-2' => ISO88592::NAME,
130 'LATIN-2' => ISO88592::NAME,
131 'LATIN2' => ISO88592::NAME,
201 case ISO88592::NAME:
202 return new ISO88592();
223 ISO88592::NAME => 'ISO-8859-2',
/webtrees/tests/app/Encodings/
H A DISO88592Test.php23 use Fisharebest\Webtrees\Encodings\ISO88592; alias
39 $encoding = new ISO88592();
58 $expected = iconv(ISO88592::NAME, UTF8::NAME, $character);
/webtrees/app/Encodings/
H A DISO88592.php27 class ISO88592 extends AbstractEncoding class