Lines Matching refs:trees

88     public function searchFamilies(array $trees, array $search): Collection  argument
92 $this->whereTrees($query, 'f_file', $trees);
113 …public function searchFamilyNames(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
132 $this->whereTrees($query, 'f_file', $trees);
171 public function searchIndividuals(array $trees, array $search): Collection argument
175 $this->whereTrees($query, 'i_file', $trees);
196 …public function searchIndividualNames(array $trees, array $search, int $offset = 0, int $limit = P… argument
207 $this->whereTrees($query, 'i_file', $trees);
245 …public function searchLocations(array $trees, array $search, int $offset = 0, int $limit = PHP_INT… argument
250 $this->whereTrees($query, 'o_file', $trees);
266 …public function searchMedia(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
270 $this->whereTrees($query, 'media.m_file', $trees);
286 …public function searchNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
291 $this->whereTrees($query, 'o_file', $trees);
307 …public function searchSharedNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
312 $this->whereTrees($query, 'o_file', $trees);
328 …public function searchRepositories(array $trees, array $search, int $offset = 0, int $limit = PHP_… argument
333 $this->whereTrees($query, 'o_file', $trees);
349 …public function searchSources(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_M… argument
353 $this->whereTrees($query, 's_file', $trees);
369 …public function searchSourcesByName(array $trees, array $search, int $offset = 0, int $limit = PHP… argument
374 $this->whereTrees($query, 's_file', $trees);
390 …public function searchSurnames(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_… argument
394 $this->whereTrees($query, 'n_file', $trees);
415 …public function searchSubmissions(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
420 $this->whereTrees($query, 'o_file', $trees);
436 …public function searchSubmitters(array $trees, array $search, int $offset = 0, int $limit = PHP_IN… argument
441 $this->whereTrees($query, 'o_file', $trees);
1102 private function whereTrees(Builder $query, string $tree_id_field, array $trees): void argument
1104 $tree_ids = array_map(static fn (Tree $tree): int => $tree->id(), $trees);