Completed
Pull Request — master (#1904)
by Rico
09:54
created
resources/views/modules/relatives/family.php 1 patch
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
 
14 14
 	<tbody>
15 15
 		<?php
16
-		$found = false;
17
-		foreach ($family->getFacts('HUSB', false, $fam_access_level) as $fact) {
18
-			$found |= !$fact->isPendingDeletion();
19
-			$person = $fact->getTarget();
20
-			if ($person instanceof Individual) {
21
-				$row_class = 'wt-gender-' . $person->getSex();
22
-				if ($fact->isPendingAddition()) {
23
-					$row_class .= ' new';
24
-				} elseif ($fact->isPendingDeletion()) {
25
-					$row_class .= ' old';
26
-				}
27
-				?>
16
+        $found = false;
17
+        foreach ($family->getFacts('HUSB', false, $fam_access_level) as $fact) {
18
+            $found |= !$fact->isPendingDeletion();
19
+            $person = $fact->getTarget();
20
+            if ($person instanceof Individual) {
21
+                $row_class = 'wt-gender-' . $person->getSex();
22
+                if ($fact->isPendingAddition()) {
23
+                    $row_class .= ' new';
24
+                } elseif ($fact->isPendingDeletion()) {
25
+                    $row_class .= ' old';
26
+                }
27
+                ?>
28 28
 				<tr class="<?= $row_class ?>">
29 29
 					<th scope="row">
30 30
 						<?= $individual === $person ? '<i class="icon-selected"></i>' : '' ?>
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
 					</td>
36 36
 				</tr>
37 37
 				<?php
38
-			}
39
-		}
40
-		if (!$found && $family->canEdit()) {
41
-			?>
38
+            }
39
+        }
40
+        if (!$found && $family->canEdit()) {
41
+            ?>
42 42
 			<tr>
43 43
 				<th scope="row"></th>
44 44
 				<td>
@@ -48,20 +48,20 @@  discard block
 block discarded – undo
48 48
 				</td>
49 49
 			</tr>
50 50
 			<?php
51
-		}
52
-
53
-		$found = false;
54
-		foreach ($family->getFacts('WIFE', false, $fam_access_level) as $fact) {
55
-			$person = $fact->getTarget();
56
-			if ($person instanceof Individual) {
57
-				$found |= !$fact->isPendingDeletion();
58
-				$row_class = 'wt-gender-' . $person->getSex();
59
-				if ($fact->isPendingAddition()) {
60
-					$row_class .= ' new';
61
-				} elseif ($fact->isPendingDeletion()) {
62
-					$row_class .= ' old';
63
-				}
64
-				?>
51
+        }
52
+
53
+        $found = false;
54
+        foreach ($family->getFacts('WIFE', false, $fam_access_level) as $fact) {
55
+            $person = $fact->getTarget();
56
+            if ($person instanceof Individual) {
57
+                $found |= !$fact->isPendingDeletion();
58
+                $row_class = 'wt-gender-' . $person->getSex();
59
+                if ($fact->isPendingAddition()) {
60
+                    $row_class .= ' new';
61
+                } elseif ($fact->isPendingDeletion()) {
62
+                    $row_class .= ' old';
63
+                }
64
+                ?>
65 65
 
66 66
 				<tr class="<?= $row_class ?>">
67 67
 					<th scope="row">
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
 					</td>
74 74
 				</tr>
75 75
 				<?php
76
-			}
77
-		}
78
-		if (!$found && $family->canEdit()) { ?>
76
+            }
77
+        }
78
+        if (!$found && $family->canEdit()) { ?>
79 79
 			<tr>
80 80
 				<th scope="row"></th>
81 81
 				<td>
@@ -88,19 +88,19 @@  discard block
 block discarded – undo
88 88
 			<?php } ?>
89 89
 
90 90
 		<?php
91
-		///// MARR /////
92
-		$found = false;
93
-		$prev  = new Date('');
94
-		foreach ($family->getFacts(WT_EVENTS_MARR . '|' . WT_EVENTS_DIV, true) as $fact) {
95
-			$found |= !$fact->isPendingDeletion();
96
-			if ($fact->isPendingAddition()) {
97
-				$row_class = 'new';
98
-			} elseif ($fact->isPendingDeletion()) {
99
-				$row_class = 'old';
100
-			} else {
101
-				$row_class = '';
102
-			}
103
-			?>
91
+        ///// MARR /////
92
+        $found = false;
93
+        $prev  = new Date('');
94
+        foreach ($family->getFacts(WT_EVENTS_MARR . '|' . WT_EVENTS_DIV, true) as $fact) {
95
+            $found |= !$fact->isPendingDeletion();
96
+            if ($fact->isPendingAddition()) {
97
+                $row_class = 'new';
98
+            } elseif ($fact->isPendingDeletion()) {
99
+                $row_class = 'old';
100
+            } else {
101
+                $row_class = '';
102
+            }
103
+            ?>
104 104
 
105 105
 			<tr class="<?= $row_class ?>">
106 106
 				<th scope="row">
@@ -111,13 +111,13 @@  discard block
 block discarded – undo
111 111
 			</tr>
112 112
 
113 113
 			<?php
114
-			if (!$prev->isOK() && $fact->getDate()->isOK()) {
115
-				$prev = $fact->getDate();
116
-			}
117
-		}
114
+            if (!$prev->isOK() && $fact->getDate()->isOK()) {
115
+                $prev = $fact->getDate();
116
+            }
117
+        }
118 118
 
119
-		if (!$found && $family->canShow() && $family->canEdit()) {
120
-			?>
119
+        if (!$found && $family->canShow() && $family->canEdit()) {
120
+            ?>
121 121
 			<tr>
122 122
 				<th scope="row">
123 123
 				</th>
@@ -128,30 +128,30 @@  discard block
 block discarded – undo
128 128
 				</td>
129 129
 			</tr>
130 130
 			<?php
131
-		}
132
-
133
-		///// CHIL /////
134
-		$child_number = 0;
135
-		foreach ($family->getFacts('CHIL', false, $fam_access_level) as $fact) {
136
-			$person = $fact->getTarget();
137
-			if ($person instanceof Individual) {
138
-				$row_class = 'wt-gender-' . $person->getSex();
139
-				if ($fact->isPendingAddition()) {
140
-					$child_number++;
141
-					$row_class .= ' new';
142
-				} elseif ($fact->isPendingDeletion()) {
143
-					$row_class .= ' old';
144
-				} else {
145
-					$child_number++;
146
-				}
147
-				$next = new Date('');
148
-				foreach ($person->getFacts(WT_EVENTS_BIRT, true) as $bfact) {
149
-					if ($bfact->getDate()->isOK()) {
150
-						$next = $bfact->getDate();
151
-						break;
152
-					}
153
-				}
154
-				?>
131
+        }
132
+
133
+        ///// CHIL /////
134
+        $child_number = 0;
135
+        foreach ($family->getFacts('CHIL', false, $fam_access_level) as $fact) {
136
+            $person = $fact->getTarget();
137
+            if ($person instanceof Individual) {
138
+                $row_class = 'wt-gender-' . $person->getSex();
139
+                if ($fact->isPendingAddition()) {
140
+                    $child_number++;
141
+                    $row_class .= ' new';
142
+                } elseif ($fact->isPendingDeletion()) {
143
+                    $row_class .= ' old';
144
+                } else {
145
+                    $child_number++;
146
+                }
147
+                $next = new Date('');
148
+                foreach ($person->getFacts(WT_EVENTS_BIRT, true) as $bfact) {
149
+                    if ($bfact->getDate()->isOK()) {
150
+                        $next = $bfact->getDate();
151
+                        break;
152
+                    }
153
+                }
154
+                ?>
155 155
 
156 156
 				<tr class="<?= $row_class ?>">
157 157
 					<th scope="row">
@@ -182,9 +182,9 @@  discard block
 block discarded – undo
182 182
 					</td>
183 183
 				</tr>
184 184
 				<?php
185
-				$prev = $next;
186
-			}
187
-		} ?>
185
+                $prev = $next;
186
+            }
187
+        } ?>
188 188
 
189 189
 		<?php if ($family->canEdit()): ?>
190 190
 			<tr>
Please login to merge, or discard this patch.
resources/views/modules/relatives/tab.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -39,45 +39,45 @@
 block discarded – undo
39 39
 <!-- Parents -->
40 40
 <?php foreach ($parent_families as $family): ?>
41 41
 	<?= view('modules/relatives/family', [
42
-		'individual'       => $individual,
43
-		'family'           => $family,
44
-		'type'             => 'FAMC',
45
-		'label'            => $individual->getChildFamilyLabel($family),
46
-		'fam_access_level' => $fam_access_level,
47
-	]) ?>
42
+        'individual'       => $individual,
43
+        'family'           => $family,
44
+        'type'             => 'FAMC',
45
+        'label'            => $individual->getChildFamilyLabel($family),
46
+        'fam_access_level' => $fam_access_level,
47
+    ]) ?>
48 48
 <?php endforeach ?>
