Home
last modified time | relevance | path

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

/webtrees/app/SurnameTradition/
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 DDefaultSurnameTradition.php45 protected const REGEX_SURN = '~(?<NAME>/(?<SURN>[^/]+)/)~'; define in Fisharebest\\Webtrees\\SurnameTradition\\DefaultSurnameTradition