Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 25 of 425) sorted by relevance

12345678910>>...17

/webtrees/app/Module/
H A DLanguageFrench.php157 Relationship::fixed('parent adoptif', '%s du parent adoptif')->adoptive()->parent(),
170 … Relationship::fixed('parent d’accueil', '%s du parent d’acceuil')->fostering()->parent(),
183 Relationship::fixed('parent', '%s du parent')->parent(),
202 Relationship::fixed('demi-sœur', '%s de la demi-sœur')->parent()->daughter(),
203 Relationship::fixed('demi-frère', '%s du demi-frère')->parent()->son(),
204 Relationship::fixed('demi-frère/sœur', '%s du demi-frère/sœur')->parent()->child(),
206 Relationship::fixed('belle-mère', '%s de la belle-mère')->parent()->wife(),
207 Relationship::fixed('beau-père', '%s du beau-père')->parent()->husband(),
208 Relationship::fixed('beau-parent', '%s du beau-parent')->parent()->married()->spouse(),
212 … Relationship::fixed('quasi-sœur', '%s de la quasi-sœur')->parent()->spouse()->daughter(),
[all …]
H A DLanguageSlovakian.php133 Relationship::fixed('rodič', '%s rodiča')->parent(),
168 Relationship::fixed('nevlastný brat', '%s nevlastného brata')->parent()->son(),
169 Relationship::fixed('nevlastná sestra', '%s nevlastnej sestry')->parent()->daughter(),
170 … Relationship::fixed('nevlastný súrodenec', '%s nevlastného súrodenca')->parent()->child(),
172 Relationship::fixed('starý otec', '%s starého otca')->parent()->father(),
173 Relationship::fixed('stará matka', '%s starej matky')->parent()->mother(),
174 Relationship::fixed('starý rodič', '%s starého rodiča')->parent()->parent(),
176 … Relationship::fixed('prastarý otec', '%s prastarého otca')->parent()->parent()->father(),
177 … Relationship::fixed('prastarý otec', '%s prastarého otca')->parent()->parent()->mother(),
178 … Relationship::fixed('prastarý otec', '%s prastarého otca')->parent()->parent()->parent(),
[all …]
H A DLanguageEnglishUnitedStates.php150 Relationship::fixed('adoptive-parent', 'adoptive-parent’s %s')->adoptive()->parent(),
157 Relationship::fixed('foster-parent', 'foster-parent’s %s')->fostering()->parent(),
164 Relationship::fixed('parent', 'parent’s %s')->parent(),
183 Relationship::fixed('half-sister', 'half-sister’s %s')->parent()->daughter(),
184 Relationship::fixed('half-brother', 'half-brother’s %s')->parent()->son(),
185 Relationship::fixed('half-sibling', 'half-sibling’s %s')->parent()->child(),
187 Relationship::fixed('stepmother', 'stepmother’s %s')->parent()->wife(),
188 Relationship::fixed('stepfather', 'stepfather’s %s')->parent()->husband(),
189 Relationship::fixed('stepparent', 'stepparent’s %s')->parent()->married()->spouse(),
193 Relationship::fixed('stepsister', 'stepsister’s %s')->parent()->spouse()->daughter(),
[all …]
/webtrees/resources/views/
H A Dfact-parents-age.phtml21 <?php foreach ($family->spouses() as $parent) : ?>
22 <?php if ($parent->getBirthDate()->isOK()) : ?>
23 <?php if ($parent->sex() === 'F') : ?>
24parent->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDea…
26parent->getBirthDate(), $birth_date), 'died' => $parent->getDeathDate()->isOK() && $parent->getDea…
H A Dfact.phtml27 $parent = $fact->record(); variable
28 $tree = $parent->tree();
104 <?php if ($parent !== $record) : ?>
106 <?php if ($parent instanceof Family) : ?>
107 …<?php foreach ($parent->spouses()->filter(static fn ($individual): bool => $individual !== $record…
110 … <a href="<?= e($parent->url()) ?>"><?= I18N::translate('View this family') ?></a>
111 <?php elseif ($parent instanceof Individual) : ?>
112 <a href="<?= e($parent->url()) ?>"><?= $parent->fullName() ?></a>
H A Dfact-association-structure.phtml23 $parent = $fact->record(); variable
25 if ($parent instanceof Individual) {
27 $associates = [$parent];
28 } elseif ($parent instanceof Family) {
30 $associates = $parent->spouses();
51 … $label = Registry::elementFactory()->make($rela_tag)->value($rmatch[2], $parent->tree());
60 if ($person !== $parent && $person->getBirthDate()->isOK() && $fact->date()->isOK()) {
92 if ($parent instanceof Family) {
/webtrees/app/Http/RequestHandlers/
H A DMapDataAdd.php69 $parent = new PlaceLocation('');
71 $parent = $this->map_data_service->findById((int) $parent_id);
74 if ($parent->id() === null) {
77 $title = e($parent->locationName());
85 $tmp = $parent;
89 $tmp = $tmp->parent();
95 $map_bounds = $parent->boundingRectangle();
110 'parent' => $parent,
112 'url' => route(MapDataList::class, ['parent_id' => $parent->id()])
H A DMapDataList.php78 $parent = new PlaceLocation('');
81 $parent = $this->map_data_service->findById($parent_id);
85 if ($parent_id !== null && $parent->id() === null) {
94 if ($parent->id() !== null) {
95 $breadcrumbs[] = e($parent->locationName());
98 $tmp = $parent->parent();
103 $tmp = $tmp->parent();
119 'active' => $this->map_data_service->activePlaces($parent),
H A DMapDataExportGeoJson.php65 $parent = new PlaceLocation('');
67 $parent = $this->map_data_service->findById((int) $parent_id);
70 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) {
80 $parent->id(), array_reverse($hierarchy), $parent->latitude(), $parent->longitude()
H A DMapDataExportCSV.php73 $parent = new PlaceLocation('');
75 $parent = $this->map_data_service->findById((int) $parent_id);
78 for ($tmp = $parent, $hierarchy = []; $tmp->id() !== null; $tmp = $tmp->parent()) {
88 $parent->id(), array_reverse($hierarchy), $parent->latitude(), $parent->longitude()
H A DAddParentToIndividualAction.php66 $parent = $tree->createIndividual('0 @@ INDI' . $gedcom);
69 $link = $parent->sex() === 'F' ? 'WIFE' : 'HUSB';
70 …$gedcom = "0 @@ FAM\n1 CHIL @" . $individual->xref() . "@\n1 " . $link . ' @' . $parent->xref() . …
77 $parent->createFact('1 FAMS @' . $family->xref() . '@', false);
79 $url = Validator::parsedBody($request)->isLocalUrl()->string('url', $parent->url());
H A DMapDataEdit.php69 $default_url = route(MapDataList::class, ['parent_id' => $location->parent()->id()]);
85 $tmp = $tmp->parent();
117 'parent' => $location->parent(),
/webtrees/public/ckeditor-4.15.1-custom/plugins/pastefromword/filter/
H A Ddefault.js5 …=function(b,a,c){function e(d){(d.attributes["o:gfxdata"]||"v:group"===d.parent.name)&&l.push(d.at…
7 …turn d;k.createStyleStack(d,c,a)},img:function(d){if(d.parent&&d.parent.attributes){var a=d.parent
11parent.type===CKEDITOR.NODE_ELEMENT&&(new CKEDITOR.htmlParser.text(" ")).insertAfter(d),!1;a&&!0==…
12parent.name&&0===n.indexOf(a.parent.children,a)&&k.setStyle(a.parent,"list-style-type","none"),g.d…
13 …pe":function(a){var b=!1;if(null===a.getFirst("v:imagedata"))e(a);else{a.parent.find(function(c){"…
14 (b=!0)},!0);if(b)return!1;var f="";"v:group"===a.parent.name?e(a):(a.forEach(function(a){a.attribut…
15 …dif]"==a&&(y=0<y?y-1:0);return!1},text:function(a,b){if(y)return"";var c=b.parent&&b.parent.parent;
16 …attributes.style&&a.attributes.style.match(/mso\-list:\s?l\d/)&&"li"!==a.parent.name||a.attributes…
18 …alue&&-1<b.value.indexOf(a)},!0),e;c&&(c.value=c.value.replace(a,""),e=c.parent,e.getHtml().match(…
26 …OR.tools.array.forEach(l,function(b){for(var c=[],d=b.parent;d;)"li"===d.name&&c.push(d),d=d.paren…
[all …]
/webtrees/app/Module/InteractiveTree/
H A DTreeView.php108 $parent = $family->husband() ?? $family->wife();
111 if ($parent instanceof Individual) {
112 $r[] = $this->drawPerson($parent, 0, 1, $family, $order, false);
296 $parent = $primaryChildFamily->husband() ?? $primaryChildFamily->wife();
298 $parent = null;
301 if ($parent instanceof Individual || $fop !== [] || $state < 0) {
306 if ($state >= 0 && ($parent instanceof Individual || $fop !== [])) {
307 $unique = $parent === null || $fop === [];
310 if ($parent instanceof Individual) {
313 $html .= $this->drawPerson($parent, $gen - 1, 1, $primaryChildFamily, $u, false);
/webtrees/app/Date/
H A DJewishDate.php77 parent::__construct($date);
91 return parent::formatDay();
108 return parent::formatLongYear();
122 return parent::formatLongYear();
/webtrees/app/
H A DDB.php162 return parent::connection()->getPdo();
167 return parent::connection()->getTablePrefix() . $identifier;
172 parent::connection()->rollBack();
233 return parent::connection()->query();
H A DIndividual.php249 foreach ($family->spouses(Auth::PRIV_HIDE) as $parent) {
251 preg_match_all('/\n2 DATE (.+)/', $parent->gedcom, $date_matches);
762 foreach ($family->spouses() as $parent) {
763 foreach ($parent->spouseFamilies() as $step_family) {
841 foreach ($family->spouses() as $parent) {
843 if ($parent === $step_parent) {
845 if ($parent->sex() === 'M') {
H A DPlaceLocation.php63 public function parent(): PlaceLocation function in Fisharebest\\Webtrees\\PlaceLocation
82 $parent_id = $this->parent()->id();
230 return $this->parent()->boundingRectangle();
H A DFact.php179 * @param GedcomRecord $parent
184 public function __construct(string $gedcom, GedcomRecord $parent, string $id) argument
188 $this->record = $parent;
192 …ception('Invalid GEDCOM data passed to Fact::_construct(' . $gedcom . ',' . $parent->xref() . ')');
/webtrees/app/Elements/
H A DXrefMedia.php84 return parent::labelValue($value, $tree);
90 return parent::labelValue($value, $tree);
102 return parent::labelValue($value, $tree);
H A DAbstractEventElement.php41 $value = parent::canonical($value);
91 return parent::value($value, $tree);
/webtrees/resources/views/modules/family_nav/
H A Dsidebar-family.phtml50 <?php foreach ($spouse_child_family->spouses() as $parent) : ?>
51 <a class="dropdown-item" href="<?= e($parent->url()) ?>">
52 <?= $parent->fullName() ?>
/webtrees/resources/js/
H A Dtreeview.js30 …this.container = this.treeview.parent(); // Store the container element ("#" + treeview_instance +…
116 …$(box).css('display', 'none').removeClass('boxExpanded').parent().find('.tv_box.collapsedContent')…
147 var container = tv.container.parent();
298 var bc = box.parent(); // bc is Box Container
/webtrees/app/Report/
H A DTcpdfWrapper.php36 return parent::getRemainingWidth();
50 return parent::checkPageBreak($h, $y, $addpage);
/webtrees/app/Exceptions/
H A DFileUploadException.php48 parent::__construct(I18N::translate('No file was received. Please try again.'));
100 parent::__construct($message);

12345678910>>...17