/webtrees/app/Module/ |
H A D | SlideShowModule.php | 37 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 D | BranchesListModule.php | 54 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 D | CompressResponse.php | 35 use function strtolower; alias 105 $accept_encoding = strtolower($request->getHeaderLine('accept-encoding')); 136 $content_type = strtolower($content_type);
|
/webtrees/app/Http/RequestHandlers/ |
H A D | UnconnectedPage.php | 36 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 D | ExportGedcomPage.php | 33 use function strtolower; alias 60 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') {
|
H A D | ModuleAction.php | 33 use function strtolower; alias 73 $verb = strtolower($request->getMethod());
|
H A D | ExportGedcomServer.php | 39 use function strtolower; alias 74 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
|
/webtrees/app/Services/ |
H A D | ServerCheckService.php | 37 use function strtolower; alias 162 $function = strtolower($function); 165 …$disable_functions = array_map(static fn (string $func): string => strtolower(trim($func)), $disab…
|
H A D | GedcomExportService.php | 62 use function strtolower; alias 283 if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
|
/webtrees/resources/views/modules/relatives/ |
H A D | family.phtml | 39 $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 D | NameOfFamilyFile.php | 26 use function strtolower; alias 50 $extension = strtolower(pathinfo($value, PATHINFO_EXTENSION));
|
H A D | AgeAtEvent.php | 27 use function strtolower; alias 73 return strtolower($canonical);
|
/webtrees/app/ |
H A D | I18N.php | 555 …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 D | Individual.php | 351 …return '<i class="icon-silhouette icon-silhouette-' . strtolower($this->sex()) . ' wt-icon-flip-rt…
|
/webtrees/tests/app/ |
H A D | I18NTest.php | 35 self::assertSame(I18N::strtolower(''), ''); 36 self::assertSame(I18N::strtolower('Abc'), 'abc');
|
/webtrees/resources/views/modules/family_nav/ |
H A D | sidebar-family.phtml | 31 … <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 D | RightToLeftSupport.php | 32 use function strtolower; alias 158 $temp = strtolower(substr($element, 0, 3)); 182 if (strtolower($entity) === ' ') {
|
/webtrees/resources/views/modules/ckeditor/ |
H A D | ckeditor-js.phtml | 26 CKEDITOR.config.language = <?= json_encode(strtolower($language), JSON_THROW_ON_ERROR) ?>;
|
/webtrees/app/Census/ |
H A D | CensusColumnMonthIfBornWithinYear.php | 43 return ucfirst(strtolower($individual->getBirthDate()->minimumDate()->format('%O')));
|
H A D | CensusColumnMonthIfMarriedWithinYear.php | 45 return ucfirst(strtolower($fact->date()->minimumDate()->format('%O')));
|
/webtrees/resources/views/ |
H A D | individual-page-images.phtml | 34 …<i class="wt-individual-silhouette wt-individual-silhouette-<?= strtolower($record->sex()) ?> wt-i…
|
H A D | chart-box.phtml | 100 <div class="wt-chart-box wt-chart-box-<?= strtolower($individual->sex()) ?> <?= $individual->isPend…
|
/webtrees/app/Factories/ |
H A D | IdFactory.php | 45 return strtolower(strtr(Uuid::uuid4()->toString(), ['-' => '']));
|