Home
last modified time | relevance | path

Searched refs:strip_tags (Results 1 – 25 of 51) sorted by relevance

123

/webtrees/app/Statistics/Service/
H A DCenturyService.php45 return strip_tags(I18N::translateContext('CENTURY', '21st'));
47 return strip_tags(I18N::translateContext('CENTURY', '20th'));
49 return strip_tags(I18N::translateContext('CENTURY', '19th'));
51 return strip_tags(I18N::translateContext('CENTURY', '18th'));
53 return strip_tags(I18N::translateContext('CENTURY', '17th'));
55 return strip_tags(I18N::translateContext('CENTURY', '16th'));
57 return strip_tags(I18N::translateContext('CENTURY', '15th'));
59 return strip_tags(I18N::translateContext('CENTURY', '14th'));
61 return strip_tags(I18N::translateContext('CENTURY', '13th'));
63 return strip_tags(I18N::translateContext('CENTURY', '12th'));
[all …]
/webtrees/app/Elements/
H A DNoteStructure.php30 use function strip_tags; alias
127 if ($html === '<p>' . strip_tags($note->fullName()) . '</p>') {
128 $value = '<a href="' . e($note->url()) . '">' . strip_tags($html) . '</a>';
150 … if ($html === strip_tags($html, ['a', 'em', 'p', 'strong']) && substr_count($html, '<p>') === 1) {
151 $html = strip_tags($html, ['a', 'em', 'strong']);
H A DAbstractElement.php35 use function strip_tags; alias
164 $values = array_map(static fn (string $x): string => strip_tags($x), $values);
338 $html = strip_tags($html, ['a', 'br']);
/webtrees/tests/feature/
H A DPrivacy.php25 use function strip_tags; alias
38 self::assertSame('Queen Elizabeth II', strip_tags($queen_elizabeth->fullName()));
42 self::assertSame('Charles, Prince of Wales', strip_tags($prince_charles->fullName()));
46 self::assertSame('Savannah Anne Kathleen Phillips', strip_tags($savannah->fullName()));
50 self::assertSame('Princess Beatrice of York', strip_tags($beatrice->fullName()));
/webtrees/resources/views/
H A Dpending-changes-page.phtml69 <?= strip_tags($fact->summary()) ?>
73 <?= strip_tags($fact->summary()) ?>
80 …->user_name, 'subject' => I18N::translate('Pending changes') . ' - ' . strip_tags($record_change->…
/webtrees/app/Http/RequestHandlers/
H A DFamilyPage.php42 use function strip_tags; alias
137 $value = strip_tags($fact->date()->display());
154 $meta_facts = array_map(static fn (string $x): string => strip_tags($x), $meta_facts);
H A DHelpText.php31 use function strip_tags; alias
309 $dates[$gedcom_date] = strip_tags($date->display());
H A DIndividualPage.php50 use function strip_tags; alias
226 $meta_facts = array_map(static fn (string $x): string => strip_tags($x), $meta_facts);
/webtrees/app/Module/
H A DDescendancyModule.php175 …'<a href="' . e($person->url()) . '" title="' . strip_tags($person->fullName()) . '">' . view('ico…
194 …$spouse_link = '<a href="' . e($spouse->url()) . '" title="' . strip_tags($spouse->fullName()) . '…
200 …$family_link = '<a href="' . e($family->url()) . '" title="' . strip_tags($family->fullName()) . '…
H A DMapLinkBing.php25 use function strip_tags; alias
63 $label = strip_tags($fact->record()->fullName()) . ' — ' . $fact->label();
H A DBranchesListModule.php52 use function strip_tags; alias
373 …return '<li title="' . strip_tags($individual->fullName()) . '" class="wt-branch-split"><small>' .…
425 …$fam_html .= ' <a href="' . e($family->url()) . '" title="' . strip_tags($family->getMarriageDate(…
H A DFanChartModule.php63 use function strip_tags; alias
440 $areas .= ' alt="' . strip_tags($individual->fullName()) . '"';
441 $areas .= ' title="' . strip_tags($individual->fullName()) . '">';
H A DShareAnniversaryModule.php40 use function strip_tags; alias
144 'SUMMARY' => strip_tags($record->fullName()) . ' — ' . $fact->label(),
H A DPedigreeChartModule.php274 …return '<a class="px-2" href="' . e($url) . '" title="' . strip_tags($title) . '">' . $icon . '<sp…
342 …return '<a class="dropdown-item" href="' . e($url) . '" title="' . strip_tags($title) . '">' . $te…
/webtrees/resources/views/edit/
H A Dicon-fact-delete.phtml16 …-confirm="<?= I18N::translate('Are you sure you want to delete “%s”?', strip_tags($fact->name())) …
21 …= I18N::translate('Are you sure you want to delete the link to “%s”?', strip_tags($fact->target()-…
/webtrees/app/Factories/
H A DSlugFactory.php29 use function strip_tags; alias
57 $slug = strip_tags($record->fullName());
H A DMarkdownFactory.php44 use function strip_tags; alias
108 $html = strip_tags($html, ['a', 'br', 'p']);
/webtrees/app/Report/
H A DReportBaseElement.php22 use function strip_tags; alias
83 $this->text .= strip_tags($t);
/webtrees/app/
H A DI18N.php46 use function strip_tags; alias
440 $text = strip_tags($text);
499 $string = strip_tags($string); // otherwise HTML tags show up as latin
H A DNote.php30 use function strip_tags; alias
129 $html = strip_tags($html, ['br']);
H A DIndividual.php428 $birth_place = strip_tags($this->getBirthPlace()->shortName());
429 $death_place = strip_tags($this->getDeathPlace()->shortName());
433 $birth_date = "\u{2068}" . strip_tags($this->getBirthDate()->display()) . "\u{2069}";
434 $death_date = "\u{2068}" . strip_tags($this->getDeathDate()->display()) . "\u{2069}";
H A DPlace.php31 use function strip_tags; alias
290 $title = strip_tags($this->fullName());
H A DMediaFile.php195 'alt' => strip_tags($this->media->fullName()),
202 'data-title' => strip_tags($this->media->fullName()),
/webtrees/app/Statistics/Google/
H A DChartFamilyLargest.php31 use function strip_tags; alias
100 htmlspecialchars_decode(strip_tags($family->fullName())),
/webtrees/app/Services/
H A DDataFixService.php39 use function strip_tags; alias
115 $title = strip_tags($record->fullName());

123