Home
last modified time | relevance | path

Searched refs:isXref (Results 1 – 25 of 109) sorted by relevance

12345

/webtrees/app/Module/
H A DClippingsCartModule.php316 $xref = Validator::queryParams($request)->isXref()->string('xref');
370 $xref = Validator::queryParams($request)->isXref()->string('xref');
396 $xref = Validator::parsedBody($request)->isXref()->string('xref');
442 $xref = Validator::queryParams($request)->isXref()->string('xref');
480 $xref = Validator::parsedBody($request)->isXref()->string('xref');
548 $xref = Validator::queryParams($request)->isXref()->string('xref');
570 $xref = Validator::queryParams($request)->isXref()->string('xref');
582 $xref = Validator::queryParams($request)->isXref()->string('xref');
604 $xref = Validator::queryParams($request)->isXref()->string('xref');
616 $xref = Validator::queryParams($request)->isXref()->string('xref');
[all …]
H A DHourglassChartModule.php147 $xref = Validator::attributes($request)->isXref()->string('xref');
157 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
207 $xref = Validator::queryParams($request)->isXref()->string('xref');
227 $xref = Validator::queryParams($request)->isXref()->string('xref');
H A DPedigreeMapModule.php179 $xref = Validator::attributes($request)->isXref()->string('xref');
185 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
298 $xref = Validator::attributes($request)->isXref()->string('xref');
H A DFamilyBookChartModule.php145 $xref = Validator::attributes($request)->isXref()->string('xref');
155 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
H A DInteractiveTreeModule.php184 $xref = Validator::queryParams($request)->isXref()->string('xref');
216 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
H A DDescendancyChartModule.php157 $xref = Validator::attributes($request)->isXref()->string('xref');
168 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
H A DAncestorsChartModule.php162 $xref = Validator::attributes($request)->isXref()->string('xref');
170 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
H A DCensusAssistantModule.php82 $indi_xref = Validator::parsedBody($request)->isXref()->string('xref', '');
83 $head_xref = Validator::parsedBody($request)->isXref()->string('head', '');
H A DPedigreeChartModule.php171 $xref = Validator::attributes($request)->isXref()->string('xref');
180 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
H A DFanChartModule.php200 $xref = Validator::attributes($request)->isXref()->string('xref');
213 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
/webtrees/app/Http/RequestHandlers/
H A DChangeFamilyMembersAction.php46 $xref = Validator::parsedBody($request)->isXref()->string('xref');
50 $HUSB = Validator::parsedBody($request)->isXref()->string('HUSB', '');
51 $WIFE = Validator::parsedBody($request)->isXref()->string('WIFE', '');
H A DLinkMediaToRecordAction.php42 $xref = Validator::attributes($request)->isXref()->string('xref');
43 $link = Validator::parsedBody($request)->isXref()->string('link');
H A DMergeRecordsAction.php44 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1');
45 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
H A DFixLevel0MediaAction.php60 $indi_xref = Validator::parsedBody($request)->isXref()->string('indi_xref');
61 $obje_xref = Validator::parsedBody($request)->isXref()->string('obje_xref');
H A DLinkChildToFamilyAction.php45 $xref = Validator::attributes($request)->isXref()->string('xref');
48 $famid = Validator::parsedBody($request)->isXref()->string('famid');
H A DMergeFactsPage.php51 $xref1 = Validator::queryParams($request)->isXref()->string('xref1');
52 $xref2 = Validator::queryParams($request)->isXref()->string('xref2');
H A DMergeRecordsPage.php59 $xref1 = Validator::queryParams($request)->isXref()->string('xref1', '');
60 $xref2 = Validator::queryParams($request)->isXref()->string('xref2', '');
H A DMergeFactsAction.php65 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1');
66 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
H A DSelectNewFact.php43 'xref' => Validator::attributes($request)->isXref()->string('xref'),
H A DLinkMediaToFamilyModal.php42 $xref = Validator::attributes($request)->isXref()->string('xref');
H A DLinkMediaToSourceModal.php42 $xref = Validator::attributes($request)->isXref()->string('xref');
H A DLinkMediaToIndividualModal.php42 $xref = Validator::attributes($request)->isXref()->string('xref');
H A DEditNotePage.php48 $xref = Validator::attributes($request)->isXref()->string('xref');
H A DCreateSubmissionAction.php42 $submitter = Validator::parsedBody($request)->isXref()->string('submitter');
/webtrees/tests/app/
H A DValidatorTest.php325 self::assertSame('X1', Validator::queryParams($request)->isXref()->string('valid'));
326 self::assertSame(['X1'], Validator::queryParams($request)->isXref()->array('valid-array'));
327 self::assertSame([], Validator::queryParams($request)->isXref()->array('invalid-array'));
331 Validator::queryParams($request)->isXref()->string('invalid');

12345