Home
last modified time | relevance | path

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

/webtrees/app/SurnameTradition/
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 DDefaultSurnameTradition.php48 protected const REGEX_SURNS = '~/(?<SURN1>[^ /]+)(?: | y |/ /|/ y /)(?<SURN2>[^ /]+)/~'; define in Fisharebest\\Webtrees\\SurnameTradition\\DefaultSurnameTradition