Home
last modified time | relevance | path

Searched refs:filter (Results 1 – 25 of 136) sorted by relevance

123456

/webtrees/app/Module/
H A DUpcomingAnniversariesModule.php146 $filter = (bool)$this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
156 if ($filter) {
165 …$facts = $this->calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortSt…
169 if ($filter && Auth::check()) {
175 if ($filter && Auth::check()) {
255 $filter = Validator::parsedBody($request)->boolean('filter');
261 $this->setBlockSetting($block_id, 'filter', (string)$filter);
280 $filter = $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
296 'filter' => $filter,
H A DMediaListModule.php173 $filter = Validator::queryParams($request)->string('filter', '');
178 $media_objects = $this->allMedia($tree, $folder, $subdirs, 'title', $filter, $format);
192 'filter' => $filter,
242 * @param string $filter optional search string
247 …edia(Tree $tree, string $folder, bool $subfolders, string $sort, string $filter, string $format): … argument
280 if ($filter !== '') {
281 $query->where(static function (Builder $query) use ($filter): void {
282 $like = '%' . addcslashes($filter, '\\%_') . '%';
306 ->filter(GedcomRecord::accessFilter());
H A DOnThisDayModule.php127 $filter = (bool) $this->getBlockSetting($block_id, 'filter', '1');
137 if ($filter) {
146 …$facts = $calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortStyle, $…
149 if ($filter && Auth::check()) {
226 $filter = Validator::parsedBody($request)->string('filter');
231 $this->setBlockSetting($block_id, 'filter', $filter);
249 $filter = $this->getBlockSetting($block_id, 'filter', '1');
280 'filter' => $filter,
H A DShareAnniversaryModule.php102 ->filter(fn (Fact $fact): bool => $fact->date()->isOK())
103 ->filter(fn (Fact $fact): bool => $fact->date()->qual1 === '')
104 ->filter(fn (Fact $fact): bool => $fact->date()->minimumDate() instanceof GregorianDate)
105 …->filter(fn (Fact $fact): bool => $fact->date()->minimumJulianDay() === $fact->date()->maximumJuli…
H A DAbstractIndividualListModule.php314 $filter = static fn (string $x): bool => $x === Individual::NOMEN_NESCIO;
317 $filter = static fn (string $x): bool => $x === '';
321 … $filter = static fn (string $x): bool => $x !== '' && $x !== Individual::NOMEN_NESCIO;
323 $filter = static fn (string $x): bool => $x === $surname;
328 … $filter = static fn (string $x): bool => I18N::language()->initialLetter($x) === $alpha;
330 $filter = static fn (string $x): bool => $x === $surname;
335 $all_surnames = array_filter($all_surnames, $filter, ARRAY_FILTER_USE_KEY);
/webtrees/public/ckeditor-4.15.1-custom/skins/moono/
H A Ddialog_iequirks.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Ddialog_ie.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Ddialog_ie8.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Ddialog.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Ddialog_ie7.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor_ie8.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor_ie7.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor_iequirks.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor_ie.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor_gecko.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
H A Deditor.css5filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
/webtrees/app/Services/
H A DLinkedRecordService.php108 ->filter(GedcomRecord::accessFilter());
139 ->filter(GedcomRecord::accessFilter());
164 ->filter(GedcomRecord::accessFilter());
188 ->filter(GedcomRecord::accessFilter());
213 ->filter(GedcomRecord::accessFilter());
238 ->filter(GedcomRecord::accessFilter());
262 ->filter(GedcomRecord::accessFilter());
288 ->filter(GedcomRecord::accessFilter());
H A DMediaFileService.php287 ->filter(fn (StorageAttributes $attributes): bool => $attributes->isFile())
288 … ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
337 ->filter(fn (StorageAttributes $attributes): bool => $attributes->isDir())
338 … ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
381 ->filter(fn (StorageAttributes $attributes): bool => $attributes->isDir())
382 … ->filter(fn (StorageAttributes $attributes): bool => !$this->ignorePath($attributes->path()))
H A DSearchService.php99 ->filter(GedcomRecord::accessFilter())
100 ->filter($this->rawGedcomFilter($search));
162 ->filter(GedcomRecord::accessFilter());
182 ->filter(GedcomRecord::accessFilter())
183 ->filter($this->rawGedcomFilter($search));
232 ->filter(GedcomRecord::accessFilter());
501 $filter = static fn (): bool => true;
503 return $this->paginateQuery($query, $row_mapper, $filter, $offset, $limit);
869 ->filter(GedcomRecord::accessFilter())
870 ->filter(static function (Individual $individual) use ($fields, $tree): bool {
[all …]
H A DHomePageService.php145 ->filter(static fn (ModuleBlockInterface $block): bool => $block->isTreeBlock())
160 ->filter(static fn (ModuleBlockInterface $block): bool => $block->isUserBlock())
388 …ic fn (string $block_name): ModuleBlockInterface|null => $active_blocks->filter(static fn (ModuleI…
389 ->filter();
H A DModuleService.php560 …->filter(static fn (ModuleInterface $module): bool => $module->accessLevel($tree, $interface) >= A…
578 ->filter($this->interfaceFilter($interface));
657 })->filter($this->enabledFilter($include_disabled));
688 ->filter(static function (string $filename): bool {
712 ->filter()
824 …->filter(static fn (ModuleInterface $module): bool => $module instanceof ModuleLanguageInterface &…
848 ->filter(static function (ModuleInterface $module): bool {
/webtrees/resources/views/modules/media-list/
H A Dpagination.phtml26 …, ['go' => '1', 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
34 …, ['go' => '1', 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
46 …, ['go' => '1', 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
54 …, ['go' => '1', 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
H A Dpage.phtml76 … <input type="text" class="form-control" name="filter" id="filter" value="<?= e($filter) ?>">
98 …ges' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
182 …ges' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $form…
/webtrees/app/Http/RequestHandlers/
H A DTreePreferencesPage.php136 …$members = $this->user_service->all()->filter(static fn (UserInterface $user): bool => Auth::isMem…
141 … ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
144 … ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
149 … ->filter(static fn (string $value, string $key): bool => !in_array($key, $ignore_facts, true))
152 … ->filter(static fn (ElementInterface $element): bool => !$element instanceof UnknownElement)
/webtrees/app/
H A DGedcomRecord.php617 array $filter = [], argument
625 $filter = array_map(fn (string $tag): string => $this->tag() . ':' . $tag, $filter);
630 … if (($filter === [] || in_array($fact->tag(), $filter, true)) && $fact->canShow($access_level)) {
664 $facts = $facts->filter(static fn (Fact $fact): bool => !$fact->isPendingDeletion());

123456