Home
last modified time | relevance | path

Searched refs:attribute (Results 1 – 21 of 21) sorted by relevance

/webtrees/app/
H A DFact.php268 public function attribute(string $tag): string function in Fisharebest\\Webtrees\\Fact
320 $restriction = $element->canonical($this->attribute('RESN'));
372 …return Auth::isEditor($this->record->tree()) && !str_ends_with($this->attribute('RESN'), Restricti…
382 $this->place ??= new Place($this->attribute('PLAC'), $this->record->tree());
396 $this->date ??= new Date($this->attribute('DATE'));
455 $type = $this->attribute('TYPE');
464 $type = $this->attribute('TYPE');
670 …if ($a->attribute('DATE') !== '' && $factsort[$atag] > $factsort['BURI'] && $factsort[$atag] < $fa…
674 …if ($b->attribute('DATE') !== '' && $factsort[$btag] > $factsort['BURI'] && $factsort[$btag] < $fa…
680 if ($a->attribute('DATE') !== '' && $b->attribute('DATE') === '') {
[all …]
H A DRelationship.php130 …ct): bool => $fact->value() === '@' . $nodes[1]->xref() . '@' && $fact->attribute('PEDI') === Pedi…
142 …ct): bool => $fact->value() === '@' . $nodes[1]->xref() . '@' && $fact->attribute('PEDI') === Pedi…
348 …ct): bool => $fact->value() === '@' . $nodes[1]->xref() . '@' && $fact->attribute('PEDI') === Pedi…
360 …ct): bool => $fact->value() === '@' . $nodes[1]->xref() . '@' && $fact->attribute('PEDI') === Pedi…
H A DIndividual.php811 $pedigree = $fact->attribute('PEDI');
H A DGedcomRecord.php744 $chan_user = $chan->attribute('_WT_USER');
/webtrees/tests/app/
H A DFactTest.php35 self::assertSame('address', $fact->attribute('ADDR'));
38 self::assertSame("line 1\nline 2", $fact->attribute('ADDR'));
50 self::assertSame('', $fact->attribute('PLAC'));
53 self::assertSame('', $fact->attribute('PLAC'));
/webtrees/resources/views/
H A Dcalendar-list.phtml41 <?php if ($fact->attribute('PLAC') !== '') : ?>
42 — <?= $fact->attribute('PLAC') ?>
59 <?php if ($fact->attribute('PLAC') !== '') : ?>
60 — <?= $fact->attribute('PLAC') ?>
H A Dindividual-page-name.phtml45 <?php if ($fact->attribute('TYPE') !== '') : ?>
47 … Registry::elementFactory()->make($fact->tag() . ':TYPE')->value($fact->attribute('TYPE'), $tree) …
H A Dfact.phtml32 $type = $fact->attribute('TYPE');
/webtrees/app/Http/Middleware/
H A DClientIp.php52 * @param string $attribute
56 …private function getCommaSeparatedAttribute(ServerRequestInterface $request, string $attribute): a… argument
58 $value = $request->getAttribute($attribute);
/webtrees/app/Census/
H A DCensusColumnReligion.php46 if ($fact->attribute('RELI') !== '') {
47 return $fact->attribute('RELI');
/webtrees/resources/views/edit/
H A Dreorder-families.phtml85 …llName() . ($fact->attribute('PEDI') === '' ? '' : ' — ' . Registry::elementFactory()->make('INDI:…
H A Dreorder-names.phtml32 … <?= Registry::elementFactory()->make('INDI:NAME:TYPE')->value($fact->attribute('TYPE'), $tree) ?>
/webtrees/app/Statistics/Repository/
H A DGedcomRepository.php69 $title = $sour->attribute('NAME');
70 $version = $sour->attribute('VERS');
/webtrees/resources/views/modules/todo/
H A Dresearch-tasks.phtml56 <?= e($task->attribute('_WT_USER')) ?>
/webtrees/app/SurnameTradition/
H A DDefaultSurnameTradition.php163 …->first(fn (Fact $fact): bool => in_array($fact->attribute('TYPE'), ['', NameType::VALUE_BIRTH, Na…
/webtrees/app/Module/
H A DResearchTaskModule.php112 $user_name = $task->attribute('_WT_USER');
H A DBranchesListModule.php393 $pedi = $fact->attribute('PEDI');
/webtrees/public/ckeditor-4.15.1-custom/
H A DCHANGES.md100 … [dialog](https://ckeditor.com/cke4/addon/dialog) tab now has the `aria-selected="true"` attribute.
227 …eloper.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Properties) object property attribute.
246 …lugin can now be disabled for the given table with the `data-cke-tableselection-ignored` attribute.
358 * [#586](https://github.com/ckeditor/ckeditor4/issues/586) Fixed: The `required` attribute is not c…
404 …itor4/issues/1046): Fixed: Subsequent new links do not include the `id` attribute. Thanks to [Nath…
471 * Fixed: Accessibility issue: No `alt` attribute for the logo image in the About tab of SCAYT.
501 …on/magicline) plugin line element can now be identified by the `data-cke-magic-line="1"` attribute.
610 …with zero width (`border: 0px solid #000;`) causes the table to have the border attribute set to 1.
791 * [#12077](https://dev.ckeditor.com/ticket/12077): Added support for the HTML5 `download` attribute
854 …ed Image](https://ckeditor.com/cke4/addon/image2) caption now supports the link `target` attribute.
[all …]
H A Dckeditor.js357 …,g[l]]);a.sortAttributes&&k.sort(d);l=0;for(v=k.length;l<v;l++)g=k[l],a.attribute(g[0],g[1]);a.ope…
946 …ars));c&&c.breakAfterOpen&&this.lineBreak();"pre"==b&&(this._.inPre=1)},attribute:function(b,a){"s…
/webtrees/app/Services/
H A DSearchService.php913 if (preg_match($regex, $fact->attribute($parts[2])) === 1) {
/webtrees/
H A Dcomposer.lock2229 "description": "Middleware to detect the client ip and save it as a request attribute",