Home
last modified time | relevance | path

Searched refs:strtolower (Results 1 – 23 of 23) sorted by relevance

/webtrees/app/Module/
H A DSlideShowModule.php37 use function strtolower; alias
247 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_AUDIO), (string) V…
248 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_BOOK), (string) Va…
249 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_CARD), (string) Va…
250 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_CERTIFICATE), (str…
251 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_COAT), (string) Va…
252 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_DOCUMENT), (string…
253 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_ELECTRONIC), (stri…
254 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_FICHE), (string) V…
255 …$this->setBlockSetting($block_id, 'filter_' . strtolower(SourceMediaType::VALUE_FILM), (string) Va…
[all …]
H A DBranchesListModule.php54 use function strtolower; alias
380 …$sosa_html = ' <a class="small wt-chart-box-' . strtolower($individual->sex()) . '" href="' . e($…
418 …$sosa_html = ' <a class="small wt-chart-box-' . strtolower($spouse->sex()) . '" href="' . e($modu…
/webtrees/app/Http/Middleware/
H A DCompressResponse.php35 use function strtolower; alias
105 $accept_encoding = strtolower($request->getHeaderLine('accept-encoding'));
136 $content_type = strtolower($content_type);
/webtrees/app/Http/RequestHandlers/
H A DUnconnectedPage.php36 use function strtolower; alias
96 $component = array_map(static fn ($x): string => strtolower((string) $x), $component);
98 if (!in_array(strtolower($xref), $component, true)) {
H A DExportGedcomPage.php33 use function strtolower; alias
60 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') {
H A DModuleAction.php33 use function strtolower; alias
73 $verb = strtolower($request->getMethod());
H A DExportGedcomServer.php39 use function strtolower; alias
74 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
/webtrees/app/Services/
H A DServerCheckService.php37 use function strtolower; alias
162 $function = strtolower($function);
165 …$disable_functions = array_map(static fn (string $func): string => strtolower(trim($func)), $disab…
H A DGedcomExportService.php62 use function strtolower; alias
283 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
/webtrees/resources/views/modules/relatives/
H A Dfamily.phtml39 $row_class = 'wt-sex-' . strtolower($person->sex());
76 $row_class = 'wt-sex-' . strtolower($person->sex());
162 $row_class = 'wt-sex-' . strtolower($person->sex());
/webtrees/app/Elements/
H A DNameOfFamilyFile.php26 use function strtolower; alias
50 $extension = strtolower(pathinfo($value, PATHINFO_EXTENSION));
H A DAgeAtEvent.php27 use function strtolower; alias
73 return strtolower($canonical);
/webtrees/app/
H A DI18N.php555 …return static fn (string $x, string $y): int => strcmp(self::strtolower($x), self::strtolower($y));
565 public static function strtolower(string $string): string function in Fisharebest\\Webtrees\\I18N
H A DIndividual.php351 …return '<i class="icon-silhouette icon-silhouette-' . strtolower($this->sex()) . ' wt-icon-flip-rt…
/webtrees/tests/app/
H A DI18NTest.php35 self::assertSame(I18N::strtolower(''), '');
36 self::assertSame(I18N::strtolower('Abc'), 'abc');
/webtrees/resources/views/modules/family_nav/
H A Dsidebar-family.phtml31 … <tr class="text-center wt-family-navigator-parent wt-sex-<?= strtolower($spouse->sex()) ?>">
79 … <tr class="text-center wt-family-navigator-child wt-sex-<?= strtolower($child->sex()) ?>">
/webtrees/app/Report/
H A DRightToLeftSupport.php32 use function strtolower; alias
158 $temp = strtolower(substr($element, 0, 3));
182 if (strtolower($entity) === '&nbsp;') {
/webtrees/resources/views/modules/ckeditor/
H A Dckeditor-js.phtml26 CKEDITOR.config.language = <?= json_encode(strtolower($language), JSON_THROW_ON_ERROR) ?>;
/webtrees/app/Census/
H A DCensusColumnMonthIfBornWithinYear.php43 return ucfirst(strtolower($individual->getBirthDate()->minimumDate()->format('%O')));
H A DCensusColumnMonthIfMarriedWithinYear.php45 return ucfirst(strtolower($fact->date()->minimumDate()->format('%O')));
/webtrees/resources/views/
H A Dindividual-page-images.phtml34 …<i class="wt-individual-silhouette wt-individual-silhouette-<?= strtolower($record->sex()) ?> wt-i…
H A Dchart-box.phtml100 <div class="wt-chart-box wt-chart-box-<?= strtolower($individual->sex()) ?> <?= $individual->isPend…
/webtrees/app/Factories/
H A DIdFactory.php45 return strtolower(strtr(Uuid::uuid4()->toString(), ['-' => '']));