/webtrees/app/Services/ |
H A D | ModuleService.php | 570 * @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 D | AdminService.php | 48 use function sort; alias 132 sort($array); 268 return Collection::make($files)->sort();
|
H A D | MediaFileService.php | 51 use function sort; alias 145 sort($unused_files); 391 ->sort(I18N::comparator())
|
H A D | CalendarService.php | 239 …$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 D | MediaListModule.php | 226 ->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 D | RecentChangesModule.php | 120 …$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 D | ListsMenuModule.php | 84 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
|
H A D | ChartsMenuModule.php | 85 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
|
H A D | ReportsMenuModule.php | 89 … ->sort(static fn (Menu $x, Menu $y): int => I18N::comparator()($x->getLabel(), $y->getLabel()));
|
H A D | RelationshipsChartModule.php | 60 use function sort; alias 545 sort($exclude);
|
H A D | FixWtObjeSortTag.php | 152 ->sort($callback);
|
/webtrees/resources/views/modules/descendancy_chart/ |
H A D | tree.phtml | 26 …<?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 D | UsersCleanupPage.php | 59 ->sort($this->user_service->sortByLastLogin()); 63 ->sort($this->user_service->sortByLastLogin());
|
H A D | SiteTagsPage.php | 73 'all_family_tags' => $all_family_tags->sort()->all(), 74 'all_individual_tags' => $all_individual_tags->sort()->all(),
|
H A D | TreePreferencesPage.php | 146 ->sort(I18N::comparator()); 154 ->sort(I18N::comparator());
|
H A D | AutoCompleteFolder.php | 61 ->sort(I18N::comparator())
|
H A D | AutoCompletePlace.php | 65 $data = $data->concat($module->searchPlaceNames($query))->sort();
|
H A D | MapDataImportPage.php | 69 $files = Collection::make($files)->sort();
|
H A D | TreePrivacyPage.php | 135 … ->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 D | common.js | 16 …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 D | GedcomRecord.php | 610 * @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 D | TreeList.php | 44 $trees = $this->tree_service->all()->sort(callback: fn ($a, $b) => $a->id() <=> $b->id());
|
H A D | UserList.php | 47 $users = $this->user_service->all()->sort(callback: fn ($a, $b) => $a->id() <=> $b->id());
|
/webtrees/app/Elements/ |
H A D | EventsRecorded.php | 129 ->sort()
|
/webtrees/app/Census/ |
H A D | AbstractCensusColumn.php | 101 ->sort(Family::marriageDateComparator())
|