/webtrees/app/ |
H A D | Relationship.php | 26 use function array_slice; alias 166 $nodes = array_slice($nodes, 2); 167 $patterns = array_slice($patterns, 1); 215 $nodes = array_slice($nodes, 2 * $generations); 216 $patterns = array_slice($patterns, $generations); 486 $nodes = array_slice($nodes, 2 * (2 * $n + 1));
|
H A D | Soundex.php | 22 use function array_slice; alias 656 $soundex_array = array_slice(array_unique($soundex_array), 0, 51); 682 $soundex_array = array_slice(array_unique($soundex_array), 0, 36);
|
/webtrees/app/Services/ |
H A D | ClipboardService.php | 27 use function array_slice; alias 57 $clipboard[$record_type] = array_slice($clipboard[$record_type], -self::CLIPBOARD_SIZE);
|
H A D | RelationshipService.php | 35 use function array_slice; alias 295 $path_slice = array_slice($nodes, $start * 2, $length * 2 + 1); 296 $pattern_slice = array_slice($pattern, $start, $length); 300 $nodes_before = array_slice($nodes, 0, $start * 2 + 1); 301 $pattern_before = array_slice($pattern, 0, $start); 304 $nodes_after = array_slice($nodes, ($start + $length) * 2); 305 $pattern_after = array_slice($pattern, $start + $length);
|
H A D | GedcomEditService.php | 39 use function array_slice; alias 138 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + (int) $levels[$i]));
|
/webtrees/app/Census/ |
H A D | AbstractCensusColumn.php | 26 use function array_slice; alias 182 return implode(', ', array_slice($parts, 0, -1));
|
/webtrees/resources/views/edit/ |
H A D | edit-gedcom-fields.phtml | 27 …$elements[$key] = Registry::elementFactory()->make(implode(':', array_slice($hierarchy, … 28 …$ids[$key] = Registry::idFactory()->id() . '-' . implode('-', array_slice($hierarch…
|
/webtrees/resources/views/admin/ |
H A D | trees-privacy.phtml | 60 …, 'selected' => $tree->getPreference('SHOW_DEAD_PEOPLE'), 'options' => array_slice(Auth::accessLev… 131 … 'selected' => $tree->getPreference('SHOW_LIVING_NAMES'), 'options' => array_slice(Auth::accessLev…
|
/webtrees/app/Http/RequestHandlers/ |
H A D | MapDataImportAction.php | 39 use function array_slice; alias 146 … $name = implode(Gedcom::PLACE_SEPARATOR, array_reverse(array_slice($row, 1, 1 + $level)));
|
H A D | CheckTree.php | 62 use function array_slice; alias 205 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + $level));
|
/webtrees/app/Module/ |
H A D | TopSurnamesModule.php | 33 use function array_slice; alias 126 $top_surnames = array_slice($top_surnames, 0, $num, true);
|
H A D | FamilyTreeStatisticsModule.php | 35 use function array_slice; alias 143 $top_surnames = array_slice($top_surnames, 0, $number_of_surnames, true);
|
/webtrees/resources/views/ |
H A D | fact-gedcom-fields.phtml | 35 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + $levels[$key]));
|
/webtrees/app/Statistics/Repository/ |
H A D | IndividualRepository.php | 54 use function array_slice; alias 144 $nameList = array_slice($nameList, 0, $maxtoshow);
|
/webtrees/ |
H A D | phpstan-baseline.neon | 7984 message: '#^Parameter \#1 \$array of function array_slice expects array, mixed given\.$#'
|