49 49
 
50 50
 <!-- step-parents -->
51 51
 <?php foreach ($step_parent_families as $family): ?>
52 52
 	<?= view('modules/relatives/family', [
53
-		'individual'       => $individual,
54
-		'family'           => $family,
55
-		'type'             => 'FAMC',
56
-		'label'            => $individual->getStepFamilyLabel($family),
57
-		'fam_access_level' => $fam_access_level,
58
-	]) ?>
53
+        'individual'       => $individual,
54
+        'family'           => $family,
55
+        'type'             => 'FAMC',
56
+        'label'            => $individual->getStepFamilyLabel($family),
57
+        'fam_access_level' => $fam_access_level,
58
+    ]) ?>
59 59
 <?php endforeach ?>
60 60
 
61 61
 <!-- spouses -->
62 62
 <?php foreach ($spouse_families as $family): ?>
63 63
 	<?= view('modules/relatives/family', [
64
-		'individual'       => $individual,
65
-		'family'           => $family,
66
-		'type'             => 'FAMS',
67
-		'label'            => $individual->getSpouseFamilyLabel($family),
68
-		'fam_access_level' => $fam_access_level,
69
-	]) ?>
64
+        'individual'       => $individual,
65
+        'family'           => $family,
66
+        'type'             => 'FAMS',
67
+        'label'            => $individual->getSpouseFamilyLabel($family),
68
+        'fam_access_level' => $fam_access_level,
69
+    ]) ?>
70 70
 <?php endforeach ?>
