Home
last modified time | relevance | path

Searched refs:array_slice (Results 1 – 15 of 15) sorted by relevance

/webtrees/app/
H A DRelationship.php26 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 DSoundex.php22 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 DClipboardService.php27 use function array_slice; alias
57 $clipboard[$record_type] = array_slice($clipboard[$record_type], -self::CLIPBOARD_SIZE);
H A DRelationshipService.php35 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 DGedcomEditService.php39 use function array_slice; alias
138 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + (int) $levels[$i]));
/webtrees/app/Census/
H A DAbstractCensusColumn.php26 use function array_slice; alias
182 return implode(', ', array_slice($parts, 0, -1));
/webtrees/resources/views/edit/
H A Dedit-gedcom-fields.phtml27 …$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 Dtrees-privacy.phtml60 …, '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 DMapDataImportAction.php39 use function array_slice; alias
146 … $name = implode(Gedcom::PLACE_SEPARATOR, array_reverse(array_slice($row, 1, 1 + $level)));
H A DCheckTree.php62 use function array_slice; alias
205 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + $level));
/webtrees/app/Module/
H A DTopSurnamesModule.php33 use function array_slice; alias
126 $top_surnames = array_slice($top_surnames, 0, $num, true);
H A DFamilyTreeStatisticsModule.php35 use function array_slice; alias
143 $top_surnames = array_slice($top_surnames, 0, $number_of_surnames, true);
/webtrees/resources/views/
H A Dfact-gedcom-fields.phtml35 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + $levels[$key]));
/webtrees/app/Statistics/Repository/
H A DIndividualRepository.php54 use function array_slice; alias
144 $nameList = array_slice($nameList, 0, $maxtoshow);
/webtrees/
H A Dphpstan-baseline.neon7984 message: '#^Parameter \#1 \$array of function array_slice expects array, mixed given\.$#'