Home
last modified time | relevance | path

Searched refs:encodingFactory (Results 1 – 4 of 4) sorted by relevance

/webtrees/app/GedcomFilters/
H A DGedcomEncodingFilter.php52 $this->src_encoding = Registry::encodingFactory()->make($src_encoding);
55 $this->dst_encoding = Registry::encodingFactory()->make($dst_encoding);
79 $this->src_encoding ??= Registry::encodingFactory()->detect($this->data);
94 $this->src_encoding ??= Registry::encodingFactory()->make('UTF-8');
/webtrees/resources/views/admin/
H A Dtrees-import.phtml86 …=> '', 'options' => ['' => I18N::translate('automatic')] + Registry::encodingFactory()->list()]) ?>
/webtrees/app/Http/RequestHandlers/
H A DImportGedcomAction.php74 $encodings = ['' => ''] + Registry::encodingFactory()->list();
/webtrees/app/
H A DRegistry.php183 …public static function encodingFactory(EncodingFactoryInterface|null $factory = null): EncodingFac… function in Fisharebest\\Webtrees\\Registry