uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
cms
/
src
/
nameparsing
/
CustomLanguage.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\nameparsing; use TheIconic\NameParser\LanguageInterface; /** * Custom language for the name parser * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 4.3.0 */ class CustomLanguage implements LanguageInterface { private array $suffixes; private array $salutations; private array $lastNamePrefixes; /** * Constructor * * @param string[] $suffixes * @param string[] $salutations * @param string[] $lastNamePrefixes */ public function __construct(array $suffixes, array $salutations, array $lastNamePrefixes) { $this->suffixes = $this->normalizeKeys($suffixes); $this->salutations = $this->normalizeKeys($salutations); $this->lastNamePrefixes = $this->normalizeKeys($lastNamePrefixes); } private function normalizeKeys(array $strings): array { $normalized = []; foreach ($strings as $key => $string) { if (is_int($key)) { $key = $string; } $normalized[mb_strtolower($key)] = $string; } return $normalized; } public function getSuffixes(): array { return $this->suffixes; } public function getSalutations(): array { return $this->salutations; } public function getLastnamePrefixes(): array { return $this->lastNamePrefixes; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/cms/src/nameparsing/CustomLanguage.php