Home
last modified time | relevance | path

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

/webtrees/app/Factories/
H A DEncodingFactory.php29 use Fisharebest\Webtrees\Encodings\ISO88591; alias
123 'ISO-8859-1' => ISO88591::NAME, // Cumberland Family Tree, Lifelines
124 'ISO8859-1' => ISO88591::NAME, // Scion Genealogist
125 'ISO8859' => ISO88591::NAME, // Genealogica Grafica
126 'LATIN-1' => ISO88591::NAME,
127 'LATIN1' => ISO88591::NAME, // GenealogyJ
198 case ISO88591::NAME:
199 return new ISO88591();
222 ISO88591::NAME => 'ISO-8859-1',
/webtrees/tests/app/Encodings/
H A DISO88591Test.php23 use Fisharebest\Webtrees\Encodings\ISO88591; alias
39 $encoding = new ISO88591();
58 $expected = iconv(ISO88591::NAME, UTF8::NAME, $character);
/webtrees/app/Encodings/
H A DISO88591.php27 class ISO88591 extends AbstractEncoding class