Home
last modified time | relevance | path

Searched refs:isInArrayKeys (Results 1 – 12 of 12) sorted by relevance

/webtrees/app/Module/
H A DDescendancyChartModule.php158 … $style = Validator::attributes($request)->isInArrayKeys($this->styles())->string('style');
167 … 'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles())->string('style'),
H A DAncestorsChartModule.php161 … $style = Validator::attributes($request)->isInArrayKeys($this->styles())->string('style');
171 … 'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles())->string('style'),
H A DUpcomingAnniversariesModule.php256 …$info_style = Validator::parsedBody($request)->isInArrayKeys($this->infoStyles())->string('infoSty…
257 …$sort_style = Validator::parsedBody($request)->isInArrayKeys($this->sortStyles())->string('sortSty…
H A DMediaListModule.php162 … 'format' => Validator::parsedBody($request)->isInArrayKeys($formats)->string('format'),
175 $format = Validator::queryParams($request)->isInArrayKeys($formats)->string('format', '');
H A DPedigreeChartModule.php172 …$style = Validator::attributes($request)->isInArrayKeys($this->styles('ltr'))->string('style…
181 …'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles('ltr'))->string('sty…
H A DFanChartModule.php201 … $style = Validator::attributes($request)->isInArrayKeys($this->styles())->integer('style');
211 …'style' => Validator::parsedBody($request)->isInArrayKeys($this->styles())->integer('style'),
H A DColorsTheme.php86 … $palette = Validator::queryParams($request)->isInArrayKeys($this->palettes())->string('palette');
/webtrees/tests/app/
H A DValidatorTest.php283 …self::assertSame('foo', Validator::queryParams($request)->isInArrayKeys(['foo' => 1, 'bar' => 2])-…
287 Validator::queryParams($request)->isInArrayKeys(['baz' => 3])->string('param');
/webtrees/app/Http/RequestHandlers/
H A DBroadcastPage.php56 $to = Validator::attributes($request)->isInArrayKeys($recipient_types)->string('to');
H A DBroadcastAction.php62 $to = Validator::attributes($request)->isInArrayKeys($recipients)->string('to');
H A DImportGedcomAction.php75 …$encoding = Validator::parsedBody($request)->isInArrayKeys($encodings)->string('encoding…
/webtrees/app/
H A DValidator.php156 public function isInArrayKeys(array $values): self function in Fisharebest\\Webtrees\\Validator