Home
last modified time | relevance | path

Searched refs:NOMEN_NESCIO (Results 1 – 17 of 17) sorted by relevance

/webtrees/resources/views/lists/
H A Dfamilies-table.phtml176 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', implo…
192 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', $husb…
201 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', implo…
217 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', $wife…
H A Dsurnames-table.phtml54 <?php if ($surname === Individual::NOMEN_NESCIO) : ?>
62 <?php if ($surname === Individual::NOMEN_NESCIO) : ?>
H A Dindividuals-table.phtml196 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', implo…
210 …rt="<?= e(str_replace([',', Individual::PRAENOMEN_NESCIO, Individual::NOMEN_NESCIO], 'AAAA', $indi…
H A Dsurnames-column-list.phtml25 if ($surname === Individual::NOMEN_NESCIO) {
H A Dsurnames-bullet-list.phtml22 if ($surname === Individual::NOMEN_NESCIO) {
H A Dsurnames-compact-list.phtml22 if ($surname === Individual::NOMEN_NESCIO) {
H A Dsurnames-tag-cloud.phtml30 if ($surname === Individual::NOMEN_NESCIO) {
/webtrees/app/Module/
H A DAbstractIndividualListModule.php204 if ($surname === Individual::NOMEN_NESCIO) {
228 $surname = Individual::NOMEN_NESCIO;
314 $filter = static fn (string $x): bool => $x === Individual::NOMEN_NESCIO;
321 … $filter = static fn (string $x): bool => $x !== '' && $x !== Individual::NOMEN_NESCIO;
H A DTopSurnamesModule.php102 ->where('n_surn', '<>', Individual::NOMEN_NESCIO)
H A DFamilyTreeStatisticsModule.php119 ->where('n_surn', '<>', Individual::NOMEN_NESCIO)
/webtrees/app/
H A DFamily.php329 'sort' => Individual::NOMEN_NESCIO,
345 'sort' => Individual::NOMEN_NESCIO,
H A DIndividual.php42 public const NOMEN_NESCIO = '@N.N.'; define in Fisharebest\\Webtrees\\Individual
1016 … $full = str_replace(self::NOMEN_NESCIO, I18N::translateContext('Unknown surname', '…'), $full);
H A DI18N.php502 Individual::NOMEN_NESCIO,
/webtrees/app/Census/
H A DCensusColumnSurnameGivenNames.php41 …$surname = strtr($name['surname'], [Individual::NOMEN_NESCIO => I18N::translateContext('Unknow…
/webtrees/tests/app/Census/
H A DCensusColumnSurnameGivenNamesTest.php75 'surname' => Individual::NOMEN_NESCIO,
/webtrees/app/Services/
H A DGedcomImportService.php672 if ($name['surn'] === Individual::NOMEN_NESCIO) {
/webtrees/app/Statistics/Repository/
H A DIndividualRepository.php508 ->whereNotIn('n_surn', ['', Individual::NOMEN_NESCIO])