/webtrees/app/Module/ |
H A D | UpcomingAnniversariesModule.php | 146 $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 D | MediaListModule.php | 173 $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 D | OnThisDayModule.php | 127 $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 D | ShareAnniversaryModule.php | 102 ->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 D | AbstractIndividualListModule.php | 314 $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 D | dialog_iequirks.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | dialog_ie.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | dialog_ie8.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | dialog.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | dialog_ie7.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor_ie8.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor_ie7.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor_iequirks.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor_ie.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor_gecko.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
H A D | editor.css | 5 …filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColors…
|
/webtrees/app/Services/ |
H A D | LinkedRecordService.php | 108 ->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 D | MediaFileService.php | 287 ->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 D | SearchService.php | 99 ->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 D | HomePageService.php | 145 ->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 D | ModuleService.php | 560 …->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 D | pagination.phtml | 26 …, ['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 D | page.phtml | 76 … <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 D | TreePreferencesPage.php | 136 …$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 D | GedcomRecord.php | 617 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());
|