Lines Matching refs:xref

152             $xref = $route->attributes['xref'];  variable in Fisharebest\\Webtrees\\Module\\ClippingsCartModule
153 assert(is_string($xref));
158 'xref' => $xref,
261 foreach ($xrefs as $xref) {
262 $object = Registry::gedcomRecordFactory()->make($xref, $tree);
316 $xref = Validator::queryParams($request)->isXref()->string('xref');
320 unset($cart[$tree->name()][$xref]);
356 …$records = array_map(static fn (string $xref): GedcomRecord|null => Registry::gedcomRecordFactory(…
370 $xref = Validator::queryParams($request)->isXref()->string('xref');
371 $family = Registry::familyFactory()->make($xref, $tree);
396 $xref = Validator::parsedBody($request)->isXref()->string('xref');
399 $family = Registry::familyFactory()->make($xref, $tree);
442 $xref = Validator::queryParams($request)->isXref()->string('xref');
443 $individual = Registry::individualFactory()->make($xref, $tree);
480 $xref = Validator::parsedBody($request)->isXref()->string('xref');
483 $individual = Registry::individualFactory()->make($xref, $tree);
548 $xref = Validator::queryParams($request)->isXref()->string('xref');
549 $location = Registry::locationFactory()->make($xref, $tree);
570 $xref = Validator::queryParams($request)->isXref()->string('xref');
571 $location = Registry::locationFactory()->make($xref, $tree);
582 $xref = Validator::queryParams($request)->isXref()->string('xref');
583 $media = Registry::mediaFactory()->make($xref, $tree);
604 $xref = Validator::queryParams($request)->isXref()->string('xref');
605 $media = Registry::mediaFactory()->make($xref, $tree);
616 $xref = Validator::queryParams($request)->isXref()->string('xref');
617 $note = Registry::noteFactory()->make($xref, $tree);
638 $xref = Validator::queryParams($request)->isXref()->string('xref');
639 $note = Registry::noteFactory()->make($xref, $tree);
650 $xref = Validator::queryParams($request)->isXref()->string('xref');
651 $repository = Registry::repositoryFactory()->make($xref, $tree);
672 $xref = Validator::queryParams($request)->isXref()->string('xref');
673 $repository = Registry::repositoryFactory()->make($xref, $tree);
688 $xref = Validator::queryParams($request)->isXref()->string('xref');
689 $source = Registry::sourceFactory()->make($xref, $tree);
711 $xref = Validator::parsedBody($request)->isXref()->string('xref');
714 $source = Registry::sourceFactory()->make($xref, $tree);
734 $xref = Validator::queryParams($request)->isXref()->string('xref');
735 $submitter = Registry::submitterFactory()->make($xref, $tree);
756 $xref = Validator::queryParams($request)->isXref()->string('xref');
757 $submitter = Registry::submitterFactory()->make($xref, $tree);
771 $xref = $family->xref();
773 if (($cart[$tree][$xref] ?? false) === false) {
774 $cart[$tree][$xref] = true;
796 $xref = $individual->xref();
798 if (($cart[$tree][$xref] ?? false) === false) {
799 $cart[$tree][$xref] = true;
816 $xref = $location->xref();
818 if (($cart[$tree][$xref] ?? false) === false) {
819 $cart[$tree][$xref] = true;
834 foreach ($matches[1] as $xref) {
835 $location = Registry::locationFactory()->make($xref, $record->tree());
849 $xref = $media->xref();
851 if (($cart[$tree][$xref] ?? false) === false) {
852 $cart[$tree][$xref] = true;
864 foreach ($matches[1] as $xref) {
865 $media = Registry::mediaFactory()->make($xref, $record->tree());
879 $xref = $note->xref();
881 if (($cart[$tree][$xref] ?? false) === false) {
882 $cart[$tree][$xref] = true;
892 foreach ($matches[1] as $xref) {
893 $note = Registry::noteFactory()->make($xref, $record->tree());
907 $xref = $source->xref();
909 if (($cart[$tree][$xref] ?? false) === false) {
910 $cart[$tree][$xref] = true;
923 foreach ($matches[1] as $xref) {
924 $source = Registry::sourceFactory()->make($xref, $record->tree());
938 $xref = $repository->xref();
940 if (($cart[$tree][$xref] ?? false) === false) {
941 $cart[$tree][$xref] = true;
953 foreach ($matches[1] as $xref) {
954 $repository = Registry::repositoryFactory()->make($xref, $record->tree());
967 $xref = $submitter->xref();
969 if (($cart[$tree][$xref] ?? false) === false) {
970 $cart[$tree][$xref] = true;
982 foreach ($matches[1] as $xref) {
983 $submitter = Registry::submitterFactory()->make($xref, $record->tree());