71 71
 
72 72
 <!-- step-children -->
73 73
 <?php foreach ($step_child_familiess as $family): ?>
74 74
 	<?= view('modules/relatives/family', [
75
-		'individual'       => $individual,
76
-		'family'           => $family,
77
-		'type'             => 'FAMS',
78
-		'label'            => $family->getFullName(),
79
-		'fam_access_level' => $fam_access_level,
80
-	]) ?>
75
+        'individual'       => $individual,
76
+        'family'           => $family,
77
+        'type'             => 'FAMS',
78
+        'label'            => $family->getFullName(),
79
+        'fam_access_level' => $fam_access_level,
80
+    ]) ?>
81 81
 <?php endforeach ?>
82 82
 
83 83
 <?php if ($can_edit): ?>
Please login to merge, or discard this patch.
resources/views/modules/gedcom_stats/config.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 		</legend>
9 9
 		<div class="col-sm-9">
10 10
 			<?= Bootstrap4::checkbox(/* I18N: label for yes/no option */
11
-				I18N::translate('Show date of last update'), false, ['name' => 'show_last_update', 'checked' => (bool) $show_last_update]) ?>
11
+                I18N::translate('Show date of last update'), false, ['name' => 'show_last_update', 'checked' => (bool) $show_last_update]) ?>
12 12
 		</div>
13 13
 	</div>
14 14
 </fieldset>
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 			<?= Bootstrap4::checkbox(I18N::translate('Most common surnames'), false, ['name' => 'show_common_surnames', 'checked' => (bool) $show_common_surnames]) ?>
51 51
 			<label for="number_of_surnames">
52 52
 				<?= /* I18N: ... to show in a list */
53
-				I18N::translate('Number of surnames') ?>
53
+                I18N::translate('Number of surnames') ?>
54 54
 				<input
55 55
 					class="form-control"
56 56
 					id="number_of_surnames"
Please login to merge, or discard this patch.
resources/views/modules/faq/edit.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	<div class="row form-group">
35 35
 		<label for="xref" class="col-sm-3 col-form-label">
36 36
 			<?= /* I18N: Label for a configuration option */
37
-			I18N::translate('Show this block for which languages') ?>
37
+            I18N::translate('Show this block for which languages') ?>
38 38
 		</label>
39 39
 
40 40
 		<div class="col-sm-9">
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 			<?= Bootstrap4::select(['' => I18N::translate('All')] + $tree_names, $tree->getName(), ['id' => 'gedcom_id', 'name' => 'gedcom_id']) ?>
62 62
 			<p class="small text-muted">
63 63
 				<?= /* I18N: FAQ = “Frequently Asked Question” */
64
-				I18N::translate('An FAQ can be displayed on just one of the family trees, or on all the family trees.') ?>
64
+                I18N::translate('An FAQ can be displayed on just one of the family trees, or on all the family trees.') ?>
65 65
 			</p>
