Home
last modified time | relevance | path

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

/webtrees/app/
H A DI18N.php212 private static Collator|null $collator = null; variable in Fisharebest\\Webtrees\\I18N
319 self::$collator = new Collator(self::$locale->code() . ';collation=phonebook');
321 self::$collator = new Collator(self::$locale->code() . '@collation=phonebook');
324 self::$collator->setStrength(Collator::SECONDARY);
549 $collator = self::$collator;
551 if ($collator instanceof Collator) {
552 return static fn (string $x, string $y): int => (int) $collator->compare($x, $y);