Searched refs:surn (Results 1 – 11 of 11) sorted by relevance
/webtrees/app/SurnameTradition/ |
H A D | LithuanianSurnameTradition.php | 95 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 98 $surn = $match['SURN']; 102 $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SURN' => $surn]), 123 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 126 $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SURN' => $surn]), 147 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 151 $this->buildName($name, ['TYPE' => NameType::VALUE_MARRIED, 'SURN' => $surn]),
|
H A D | PolishSurnameTradition.php | 89 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 91 return [$this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SURN' => $surn])]; 109 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 112 $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SURN' => $surn]), 131 $surn = $this->inflect($match['SURN'], self::INFLECT_MALE); 135 $this->buildName($name, ['TYPE' => NameType::VALUE_MARRIED, 'SURN' => $surn]),
|
H A D | MatrilinealSurnameTradition.php | 67 $surn = $match['SURN']; 70 … $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SPFX' => $spfx, 'SURN' => $surn]), 90 $surn = $match['SURN']; 93 … $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SPFX' => $spfx, 'SURN' => $surn]),
|
H A D | PaternalSurnameTradition.php | 67 $surn = $match['SURN']; 71 … $this->buildName($name, ['TYPE' => NameType::VALUE_MARRIED, 'SPFX' => $spfx, 'SURN' => $surn]), 91 $surn = $match['SURN']; 95 … $this->buildName($name, ['TYPE' => NameType::VALUE_MARRIED, 'SPFX' => $spfx, 'SURN' => $surn]),
|
H A D | PatrilinealSurnameTradition.php | 67 $surn = $match['SURN']; 70 … $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SPFX' => $spfx, 'SURN' => $surn]), 90 $surn = $match['SURN']; 93 … $this->buildName($name, ['TYPE' => NameType::VALUE_BIRTH, 'SPFX' => $spfx, 'SURN' => $surn]),
|
/webtrees/resources/views/lists/ |
H A D | surnames-table.phtml | 48 <?php foreach ($surnames as $surn => $surns) : ?> 57 …<a href="<?= e($module->listUrl($tree, ['surname' => $surn] + $params)) ?>" class="ut"><?= e($surn… 59 …<a href="<?= e($module->listUrl($tree, ['surname' => $surn] + $params)) ?>" class="ut"><?= e($surn… 65 <span class="ut"><?= e($surn) ?></span>
|
H A D | surnames-column-list.phtml | 22 <?php foreach ($surnames as $surn => $surns) : ?> 29 $label = e($surn); 30 …dule instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn] + $params) : ''; 33 …dule instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn] + $params) : '';
|
H A D | surnames-bullet-list.phtml | 20 foreach ($surnames as $surn => $surns) { 26 $label = e($surn); 27 …rl = $module instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn]) : ''; 30 …rl = $module instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn]) : '';
|
H A D | surnames-compact-list.phtml | 20 foreach ($surnames as $surn => $surns) { 26 $label = e($surn); 27 …rl = $module instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn]) : ''; 30 …rl = $module instanceof ModuleListInterface ? $module->listUrl($tree, ['surname' => $surn]) : '';
|
H A D | surnames-tag-cloud.phtml | 25 <?php foreach ($surnames as $surn => $surns) : ?> 33 $label = e($surn);
|
/webtrees/resources/js/ |
H A D | webtrees.js | 126 webtrees.buildNameFromParts = function (npfx, givn, spfx, surn, nsfx, sex) { argument 127 const usesCJK = webtrees.detectScript(npfx + givn + spfx + givn + surn + nsfx) === 'Han'; 137 surn = inflectSurname(trim(surn.replace(/,/g, separator)), sex); 142 const surname = trim(spfx + surname_separator + surn);
|