66 66
 		</div>
67 67
 	</div>
Please login to merge, or discard this patch.
resources/views/modules/relationships_chart/config.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 		<div class="row form-group">
16 16
 			<label class="col-sm-3 col-form-label" for="relationship-ancestors-<?= $tree->getTreeId() ?>">
17 17
 				<?= /* I18N: Configuration option */
18
-				I18N::translate('Relationships') ?>
18
+                I18N::translate('Relationships') ?>
19 19
 			</label>
20 20
 			<div class="col-sm-9">
21 21
 				<?= Bootstrap4::select($ancestors_options, $tree->getPreference('RELATIONSHIP_ANCESTORS', $default_ancestors), ['id' => 'relationship-ancestors-' . $tree->getTreeId(), 'name' => 'relationship-ancestors-' . $tree->getTreeId()]) ?>
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 			<div class="row">
27 27
 				<legend class="col-form-label col-sm-3">
28 28
 					<?= /* I18N: Configuration option */
29
-					I18N::translate('How much recursion to use when searching for relationships') ?>
29
+                    I18N::translate('How much recursion to use when searching for relationships') ?>
30 30
 				</legend>
31 31
 				<div class="col-sm-9">
32 32
 					<?= Bootstrap4::radioButtons('relationship-recursion-' . $tree->getTreeId(), $recursion_options, $tree->getPreference('RELATIONSHIP_RECURSION', $default_recursion), true) ?>
Please login to merge, or discard this patch.
resources/views/place-events.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
 			<p><?= I18N::translate('No results found.') ?></p>
22 22
 		<?php else: ?>
23 23
 			<?= view('lists/individuals-table', [
24
-			'individuals' => $indilist,
25
-			'sosa'        => false,
26
-			'tree'        => $tree,
27
-			]) ?>
24
+            'individuals' => $indilist,
25
+            'sosa'        => false,
26
+            'tree'        => $tree,
27
+            ]) ?>
28 28
 		<?php endif ?>
29 29
 	</div>
30 30
 
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 			<p><?= I18N::translate('No results found.') ?></p>
34 34
 		<?php else: ?>
35 35
 			<?= view('lists/families-table', [
36
-				'families' => $famlist,
37
-			]) ?>
36
+                'families' => $famlist,
37
+            ]) ?>
38 38
 		<?php endif ?>
39 39
 	</div>
40 40
 </div>
Please login to merge, or discard this patch.
resources/views/interactive-tree-page.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 		<div class="col-sm-3 wt-page-options-label"></div>
26 26
 		<div class="col-sm-9 wt-page-options-value">
27 27
 			<input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
28
-			I18N::translate('view') ?>">
28
+            I18N::translate('view') ?>">
29 29
 		</div>
30 30
 	</div>
31 31
 </form>
Please login to merge, or discard this patch.
resources/views/edit/link-spouse-to-individual.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@
 block discarded – undo
25 25
 			<button class="btn btn-primary" type="submit">
26 26
 				<?= FontAwesome::decorativeIcon('save') ?>
27 27
 				<?= /* I18N: A button label. */
28
-				I18N::translate('save') ?>
28
+                I18N::translate('save') ?>
29 29
 			</button>
30 30
 			<a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
31 31
 				<?= FontAwesome::decorativeIcon('cancel') ?>
32 32
 				<?= /* I18N: A button label. */
33
-				I18N::translate('cancel') ?>
33
+                I18N::translate('cancel') ?>
34 34
 			</a>
35 35
 		</div>
36 36
 	</div>
Please login to merge, or discard this patch.
resources/views/edit/change-family-members.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,12 +73,12 @@
 block discarded – undo
73 73
 			<button class="btn btn-primary" type="submit">
74 74
 				<?= FontAwesome::decorativeIcon('save') ?>
75 75
 				<?= /* I18N: A button label. */
76
-				I18N::translate('save') ?>
76
+                I18N::translate('save') ?>
77 77
 			</button>
78 78
 			<a class="btn btn-secondary" href="<?= e($family->url()) ?>">
79 79
 				<?= FontAwesome::decorativeIcon('cancel') ?>
80 80
 				<?= /* I18N: A button label. */
81
-				I18N::translate('cancel') ?>
81
+                I18N::translate('cancel') ?>
82 82
 			</a>
83 83
 		</div>
84 84
 	</div>
Please login to merge, or discard this patch.