/webtrees/resources/views/admin/ |
H A D | merge-records-step-2.phtml | 63 <?php if ($fact->target() instanceof GedcomRecord) : ?> 64 <a href="<?= e($fact->target()->url()) ?>"> 65 <?= $fact->target()->fullName() ?> 110 <?php if ($fact->target() instanceof GedcomRecord) : ?> 111 <a href="<?= e($fact->target()->url()) ?>"> 112 <?= $fact->target()->fullName() ?> 156 <?php if ($fact->target() instanceof GedcomRecord) : ?> 157 <a href="<?= e($fact->target()->url()) ?>"> 158 <?= $fact->target()->fullName() ?>
|
/webtrees/app/ |
H A D | Fact.php | 218 public function target() function in Fisharebest\\Webtrees\\Fact 335 $target = $this->target(); 337 if ($target instanceof GedcomRecord && $target->tag() === $this->tag) { 338 return $target->canShow($access_level); 533 $target = $this->target(); 534 if ($target instanceof GedcomRecord) { 535 $attributes[] = $target->fullName(); 579 $target = $this->target(); 581 if ($target instanceof GedcomRecord) { 582 $items[] = '<bdi>' . $target->fullName() . '</bdi>';
|
H A D | Individual.php | 141 * @param Individual $target 146 private static function isRelated(Individual $target, int $distance): bool argument 150 …y::individualFactory()->make($target->tree->getUserPreference(Auth::user(), UserInterface::PREF_TR… 158 $family = $fact->target(); 176 if ($n % 2 === 0 && in_array($target, $cache[$n], true)) { 186 $individual = $fact->target(); 193 if (in_array($target, $cache[$n], true)) { 200 $family = $fact->target(); 319 $media = $fact->target(); 324 if ($fact instanceof Fact && $fact->target() instanceof Media) { [all …]
|
H A D | Media.php | 95 $note = $fact->target();
|
H A D | Family.php | 202 $child = $fact->target();
|
/webtrees/resources/views/edit/ |
H A D | reorder-families.phtml | 48 …<div class="card mb-2 wt-sortable-item" data-wt-sort-by-date="<?= $fact->target()->getMarriageDate… 51 … <?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName()]) ?> 55 <?= $fact->target()->formatFirstMajorFact(Gedcom::MARRIAGE_EVENTS, 2) ?> 56 <?= $fact->target()->formatFirstMajorFact(Gedcom::DIVORCE_EVENTS, 2) ?> 82 …<div class="card my-2 wt-sortable-item" data-sortbydate="<?= $fact->target()->getMarriageDate()->j… 85 …<?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName() . ($fact->attribute('… 88 <?= $fact->target()->formatFirstMajorFact(Gedcom::MARRIAGE_EVENTS, 2) ?> 89 <?= $fact->target()->formatFirstMajorFact(Gedcom::DIVORCE_EVENTS, 2) ?>
|
H A D | reorder-children.phtml | 26 …($family->facts(['CHIL'])->filter(static fn (Fact $fact): bool => $fact->target() instanceof Indiv… 27 …<div class="card my-2 wt-sortable-item" data-wt-sort-by-date="<?= $fact->target()->getBirthDate()-… 30 … <?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName()]) ?> 34 <?= $fact->target()->formatFirstMajorFact(Gedcom::BIRTH_EVENTS, 2) ?> 35 <?= $fact->target()->formatFirstMajorFact(Gedcom::DEATH_EVENTS, 2) ?>
|
H A D | reorder-media.phtml | 25 … <?= view('edit/reorder-card-header', ['title' => $fact->target()->fullName()]) ?> 29 <?= $fact->target()->displayImage(100, 100, 'contain', []) ?>
|
H A D | icon-fact-delete.phtml | 15 <?php if ($fact->target() === null) : ?> 21 …e('Are you sure you want to delete the link to “%s”?', strip_tags($fact->target()->fullName())) ?>…
|
/webtrees/resources/views/ |
H A D | fact.phtml | 88 <?php if ($fact->target() instanceof Media) : ?> 90 <?php foreach ($fact->target()->mediaFiles() as $media_file) : ?> 97 <a href="<?= e($fact->target()->url()) ?>"><?= $fact->target()->fullName() ?></a> 99 <?php foreach ($fact->target()->facts(['NOTE']) as $note) : ?> 100 …w('fact-gedcom-fields', ['gedcom' => $note->gedcom(), 'parent' => $fact->target()->tag(), 'tree' =… 119 … <?php if ($element instanceof XrefAssociate && $fact->target() instanceof Individual) : ?> 126 …— <a href="<?= $module->chartUrl($fact->target(), ['xref2' => $record->xref()]) ?>" rel="nofollow"> 127 …container()->get(RelationshipService::class)->getCloseRelationshipName($record, $fact->target()) ?>
|
/webtrees/resources/js/ |
H A D | webtrees.js | 858 const form = event.target; 888 event.target.querySelectorAll('textarea[data-wt-pattern]').forEach(function (element) { 1015 if (event.target.method === 'POST') { 1016 if (event.target.classList.contains('form-is-submitting')) { 1019 event.target.classList.add('form-is-submitting'); 1026 const target = event.target.closest('a,button'); constant 1028 if (target === null) { 1032 if ('wtConfirm' in target.dataset && !confirm(target.dataset.wtConfirm)) { 1037 if ('wtPostUrl' in target.dataset) { 1038 webtrees.httpPost(target.dataset.wtPostUrl).then(() => { [all …]
|
H A D | treeview.js | 292 var t = $(event.target);
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/link/dialogs/ |
H A D | link.js | 6 …efault:a.setValue(r),a.getElement().hide()}},d=function(a){a.target&&this.setValue(a.target[this.i… 7 this.setValue(a.advanced[this.id]||"")},e=function(a){a.target||(a.target={});a.target[this.id]=thi… 18 …ement("info","linkType")||this.getElement().hide()}}]},{id:"target",requiredContent:"a[target]",la… 30 this.hidePage("advanced");c.config.linkShowTargetTab||this.hidePage("target")},onFocus:function(){v…
|
/webtrees/app/Http/RequestHandlers/ |
H A D | ChangeFamilyMembersAction.php | 71 if ($fact->target() === $family) { 77 if ($fact->target() === $old_father) { 94 if ($fact->target() === $family) { 100 if ($fact->target() === $old_mother) { 117 if ($fact->target() === $family) { 123 if ($fact->target() === $old_child) {
|
H A D | LinkChildToFamilyAction.php | 57 if ($family === $fact->target()) { 86 if ($individual === $fact->target()) {
|
H A D | FixLevel0MediaAction.php | 74 if ($fact2->target() === $media) {
|
H A D | FixLevel0MediaData.php | 125 if ($fact->target() === $media && !$fact->isPendingDeletion()) {
|
H A D | IndividualPage.php | 103 $media_object = $fact->target();
|
/webtrees/resources/views/modules/relatives/ |
H A D | family.phtml | 37 $person = $fact->target(); 73 $person = $fact->target(); 160 $person = $fact->target();
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/wsc/dialogs/ |
H A D | wsc.js | 7 e=a.fn||null,f=a.id||"",h=a.target||window,k=a.message||{id:f};a.message&&"[object Object]"==b.call… 18 …nyms.getInputElement().getValue())};var C=function(a){var d=document,c=a.target||d.body,e=a.id||"o… 22 …ang:a.selectingLang,interfaceLang:a.interfaceLang,text:a.dataTemp,cmd:c},target:a.targetFromFrame[… property 30 target:a.targetFromFrame[a.iframeNumber+"_"+a.dialog._.currentTabId],id:"options_outer__page"})},ge… property 31 …ids,id:"options_dic_send",udnCmd:"create"},g.postMessage.send({message:c,target:a.targetFromFrame[… property 32 g.postMessage.send({message:b,target:a.targetFromFrame[a.iframeNumber+"_"+a.dialog._.currentTabId]}… property 33 …interfaceLang:a.interfaceLang,reset_suggest:e||!1,sessionid:a.sessionid},target:b,id:"data_outer__… property 45 function(b,c){g.postMessage.send({message:{udn:c,id:"operationWithUDN",udnCmd:b},target:a.targetFro… property 47 …bute("title-cmd");g.postMessage.send({message:{cmd:f,tabId:c,new_word:e},target:a.targetFromFrame[… property 51 …w C({opacity:"1",background:"#fff url("+a.loadIcon+") no-repeat 50% 50%",target:a.OverlayPlace});v… property [all …]
|
/webtrees/public/js/ |
H A D | webtrees.min.js | 1 …target,o=document.getElementById("wt-ajax-modal"),r=o.querySelector(".modal-content"),a=document.g…
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/forms/dialogs/ |
H A D | form.js | 5 CKEDITOR.dialog.add("form",function(a){var d={action:1,id:1,method:1,enctype:1,target:1};return{tit… property 8 type:"select",label:a.lang.common.target,style:"width:100%",accessKey:"M","default":"",items:[[a.la…
|
/webtrees/resources/css/ |
H A D | _maps.css | 33 /* No way to target parents-only... */
|
H A D | fab.css | 403 .news_box:target, 404 #gedcom_stats:target {
|
/webtrees/public/ckeditor-4.15.1-custom/plugins/image/dialogs/ |
H A D | image.js | 37 …target:"Link:txtUrl",url:d.config.filebrowserImageBrowseLinkUrl},style:"float:right",hidden:!0,lab… property
|