Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 93) sorted by relevance

1234

/webtrees/app/
H A DMenu.php31 private string $class; variable in Fisharebest\\Webtrees\\Menu
44 * @param string $class A CSS class
51 string $class = '', argument
58 ->setClass($class)
100 * @param string $class
104 public function setClass(string $class): self argument
106 $this->class = $class;
H A DContainer.php42 * @param class-string<T> $id
52 * @param class-string<T> $id
62 * @param class-string<T> $id
75 * @param class-string<T> $id
H A DFact.php557 $class = 'fact_' . $this->tag;
559 $class .= ' wt-new';
561 $class .= ' wt-old';
568 … return '<div class="' . $class . '">' . I18N::translate('%1$s: %2$s', $label, $value) . '</div>';
/webtrees/app/Services/
H A DHomePageService.php198 … foreach (ModuleBlockInterface::DEFAULT_TREE_PAGE_BLOCKS[$location] as $block_order => $class) {
199 $module = $this->module_service->findByInterface($class)->first();
248 … foreach (ModuleBlockInterface::DEFAULT_USER_PAGE_BLOCKS[$location] as $block_order => $class) {
249 $module = $this->module_service->findByInterface($class)->first();
H A DMigrationService.php58 $class = $namespace . '\\Migration' . $current_version;
60 $migration = new $class();
H A DModuleService.php551 * @param class-string<T> $interface
568 * @param class-string<T> $interface
668 ->map(static function (string $class, string $name): ModuleInterface {
669 $module = Registry::container()->get($class);
749 * @param class-string<T> $interface
/webtrees/app/Http/RequestHandlers/
H A DAbstractModuleComponentAction.php58 * @param class-string<T> $interface
91 * @param class-string<T> $interface
124 * @param class-string<T> $interface
/webtrees/app/Module/
H A DModuleThemeTrait.php245 …$class = 'menu-language-' . $language_tag . (I18N::languageTag() === $language_tag ? ' acti… variable
246 $menu->addSubmenu(new Menu($active_locale->endonym(), '#', $class, [
445 $class = 'menu-theme-' . $theme->name() . ($active ? ' active' : ''); variable
447 return new Menu($theme->title(), '#', $class, [
H A DPedigreeMapModule.php247 $class = 'wt-pedigree-map-gen-' . $generation % self::COUNT_CSS_COLORS;
275 'class' => $class,
H A DFanChartModule.php450 $class = $menu->getClass();
451 … $html .= '<a href="' . e($link) . '" class="dropdown-item p-1 ' . e($class) . '">';
/webtrees/app/Report/
H A DHtmlRenderer.php146 foreach ($this->styles as $class => $style) {
147 echo '.', $class, ' { ';
/webtrees/resources/views/components/
H A Dselect-number.phtml18 class="form-select <?= $class ?? '' ?>"
H A Dselect.phtml17 class="form-select <?= $class ?? '' ?>"
H A Dselect-place.phtml22 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-shared-note.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-submitter.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-source.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-repository.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-location.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-individual.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-submission.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-family.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-media.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
H A Dselect-note.phtml25 class="form-select tom-select <?= $class ?? '' ?>"
/webtrees/resources/views/modules/pedigree-map/
H A Devents.phtml19 <span class="<?= $class ?>"><?= view('icons/location') ?></span>

1234