Lines Matching refs:search
88 public function searchFamilies(array $trees, array $search): Collection argument
93 $this->whereSearch($query, 'f_gedcom', $search);
100 ->filter($this->rawGedcomFilter($search));
113 …public function searchFamilyNames(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
133 $this->whereSearch($query, $field, $search);
171 public function searchIndividuals(array $trees, array $search): Collection argument
176 $this->whereSearch($query, 'i_gedcom', $search);
183 ->filter($this->rawGedcomFilter($search));
196 …public function searchIndividualNames(array $trees, array $search, int $offset = 0, int $limit = P… argument
208 $this->whereSearch($query, 'n_full', $search);
245 …public function searchLocations(array $trees, array $search, int $offset = 0, int $limit = PHP_INT… argument
251 $this->whereSearch($query, 'o_gedcom', $search);
266 …public function searchMedia(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
271 $this->whereSearch($query, 'm_gedcom', $search);
286 …public function searchNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
292 $this->whereSearch($query, 'o_gedcom', $search);
307 …public function searchSharedNotes(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
313 $this->whereSearch($query, 'o_gedcom', $search);
328 …public function searchRepositories(array $trees, array $search, int $offset = 0, int $limit = PHP_… argument
334 $this->whereSearch($query, 'o_gedcom', $search);
349 …public function searchSources(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_M… argument
354 $this->whereSearch($query, 's_gedcom', $search);
369 …public function searchSourcesByName(array $trees, array $search, int $offset = 0, int $limit = PHP… argument
375 $this->whereSearch($query, 's_name', $search);
390 …public function searchSurnames(array $trees, array $search, int $offset = 0, int $limit = PHP_INT_… argument
395 $this->whereSearch($query, 'n_surname', $search);
415 …public function searchSubmissions(array $trees, array $search, int $offset = 0, int $limit = PHP_I… argument
421 $this->whereSearch($query, 'o_gedcom', $search);
436 …public function searchSubmitters(array $trees, array $search, int $offset = 0, int $limit = PHP_IN… argument
442 $this->whereSearch($query, 'o_gedcom', $search);
451 * @param string $search
457 …public function searchPlaces(Tree $tree, string $search, int $offset = 0, int $limit = PHP_INT_MAX… argument
491 foreach (explode(',', $search, 9) as $level => $string) {