Home
last modified time | relevance | path

Searched refs:body (Results 1 – 25 of 116) sorted by relevance

12345

/webtrees/app/Module/
H A DUserJournalModule.php179 '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 DFamilyTreeNewsModule.php180 '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 DFrequentlyAskedQuestionsModule.php288 $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 DCustomCssJsModule.php90 $body = Validator::parsedBody($request)->string('body');
93 $this->setPreference('body', $body);
/webtrees/app/Http/RequestHandlers/
H A DContactAction.php93 $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 DMessageAction.php70 $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 DBroadcastAction.php64 $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 DMessagePage.php61 $body = Validator::queryParams($request)->string('body', '');
74 'body' => $body,
H A DContactPage.php72 $body = Validator::queryParams($request)->string('body', '');
90 'body' => $body,
/webtrees/app/Http/Middleware/
H A DEmitResponse.php154 $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 DMessageService.php89 * @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 Dwsc.css6 html, body selector
13 body selector
18 body, td, input, select, textarea selector
/webtrees/public/css/
H A Dvendor.min.css6body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs… selector
11body{border-bottom-color:#dee2e6;border-bottom-width:1px;border-bottom:var(--bs-border-width) soli…
/webtrees/resources/js/
H A Dwebtrees.js65 webtrees.httpPost= function (url, body = '') { argument
69 body: body, property
79 return fetch(url, options, body);
/webtrees/app/Report/
H A DPdfRenderer.php93 public function body(): void function in Fisharebest\\Webtrees\\Report\\PdfRenderer
398 $this->body();
/webtrees/resources/views/modules/gedcom_news/
H A Dedit.phtml43 …d="body" name="body" class="html-edit form-control" rows="10" dir="auto"><?= e($body) ?></textarea>
H A Dlist.phtml37 <div dir="auto"><?= $article->body ?></div>
/webtrees/resources/views/modules/user_blog/
H A Dedit.phtml43 …d="body" name="body" class="html-edit form-control" rows="10" dir="auto"><?= e($body) ?></textarea>
H A Dlist.phtml37 <div dir="auto"><?= $article->body ?></div>
/webtrees/resources/views/modules/custom-css-js/
H A Dedit.phtml38 …body" name="body" class="form-control font-monospace" dir="ltr" rows="5"><?= e($body) ?></textarea>
/webtrees/resources/views/
H A Dcontact-page.phtml72 …d="body" type="text" name="body" rows="5" dir="auto" required="required"><?= e($body) ?></textarea>
H A Dmessage-page.phtml60 …d="body" type="text" name="body" dir="auto" rows="5" required="required"><?= e($body) ?></textarea>
/webtrees/resources/views/modules/faq/
H A Dedit.phtml47 …<textarea name="body" id="body" class="form-control html-edit" rows="10"><?= e($body) ?></textarea>
/webtrees/resources/views/admin/
H A Demail-page.phtml62 …d="body" type="text" name="body" dir="auto" rows="5" required="required"><?= e($body) ?></textarea>
/webtrees/resources/views/modules/user-messages/
H A Duser-messages.phtml107 <?= Registry::markdownFactory()->autolink($message->body) ?>

12345