Home
last modified time | relevance | path

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

/webtrees/app/SurnameTradition/
H A DIcelandicSurnameTradition.php76 if (preg_match(self::REGEX_GIVN, $this->extractName($father), $match) === 1) {
109 …if ($sex === 'M' && preg_match('~(?<GIVN>[^ /]+)(:?sson)$~', $this->extractName($child), $match) =…
115 …if ($sex === 'F' && preg_match('~(?<GIVN>[^ /]+)(:?sdottir)$~', $this->extractName($child), $match…
H A DSpanishSurnameTradition.php77 if (preg_match(self::REGEX_SURNS, $this->extractName($father), $match_father) === 1) {
83 if (preg_match(self::REGEX_SURNS, $this->extractName($mother), $match_mother) === 1) {
107 if (preg_match(self::REGEX_SURNS, $this->extractName($child), $match) === 1) {
H A DPortugueseSurnameTradition.php77 if (preg_match(self::REGEX_SURNS, $this->extractName($father), $match_father) === 1) {
83 if (preg_match(self::REGEX_SURNS, $this->extractName($mother), $match_mother) === 1) {
107 if (preg_match(self::REGEX_SURNS, $this->extractName($child), $match) === 1) {
H A DLithuanianSurnameTradition.php92 if (preg_match(self::REGEX_SURN, $this->extractName($father), $match) === 1) {
121 … if ($sex === 'M' && preg_match(self::REGEX_SURN, $this->extractName($child), $match) === 1) {
145 … if ($sex === 'F' && preg_match(self::REGEX_SURN, $this->extractName($spouse), $match) === 1) {
H A DPolishSurnameTradition.php82 if (preg_match(self::REGEX_SURN, $this->extractName($father), $match) === 1) {
107 … if ($sex === 'M' && preg_match(self::REGEX_SURN, $this->extractName($child), $match) === 1) {
129 … if ($sex === 'F' && preg_match(self::REGEX_SURN, $this->extractName($spouse), $match) === 1) {
H A DMatrilinealSurnameTradition.php64 if (preg_match(self::REGEX_SPFX_SURN, $this->extractName($mother), $match) === 1) {
87 … if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
H A DPaternalSurnameTradition.php64 … if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
88 …if ($sex === 'F' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($spouse), $match) === 1) {
H A DPatrilinealSurnameTradition.php64 if (preg_match(self::REGEX_SPFX_SURN, $this->extractName($father), $match) === 1) {
87 … if ($sex === 'M' && preg_match(self::REGEX_SPFX_SURN, $this->extractName($child), $match) === 1) {
H A DDefaultSurnameTradition.php158 protected function extractName(Individual|null $individual): string function in Fisharebest\\Webtrees\\SurnameTradition\\DefaultSurnameTradition