/webtrees/app/Module/ |
H A D | UserJournalModule.php | 179 'body' => $row->body, 202 $body = Validator::parsedBody($request)->string('body'); 205 $body = $this->html_service->sanitize($body); 212 'body' => $body, 218 'body' => $body,
|
H A D | FamilyTreeNewsModule.php | 180 'body' => $row->body, 203 $body = Validator::parsedBody($request)->string('body'); 206 $body = $this->html_service->sanitize($body); 213 'body' => $body, 219 'body' => $body,
|
H A D | FrequentlyAskedQuestionsModule.php | 288 $body = ''; 298 $body = $this->getBlockSetting($block_id, 'faqbody'); 317 'body' => $body, 333 $body = Validator::parsedBody($request)->string('body'); 343 $body = $this->html_service->sanitize($body); 363 $this->setBlockSetting($block_id, 'faqbody', $body);
|
H A D | CustomCssJsModule.php | 90 $body = Validator::parsedBody($request)->string('body'); 93 $this->setPreference('body', $body);
|
/webtrees/app/Http/RequestHandlers/ |
H A D | ContactAction.php | 93 $body = Validator::parsedBody($request)->string('body'); 109 $errors = $body === '' || $subject === '' || $from_email === '' || $from_name === ''; 121 …quote($base_url, '/') . ')(((?:ftp|http|https):\/\/)[a-zA-Z0-9.-]+)/', $subject . $body, $match)) { 129 'body' => $body, 143 if ($this->message_service->deliverMessage($sender, $to_user, $subject, $body, $url, $ip)) { 152 'body' => $body,
|
H A D | MessageAction.php | 70 $body = Validator::parsedBody($request)->string('body'); 80 if ($body === '' || $subject === '') { 82 'body' => $body, 90 if ($this->message_service->deliverMessage($user, $to_user, $subject, $body, $url, $ip)) { 99 'body' => $body,
|
H A D | BroadcastAction.php | 64 $body = Validator::parsedBody($request)->isNotEmpty()->string('body'); 67 if ($body === '' || $subject === '') { 69 'body' => $body, 76 if ($this->message_service->deliverMessage($user, $to_user, $subject, $body, '', $ip)) {
|
H A D | MessagePage.php | 61 $body = Validator::queryParams($request)->string('body', ''); 74 'body' => $body,
|
H A D | ContactPage.php | 72 $body = Validator::queryParams($request)->string('body', ''); 90 'body' => $body,
|
/webtrees/app/Http/Middleware/ |
H A D | EmitResponse.php | 154 $body = $response->getBody(); 156 if ($body->isSeekable()) { 157 $body->rewind(); 160 while (!$body->eof() && connection_status() === CONNECTION_NORMAL) { 161 echo $body->read(self::CHUNK_SIZE);
|
/webtrees/app/Services/ |
H A D | MessageService.php | 89 * @param string $body 95 …UserInterface $sender, UserInterface $recipient, string $subject, string $body, string $url, strin… argument 106 'message' => $body, 113 'message' => $body,
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/wsc/dialogs/ |
H A D | wsc.css | 6 html, body selector 13 body selector 18 body, td, input, select, textarea selector
|
/webtrees/public/css/ |
H A D | vendor.min.css | 6 …body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs… selector 11 …body{border-bottom-color:#dee2e6;border-bottom-width:1px;border-bottom:var(--bs-border-width) soli…
|
/webtrees/resources/js/ |
H A D | webtrees.js | 65 webtrees.httpPost= function (url, body = '') { argument 69 body: body, property 79 return fetch(url, options, body);
|
/webtrees/app/Report/ |
H A D | PdfRenderer.php | 93 public function body(): void function in Fisharebest\\Webtrees\\Report\\PdfRenderer 398 $this->body();
|
/webtrees/resources/views/modules/gedcom_news/ |
H A D | edit.phtml | 43 …d="body" name="body" class="html-edit form-control" rows="10" dir="auto"><?= e($body) ?></textarea>
|
H A D | list.phtml | 37 <div dir="auto"><?= $article->body ?></div>
|
/webtrees/resources/views/modules/user_blog/ |
H A D | edit.phtml | 43 …d="body" name="body" class="html-edit form-control" rows="10" dir="auto"><?= e($body) ?></textarea>
|
H A D | list.phtml | 37 <div dir="auto"><?= $article->body ?></div>
|
/webtrees/resources/views/modules/custom-css-js/ |
H A D | edit.phtml | 38 …body" name="body" class="form-control font-monospace" dir="ltr" rows="5"><?= e($body) ?></textarea>
|
/webtrees/resources/views/ |
H A D | contact-page.phtml | 72 …d="body" type="text" name="body" rows="5" dir="auto" required="required"><?= e($body) ?></textarea>
|
H A D | message-page.phtml | 60 …d="body" type="text" name="body" dir="auto" rows="5" required="required"><?= e($body) ?></textarea>
|
/webtrees/resources/views/modules/faq/ |
H A D | edit.phtml | 47 …<textarea name="body" id="body" class="form-control html-edit" rows="10"><?= e($body) ?></textarea>
|
/webtrees/resources/views/admin/ |
H A D | email-page.phtml | 62 …d="body" type="text" name="body" dir="auto" rows="5" required="required"><?= e($body) ?></textarea>
|
/webtrees/resources/views/modules/user-messages/ |
H A D | user-messages.phtml | 107 <?= Registry::markdownFactory()->autolink($message->body) ?>
|