/webtrees/app/Module/ |
H A D | ClippingsCartModule.php | 316 $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 D | HourglassChartModule.php | 147 $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 D | PedigreeMapModule.php | 179 $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 D | FamilyBookChartModule.php | 145 $xref = Validator::attributes($request)->isXref()->string('xref'); 155 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
H A D | InteractiveTreeModule.php | 184 $xref = Validator::queryParams($request)->isXref()->string('xref'); 216 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
H A D | DescendancyChartModule.php | 157 $xref = Validator::attributes($request)->isXref()->string('xref'); 168 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
H A D | AncestorsChartModule.php | 162 $xref = Validator::attributes($request)->isXref()->string('xref'); 170 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
H A D | CensusAssistantModule.php | 82 $indi_xref = Validator::parsedBody($request)->isXref()->string('xref', ''); 83 $head_xref = Validator::parsedBody($request)->isXref()->string('head', '');
|
H A D | PedigreeChartModule.php | 171 $xref = Validator::attributes($request)->isXref()->string('xref'); 180 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
H A D | FanChartModule.php | 200 $xref = Validator::attributes($request)->isXref()->string('xref'); 213 'xref' => Validator::parsedBody($request)->isXref()->string('xref'),
|
/webtrees/app/Http/RequestHandlers/ |
H A D | ChangeFamilyMembersAction.php | 46 $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 D | LinkMediaToRecordAction.php | 42 $xref = Validator::attributes($request)->isXref()->string('xref'); 43 $link = Validator::parsedBody($request)->isXref()->string('link');
|
H A D | MergeRecordsAction.php | 44 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1'); 45 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
|
H A D | FixLevel0MediaAction.php | 60 $indi_xref = Validator::parsedBody($request)->isXref()->string('indi_xref'); 61 $obje_xref = Validator::parsedBody($request)->isXref()->string('obje_xref');
|
H A D | LinkChildToFamilyAction.php | 45 $xref = Validator::attributes($request)->isXref()->string('xref'); 48 $famid = Validator::parsedBody($request)->isXref()->string('famid');
|
H A D | MergeFactsPage.php | 51 $xref1 = Validator::queryParams($request)->isXref()->string('xref1'); 52 $xref2 = Validator::queryParams($request)->isXref()->string('xref2');
|
H A D | MergeRecordsPage.php | 59 $xref1 = Validator::queryParams($request)->isXref()->string('xref1', ''); 60 $xref2 = Validator::queryParams($request)->isXref()->string('xref2', '');
|
H A D | MergeFactsAction.php | 65 $xref1 = Validator::parsedBody($request)->isXref()->string('xref1'); 66 $xref2 = Validator::parsedBody($request)->isXref()->string('xref2');
|
H A D | SelectNewFact.php | 43 'xref' => Validator::attributes($request)->isXref()->string('xref'),
|
H A D | LinkMediaToFamilyModal.php | 42 $xref = Validator::attributes($request)->isXref()->string('xref');
|
H A D | LinkMediaToSourceModal.php | 42 $xref = Validator::attributes($request)->isXref()->string('xref');
|
H A D | LinkMediaToIndividualModal.php | 42 $xref = Validator::attributes($request)->isXref()->string('xref');
|
H A D | EditNotePage.php | 48 $xref = Validator::attributes($request)->isXref()->string('xref');
|
H A D | CreateSubmissionAction.php | 42 $submitter = Validator::parsedBody($request)->isXref()->string('submitter');
|
/webtrees/tests/app/ |
H A D | ValidatorTest.php | 325 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');
|