Home
last modified time | relevance | path

Searched refs:sort (Results 1 – 25 of 114) sorted by relevance

12345

/webtrees/app/Services/
H A DModuleService.php570 * @param bool $sort
574 …public function findByInterface(string $interface, bool $include_disabled = false, bool $sort = fa… argument
583 return $modules->sort($this->footerComparator());
587 return $modules->sort($this->menuComparator());
591 return $modules->sort($this->sidebarComparator());
595 return $modules->sort($this->tabComparator());
598 if ($sort) {
600 return $modules->sort($this->moduleComparator());
825 …->sort(static fn (ModuleLanguageInterface $x, ModuleLanguageInterface $y): int => $x->locale()->en…
H A DAdminService.php48 use function sort; alias
132 sort($array);
268 return Collection::make($files)->sort();
H A DMediaFileService.php51 use function sort; alias
145 sort($unused_files);
391 ->sort(I18N::comparator())
H A DCalendarService.php239 …$facts = $facts->sort(static fn (Fact $x, Fact $y): int => $x->jd <=> $y->jd ?: $x->date()->minimu…
243 …$facts = $facts->sort(static fn (Fact $x, Fact $y): int => $x->jd <=> $y->jd ?: $y->date()->minimu…
247 …$facts = $facts->sort(static fn (Fact $x, Fact $y): int => GedcomRecord::nameComparator()($x->reco…
/webtrees/app/Module/
H A DMediaListModule.php226 ->sort()
241 * @param string $sort either "file" or "title"
247 …private function allMedia(Tree $tree, string $folder, bool $subfolders, string $sort, string $filt… argument
293 switch ($sort) {
H A DRecentChangesModule.php120 …$rows = $rows->sort(static fn (object $x, object $y): int => GedcomRecord::nameComparator()($x->r…
125 … $rows = $rows->sort(static fn (object $x, object $y): int => $x->time <=> $y->time);
131 … $rows = $rows->sort(static fn (object $x, object $y): int => $y->time <=> $x->time);
H A DListsMenuModule.php84 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
H A DChartsMenuModule.php85 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
H A DReportsMenuModule.php89 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
H A DRelationshipsChartModule.php60 use function sort; alias
545 sort($exclude);
H A DFixWtObjeSortTag.php152 ->sort($callback);
/webtrees/resources/views/modules/descendancy_chart/
H A Dtree.phtml26 …<?php foreach ($individual->spouseFamilies()->sort(Family::marriageDateComparator()) as $family) :…
47 …<?php foreach ($family->children()->sort(Individual::birthDateComparator())->values() as $n => $ch…
/webtrees/app/Http/RequestHandlers/
H A DUsersCleanupPage.php59 ->sort($this->user_service->sortByLastLogin());
63 ->sort($this->user_service->sortByLastLogin());
H A DSiteTagsPage.php73 'all_family_tags' => $all_family_tags->sort()->all(),
74 'all_individual_tags' => $all_individual_tags->sort()->all(),
H A DTreePreferencesPage.php146 ->sort(I18N::comparator());
154 ->sort(I18N::comparator());
H A DAutoCompleteFolder.php61 ->sort(I18N::comparator())
H A DAutoCompletePlace.php65 $data = $data->concat($module->searchPlaceNames($query))->sort();
H A DMapDataImportPage.php69 $files = Collection::make($files)->sort();
H A DTreePrivacyPage.php135 … ->sort(static fn (object $x, object $y): int => I18N::comparator()($x->tag_label, $y->tag_label))
/webtrees/public/ckeditor-4.15.1-custom/plugins/pastetools/filter/
H A Dcommon.js16 …ngth;d++)-1!==l.indexOf(b,e[d].toLowerCase())?f.push(e[d]):g.push(e[d]);f.sort(function(a,c){var d…
19 …indexOf,e={},f;for(f in a)-1===c(b,f)&&(e[f]=a[f]);return e},sort:function(a){return a.sort(functi…
20 c=h.inliner.sort,e=function(a){a=(new DOMParser).parseFromString(a,"text/html");return new CKEDITOR…
/webtrees/app/
H A DGedcomRecord.php610 * @param bool $sort
618 bool $sort = false, argument
636 if ($sort) {
653 ->sort(static function (Fact $x, Fact $y) use ($subtags): int {
/webtrees/app/Cli/Commands/
H A DTreeList.php44 $trees = $this->tree_service->all()->sort(callback: fn ($a, $b) => $a->id() <=> $b->id());
H A DUserList.php47 $users = $this->user_service->all()->sort(callback: fn ($a, $b) => $a->id() <=> $b->id());
/webtrees/app/Elements/
H A DEventsRecorded.php129 ->sort()
/webtrees/app/Census/
H A DAbstractCensusColumn.php101 ->sort(Family::marriageDateComparator())

12345