Home
last modified time | relevance | path

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

12345

/webtrees/app/Factories/
H A DEncodingFactory.php57 public function detect(string $header): EncodingInterface|null argument
66 if (preg_match($regex, $header) === 1) {
77 if (str_starts_with($header, $start)) {
83 $header = strtr(ltrim($header), ["\r\n" => "\n", "\n\r" => "\n", "\r" => "\n"]); variable in Fisharebest\\Webtrees\\Factories\\EncodingFactory
85 …while (str_contains($header, "\n ") || str_contains($header, " \n") || str_contains($header, ' ')…
86 $header = strtr($header, ["\n " => "\n", " \n" => "\n", ' ' => ' ']); variable in Fisharebest\\Webtrees\\Factories\\EncodingFactory
90 $header = strstr($header, "\n0", true); variable in Fisharebest\\Webtrees\\Factories\\EncodingFactory
92 if ($header === false) {
142 if (preg_match('/' . $regex . '/i', $header) === 1) {
147 if (preg_match('/1 CHAR (.+)/', $header, $match) === 1) {
/webtrees/app/Http/RequestHandlers/
H A DHeaderPage.php51 $header = Registry::headerFactory()->make($xref, $tree);
52 $header = Auth::checkHeaderAccess($header, false);
55 if ($header->xref() !== $xref || Registry::slugFactory()->make($header) !== $slug) {
56 return redirect($header->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
71 'record' => $header,
72 'title' => $header->fullName(),
74 ])->withHeader('Link', '<' . $header->url() . '>; rel="canonical"');
H A DMapDataExportCSV.php144 $header = [
149 $header[] = 'Place' . $i;
152 $header[] = 'Longitude';
153 $header[] = 'Latitude';
154 $header[] = 'Zoom';
155 $header[] = 'Icon';
163 fputcsv($resource, $header, MapDataService::CSV_SEPARATOR);
/webtrees/resources/css/
H A Dcolors.css25 .card-header h4 {
68 * +---wt-header-wrapper
69 * | +---wt-header-container
70 * | +---wt-header-content
74 * | +---wt-header-search
75 * | | +---wt-header-search-form
76 * | | +---wt-header-search-field
77 * | | +---wt-header-search-button
98 .wt-header-wrapper, .btn-primary {
117 .wt-header-search {
[all …]
H A Dminimal.css59 * +---wt-header-wrapper
60 * | +---wt-header-container
61 * | +---wt-header-content
65 * | +---wt-header-search
66 * | | +---wt-header-search-form
67 * | | +---wt-header-search-field
68 * | | +---wt-header-search-button
90 .wt-header-wrapper {
93 .wt-header-container {
97 .wt-header-content {
[all …]
H A Dfab.css61 * +---wt-header-wrapper
62 * | +---wt-header-container
63 * | +---wt-header-content
67 * | +---wt-header-search
68 * | | +---wt-header-search-form
69 * | | +---wt-header-search-field
70 * | | +---wt-header-search-button
90 .wt-header-wrapper {
93 .wt-header-container {
97 .wt-header-content {
[all …]
H A Dclouds.css63 * +---wt-header-wrapper
64 * | +---wt-header-container
65 * | +---wt-header-content
69 * | +---wt-header-search
70 * | | +---wt-header-search-form
71 * | | +---wt-header-search-field
72 * | | +---wt-header-search-button
93 .wt-header-wrapper {
98 .wt-header-wrapper .dropdown-item.active {
104 .wt-header-container {
[all …]
H A Dwebtrees.css59 * +---wt-header-wrapper
60 * | +---wt-header-container
61 * | +---wt-header-content
65 * | +---wt-header-search
66 * | | +---wt-header-search-form
67 * | | +---wt-header-search-field
68 * | | +---wt-header-search-button
88 .wt-header-wrapper {
91 .wt-header-container {
94 .wt-header-content {
[all …]
H A Dxenea.css59 * +---wt-header-wrapper
60 * | +---wt-header-container
61 * | +---wt-header-content
65 * | +---wt-header-search
66 * | | +---wt-header-search-form
67 * | | +---wt-header-search-field
68 * | | +---wt-header-search-button
88 .wt-header-wrapper {
93 .wt-header-container {
97 .wt-header-content {
[all …]
H A D_maps.css34 .leaflet-layerstree-header-name {
38 .leaflet-layerstree-node .leaflet-layerstree-node .leaflet-layerstree-header-name {
H A D_sortable.css18 .wt-sortable-item .card-header {
/webtrees/app/
H A DAuth.php246 * @param Header|null $header
253 public static function checkHeaderAccess(Header|null $header, bool $edit = false): Header argument
257 if ($header === null) {
261 if ($edit && $header->canEdit()) {
262 $header->lock();
264 return $header;
267 if ($header->canShow()) {
268 return $header;
/webtrees/app/Module/
H A DFrequentlyAskedQuestionsModule.php287 $header = '';
297 $header = $this->getBlockSetting($block_id, 'header');
316 'header' => $header,
334 $header = Validator::parsedBody($request)->string('header');
344 $header = $this->html_service->sanitize($header);
364 $this->setBlockSetting($block_id, 'header', $header);
/webtrees/app/Http/Middleware/
H A DEmitResponse.php31 use function header; alias
123 header(sprintf(
138 header(
/webtrees/app/Services/
H A DGedcomExportService.php308 …$header = Registry::headerFactory()->make('HEAD', $tree) ?? Registry::headerFactory()->new('HEAD',…
311 if ($header instanceof Header) {
312 foreach ($header->facts(['COPR', 'LANG', 'PLAC', 'NOTE']) as $fact) {
317 foreach ($header->facts(['SUBM', 'SUBN']) as $fact) {
H A DAdminService.php257 $header = fread($stream, 10);
260 return preg_match('/^(' . UTF8::BYTE_ORDER_MARK . ')?0 HEAD/', $header) > 0;
/webtrees/resources/views/modules/faq/
H A Dshow.phtml21 <a href="#faq<?= e($id) ?>"><?= e($faq->header) ?></a>
30 <?= e($faq->header) ?>
H A Dconfig.phtml82 <?= e($faq->header) ?>
104 …rm="<?= I18N::translate('Are you sure you want to delete “%s”?', e($faq->header)) ?>" aria-label="…
H A Dedit.phtml37 value="<?= e($header) ?>">
/webtrees/public/css/
H A Dvendor.min.css6header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;col…
11header,[dir] .ts-dropdown .option{padding:5px 8px}.ts-dropdown .optgroup-header{color:#303030}.ts-…
H A Dcolors.min.css1header-name{font-weight:700}.leaflet-layerstree-node .leaflet-layerstree-node .leaflet-layerstree-
H A Dxenea.min.css1header-name{font-weight:700}.leaflet-layerstree-node .leaflet-layerstree-node .leaflet-layerstree-
H A Dclouds.min.css1header-name{font-weight:700}.leaflet-layerstree-node .leaflet-layerstree-node .leaflet-layerstree-
/webtrees/data/
H A Dindex.php20 header('Location: ../index.php');
/webtrees/app/Contracts/
H A DEncodingFactoryInterface.php32 public function detect(string $header): EncodingInterface|null; argument

12345