/webtrees/resources/views/lists/ |
H A D | families-table.phtml | 176 …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 D | surnames-table.phtml | 54 <?php if ($surname === Individual::NOMEN_NESCIO) : ?> 62 <?php if ($surname === Individual::NOMEN_NESCIO) : ?>
|
H A D | individuals-table.phtml | 196 …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 D | surnames-column-list.phtml | 25 if ($surname === Individual::NOMEN_NESCIO) {
|
H A D | surnames-bullet-list.phtml | 22 if ($surname === Individual::NOMEN_NESCIO) {
|
H A D | surnames-compact-list.phtml | 22 if ($surname === Individual::NOMEN_NESCIO) {
|
H A D | surnames-tag-cloud.phtml | 30 if ($surname === Individual::NOMEN_NESCIO) {
|
/webtrees/app/Module/ |
H A D | AbstractIndividualListModule.php | 204 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 D | TopSurnamesModule.php | 102 ->where('n_surn', '<>', Individual::NOMEN_NESCIO)
|
H A D | FamilyTreeStatisticsModule.php | 119 ->where('n_surn', '<>', Individual::NOMEN_NESCIO)
|
/webtrees/app/ |
H A D | Family.php | 329 'sort' => Individual::NOMEN_NESCIO, 345 'sort' => Individual::NOMEN_NESCIO,
|
H A D | Individual.php | 42 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 D | I18N.php | 502 Individual::NOMEN_NESCIO,
|
/webtrees/app/Census/ |
H A D | CensusColumnSurnameGivenNames.php | 41 …$surname = strtr($name['surname'], [Individual::NOMEN_NESCIO => I18N::translateContext('Unknow…
|
/webtrees/tests/app/Census/ |
H A D | CensusColumnSurnameGivenNamesTest.php | 75 'surname' => Individual::NOMEN_NESCIO,
|
/webtrees/app/Services/ |
H A D | GedcomImportService.php | 672 if ($name['surn'] === Individual::NOMEN_NESCIO) {
|
/webtrees/app/Statistics/Repository/ |
H A D | IndividualRepository.php | 508 ->whereNotIn('n_surn', ['', Individual::NOMEN_NESCIO])
|