Completed
Push — master ( 544e34...6465ee )
by Jonathan
06:11
created
src/Webtrees/Module/Sosa/Views/SosaListMissingView.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
  */
11 11
 namespace MyArtJaub\Webtrees\Module\Sosa\Views;
12 12
 
13
-use Fisharebest\Webtrees\Date;
14 13
 use Fisharebest\Webtrees\Filter;
15 14
 use Fisharebest\Webtrees\Functions\Functions;
16 15
 use Fisharebest\Webtrees\GedcomTag;
Please login to merge, or discard this patch.
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -30,16 +30,16 @@  discard block
 block discarded – undo
30 30
 	 * {@inhericDoc}
31 31
 	 * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent()
32 32
 	 */
33
-    protected function renderContent() {
34
-        ?>
33
+	protected function renderContent() {
34
+		?>
35 35
             <div id="maj-sosa-missing-page" class="center">
36 36
     			<h2><?= $this->data->get('title') ?></h2>
37 37
     			
38 38
     			<?php  if($this->data->get('is_setup')) { 
39
-    			    $this->renderSosaHeader();
40
-    			    if($this->data->get('has_missing', false)) {
41
-    			        $table_id = $this->data->get('table_id');
42
-    			        ?>
39
+					$this->renderSosaHeader();
40
+					if($this->data->get('has_missing', false)) {
41
+						$table_id = $this->data->get('table_id');
42
+						?>
43 43
     			<div id="sosa-indi-missing" class="smissing-list">
44 44
                 	<table id="<?= $table_id ?>">
45 45
         				<thead>     
@@ -103,48 +103,48 @@  discard block
 block discarded – undo
103 103
         			<tbody>
104 104
         			
105 105
         			<?php foreach($this->data->get('missing_list') as $missing_tab) {
106
-        			    $person = $missing_tab['indi'];
106
+						$person = $missing_tab['indi'];
107 107
         			    
108
-        			    /** @var \Fisharebest\Webtrees\Individual $person */
109
-        			    if ($person->isPendingAddtion()) {
110
-        			        $class = ' class="new"';
111
-        			    } elseif ($person->isPendingDeletion()) {
112
-        			        $class = ' class="old"';
113
-        			    } else {
114
-        			        $class = '';
115
-        			    }
116
-        			    $dperson = new \MyArtJaub\Webtrees\Individual($person);
117
-        			    list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person);
118
-        			    ?>			
108
+						/** @var \Fisharebest\Webtrees\Individual $person */
109
+						if ($person->isPendingAddtion()) {
110
+							$class = ' class="new"';
111
+						} elseif ($person->isPendingDeletion()) {
112
+							$class = ' class="old"';
113
+						} else {
114
+							$class = '';
115
+						}
116
+						$dperson = new \MyArtJaub\Webtrees\Individual($person);
117
+						list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person);
118
+						?>			
119 119
                 		<tr <?= $class ?>>
120 120
                 			<td class="transparent"><?= $missing_tab['sosa'] ?></td>
121 121
                 			<td class="transparent"><?= $person->getXref() ?></td>
122 122
                 			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">
123 123
                 			<?php foreach ($person->getAllNames() as $num=>$name) {
124
-                				if ($name['type']=='NAME') {
125
-                					$title='';
126
-                				} else {
127
-                					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
128
-                				}
129
-                				if ($num==$person->getPrimaryName()) {
130
-                					$class=' class="name2"';
131
-                					$sex_image=$person->getSexImage();
132
-                				} else {
133
-                					$class='';
134
-                					$sex_image='';
135
-                				} ?>
124
+								if ($name['type']=='NAME') {
125
+									$title='';
126
+								} else {
127
+									$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
128
+								}
129
+								if ($num==$person->getPrimaryName()) {
130
+									$class=' class="name2"';
131
+									$sex_image=$person->getSexImage();
132
+								} else {
133
+									$class='';
134
+									$sex_image='';
135
+								} ?>
136 136
                 				<a <?= $title.' '.$class ?> href="<?= $person->getHtmlUrl() ?>">
137 137
                 					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
138 138
                 				</a>
139 139
                 				<?= $sex_image.FunctionsPrint::formatSosaNumbers($dperson->getSosaNumbers(), 1, 'smaller') ?>
140 140
                 				<br/>
141 141
                     		<?php }
142
-                    		echo $person->getPrimaryParentsNames('parents details1', 'none');
143
-                    		?>
142
+							echo $person->getPrimaryParentsNames('parents details1', 'none');
143
+							?>
144 144
                     		</td>
145 145
 							<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>             		
146 146
                 			<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
147
-        				        $isISourced = $dperson->isSourced(); ?>
147
+								$isISourced = $dperson->isSourced(); ?>
148 148
         				   	<td data-sort="<?= $isISourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('R', $isISourced, 'INDI', 1, 'medium') ?></td>
149 149
         					<?php } else { ?>
150 150
         					<td>&nbsp;</td>
@@ -154,23 +154,23 @@  discard block
 block discarded – undo
154 154
                     		<?php $birth_dates = $person->getAllBirthDates(); ?>
155 155
                     		<td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>">
156 156
                     		<?php                     		
157
-                    		foreach ($birth_dates as $n => $birth_date) {
158
-                    		    if ($n > 0) { ?> <br> <?php  } 
159
-                    		    echo $birth_date->display(true);
160
-                    		}
161
-                    		?>
157
+							foreach ($birth_dates as $n => $birth_date) {
158
+								if ($n > 0) { ?> <br> <?php  } 
159
+								echo $birth_date->display(true);
160
+							}
161
+							?>
162 162
                     		</td>
163 163
                 			<td>
164 164
                 			<?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) {
165
-        				        $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree());
166
-                				if ($n > 0) { ?><br><?php } ?>
165
+								$tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree());
166
+								if ($n > 0) { ?><br><?php } ?>
167 167
                 				<a href="'<?= $tmp->getURL(); ?>" title="<?= strip_tags($tmp->getFullName()) ?>">
168 168
                 					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?>
169 169
                 				</a>
170 170
                 			<?php } ?>
171 171
                 			</td>
172 172
         					<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
173
-        				        $isBSourced = $dperson->isBirthSourced(); ?>
173
+								$isBSourced = $dperson->isBirthSourced(); ?>
174 174
         				   	<td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td>
175 175
         					<?php } else { ?>
176 176
         					<td>&nbsp;</td>
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     			 <?php } else if ($this->data->get('generation', 0) > 0) { ?> 
196 196
     			<p><?= I18N::translate('No ancestors are missing for this generation. Generation complete at %s.', I18N::percentage($this->data->get('perc_sosa'), 2)) ?></p>
197 197
     			    <?php }   			    
198
-    			} else { ?>
198
+				} else { ?>
199 199
     			<p class="warning"><?= I18N::translate('The list could not be displayed. Reasons might be:') ?><br/>
200 200
     				<ul>
201 201
     					<li><?= I18N::translate('No Sosa root individual has been defined.') ?></li>
@@ -206,6 +206,6 @@  discard block
 block discarded – undo
206 206
     			<?php } ?>
207 207
     		</div> 
208 208
     		<?php 
209
-        }
209
+		}
210 210
 }
211 211
  
212 212
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
             <div id="maj-sosa-missing-page" class="center">
36 36
     			<h2><?= $this->data->get('title') ?></h2>
37 37
     			
38
-    			<?php  if($this->data->get('is_setup')) { 
38
+    			<?php  if ($this->data->get('is_setup')) { 
39 39
     			    $this->renderSosaHeader();
40
-    			    if($this->data->get('has_missing', false)) {
40
+    			    if ($this->data->get('has_missing', false)) {
41 41
     			        $table_id = $this->data->get('table_id');
42 42
     			        ?>
43 43
     			<div id="sosa-indi-missing" class="smissing-list">
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         				</thead>
103 103
         			<tbody>
104 104
         			
105
-        			<?php foreach($this->data->get('missing_list') as $missing_tab) {
105
+        			<?php foreach ($this->data->get('missing_list') as $missing_tab) {
106 106
         			    $person = $missing_tab['indi'];
107 107
         			    
108 108
         			    /** @var \Fisharebest\Webtrees\Individual $person */
@@ -121,17 +121,17 @@  discard block
 block discarded – undo
121 121
                 			<td class="transparent"><?= $person->getXref() ?></td>
122 122
                 			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">
123 123
                 			<?php foreach ($person->getAllNames() as $num=>$name) {
124
-                				if ($name['type']=='NAME') {
125
-                					$title='';
124
+                				if ($name['type'] == 'NAME') {
125
+                					$title = '';
126 126
                 				} else {
127
-                					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
127
+                					$title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
128 128
                 				}
129
-                				if ($num==$person->getPrimaryName()) {
130
-                					$class=' class="name2"';
131
-                					$sex_image=$person->getSexImage();
129
+                				if ($num == $person->getPrimaryName()) {
130
+                					$class = ' class="name2"';
131
+                					$sex_image = $person->getSexImage();
132 132
                 				} else {
133
-                					$class='';
134
-                					$sex_image='';
133
+                					$class = '';
134
+                					$sex_image = '';
135 135
                 				} ?>
136 136
                 				<a <?= $title.' '.$class ?> href="<?= $person->getHtmlUrl() ?>">
137 137
                 					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
@@ -184,9 +184,9 @@  discard block
 block discarded – undo
184 184
 							<td class="ui-state-default" colspan="11">
185 185
 								<div class="center">
186 186
 									<?= I18N::translate('Number of different missing ancestors: %s', I18N::number($this->data->get('missing_diff_count'))) ?>
187
-									<?php if($this->data->get('missing_hidden') > 0) echo ' ['. I18N::translate('%s hidden', I18N::number($this->data->get('missing_hidden'))).']'; ?>
188
-									<?= ' - ' . I18N::translate('Generation complete at %s', I18N::percentage($this->data->get('perc_sosa'), 2)) ?>
189
-									<?= ' [' . I18N::translate('Potential %s', I18N::percentage($this->data->get('perc_sosa_potential'),2)).']' ?>
187
+									<?php if ($this->data->get('missing_hidden') > 0) echo ' ['.I18N::translate('%s hidden', I18N::number($this->data->get('missing_hidden'))).']'; ?>
188
+									<?= ' - '.I18N::translate('Generation complete at %s', I18N::percentage($this->data->get('perc_sosa'), 2)) ?>
189
+									<?= ' ['.I18N::translate('Potential %s', I18N::percentage($this->data->get('perc_sosa_potential'), 2)).']' ?>
190 190
 								</div>
191 191
 							</td>
192 192
 						</tr>
Please login to merge, or discard this patch.
src/Webtrees/Functions/FunctionsPrintLists.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -17,27 +17,27 @@
 block discarded – undo
17 17
  */
18 18
 class FunctionsPrintLists {
19 19
     
20
-    /**
21
-     * Copy of core function, which is not public.
22
-     *
23
-     * @param Individual $individual
24
-     *
25
-     * @return string[]
26
-     * @see \Fisharebest\Webtrees\Functions\FunctionsPrintLists
27
-     */
28
-    public static function sortableNames(Individual $individual) {
29
-        $names   = $individual->getAllNames();
30
-        $primary = $individual->getPrimaryName();
20
+	/**
21
+	 * Copy of core function, which is not public.
22
+	 *
23
+	 * @param Individual $individual
24
+	 *
25
+	 * @return string[]
26
+	 * @see \Fisharebest\Webtrees\Functions\FunctionsPrintLists
27
+	 */
28
+	public static function sortableNames(Individual $individual) {
29
+		$names   = $individual->getAllNames();
30
+		$primary = $individual->getPrimaryName();
31 31
 
32
-        list($surn, $givn) = explode(',', $names[$primary]['sort']);
32
+		list($surn, $givn) = explode(',', $names[$primary]['sort']);
33 33
 
34
-        $givn = str_replace('@P.N.', 'AAAA', $givn);
35
-        $surn = str_replace('@N.N.', 'AAAA', $surn);
34
+		$givn = str_replace('@P.N.', 'AAAA', $givn);
35
+		$surn = str_replace('@N.N.', 'AAAA', $surn);
36 36
 
37
-        return array(
38
-            $surn . 'AAAA' . $givn,
39
-            $givn . 'AAAA' . $surn,
40
-        );
41
-    }
37
+		return array(
38
+			$surn . 'AAAA' . $givn,
39
+			$givn . 'AAAA' . $surn,
40
+		);
41
+	}
42 42
 
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
         $surn = str_replace('@N.N.', 'AAAA', $surn);
36 36
 
37 37
         return array(
38
-            $surn . 'AAAA' . $givn,
39
-            $givn . 'AAAA' . $surn,
38
+            $surn.'AAAA'.$givn,
39
+            $givn.'AAAA'.$surn,
40 40
         );
41 41
     }
42 42
 
Please login to merge, or discard this patch.
src/Webtrees/Module/Certificates/Views/CertificatesListView.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,13 +39,13 @@  discard block
 block discarded – undo
39 39
     			<input type="hidden" name="ged" value="<?= $this->data->get('url_ged') ?>">
40 40
     			<select name="city">
41 41
     			<?php foreach ($cities as $city) { ?>
42
-    				<option value="<?= Functions::encryptToSafeBase64($city) ?>" <?php if(trim($city) == trim($selected_city)) echo 'selected="selected"'?> ><?= $city ?></option>
42
+    				<option value="<?= Functions::encryptToSafeBase64($city) ?>" <?php if (trim($city) == trim($selected_city)) echo 'selected="selected"'?> ><?= $city ?></option>
43 43
     			<?php } ?>
44 44
     			</select>
45 45
     			<input type="submit" value="<?= I18N::translate('Show') ?>" />
46 46
     		</form>
47 47
     		
48
-    		<?php if($this->data->get('has_list', false)) { ?>
48
+    		<?php if ($this->data->get('has_list', false)) { ?>
49 49
     		<div class="loading-image">&nbsp;</div>
50 50
     		<div class="certificate-list">
51 51
     			<table id="<?= $this->data->get('table_id') ?>">
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     				    ?>
63 63
     					<tr>
64 64
     						<!-- Certificate date -->
65
-    						<?php if($date = $certificate->getCertificateDate()) { ?>
65
+    						<?php if ($date = $certificate->getCertificateDate()) { ?>
66 66
     						<td data-sort="<?= $date->julianDay() ?>"><?= $date->display() ?></td>
67 67
     						<?php } else { ?>
68 68
     						<td data-sort="0">&nbsp;</td>
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
     						<?php 
74 74
     						$name = $certificate->getCertificateDetails() ?: '';
75 75
     						$sortname = "";
76
-    						$ct_names=preg_match("/([A-Z]{2,})/", $name, $match);
77
-    						if($ct_names > 0) $sortname = $match[1].'_';
76
+    						$ct_names = preg_match("/([A-Z]{2,})/", $name, $match);
77
+    						if ($ct_names > 0) $sortname = $match[1].'_';
78 78
     						$sortname .= $name;
79 79
     						?>
80 80
     						<td data-sort="<?= Filter::escapeHtml($sortname) ?>">
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,8 @@  discard block
 block discarded – undo
39 39
     			<input type="hidden" name="ged" value="<?= $this->data->get('url_ged') ?>">
40 40
     			<select name="city">
41 41
     			<?php foreach ($cities as $city) { ?>
42
-    				<option value="<?= Functions::encryptToSafeBase64($city) ?>" <?php if(trim($city) == trim($selected_city)) echo 'selected="selected"'?> ><?= $city ?></option>
42
+    				<option value="<?= Functions::encryptToSafeBase64($city) ?>" <?php if(trim($city) == trim($selected_city)) {
43
+	echo 'selected="selected"'?> ><?= $city ?></option>
43 44
     			<?php } ?>
44 45
     			</select>
45 46
     			<input type="submit" value="<?= I18N::translate('Show') ?>" />
@@ -72,9 +73,12 @@  discard block
 block discarded – undo
72 73
     						<!--  Certificate Name -->
73 74
     						<?php 
74 75
     						$name = $certificate->getCertificateDetails() ?: '';
76
+}
75 77
     						$sortname = "";
76 78
     						$ct_names=preg_match("/([A-Z]{2,})/", $name, $match);
77
-    						if($ct_names > 0) $sortname = $match[1].'_';
79
+    						if($ct_names > 0) {
80
+    							$sortname = $match[1].'_';
81
+    						}
78 82
     						$sortname .= $name;
79 83
     						?>
80 84
     						<td data-sort="<?= Filter::escapeHtml($sortname) ?>">
Please login to merge, or discard this patch.
src/Webtrees/Module/Sosa/Views/SosaListFamView.php 2 patches
Indentation   +85 added lines, -85 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
 	 * {@inhericDoc}
33 33
 	 * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent()
34 34
 	 */
35
-    protected function renderContent() { 
35
+	protected function renderContent() { 
36 36
         
37
-        if($this->data->get('has_sosa', false)) {
38
-            $table_id = $this->data->get('table_id');            
39
-        ?>   
37
+		if($this->data->get('has_sosa', false)) {
38
+			$table_id = $this->data->get('table_id');            
39
+		?>   
40 40
         
41 41
 		<div id="sosa-fam-list" class="sosa-list">
42 42
 			<table id="<?php echo $table_id; ?>">
@@ -176,58 +176,58 @@  discard block
 block discarded – undo
176 176
 				<tbody>
177 177
 			
178 178
 			<?php foreach($this->data->get('sosa_list') as $sosa => $family) {
179
-			    /** @var \Fisharebest\Webtrees\Family $person */
179
+				/** @var \Fisharebest\Webtrees\Family $person */
180 180
 
181
-			    //PERSO Create decorator for Family
182
-			    $dfamily = new Family($family);
181
+				//PERSO Create decorator for Family
182
+				$dfamily = new Family($family);
183 183
 			    
184
-			    $husb = $family->getHusband();
185
-			    if (is_null($husb)) {
186
-			        $husb = new Individual('H', '0 @H@ INDI', null, $family->getTree());
187
-			    }
188
-			    $dhusb = new \MyArtJaub\Webtrees\Individual($husb);
189
-			    $wife = $family->getWife();
190
-			    if (is_null($wife)) {
191
-			        $wife = new Individual('W', '0 @W@ INDI', null, $family->getTree());
192
-			    }
193
-			    $dwife = new \MyArtJaub\Webtrees\Individual($wife);
184
+				$husb = $family->getHusband();
185
+				if (is_null($husb)) {
186
+					$husb = new Individual('H', '0 @H@ INDI', null, $family->getTree());
187
+				}
188
+				$dhusb = new \MyArtJaub\Webtrees\Individual($husb);
189
+				$wife = $family->getWife();
190
+				if (is_null($wife)) {
191
+					$wife = new Individual('W', '0 @W@ INDI', null, $family->getTree());
192
+				}
193
+				$dwife = new \MyArtJaub\Webtrees\Individual($wife);
194 194
 			    
195
-			    $mdate=$family->getMarriageDate();
195
+				$mdate=$family->getMarriageDate();
196 196
 			    
197
-			    if ($family->isPendingAddtion()) {
198
-			        $class = ' class="new"';
199
-			    } elseif ($family->isPendingDeletion()) {
200
-			        $class = ' class="old"';
201
-			    } else {
202
-			        $class = '';
203
-			    }
204
-			    ?>			
197
+				if ($family->isPendingAddtion()) {
198
+					$class = ' class="new"';
199
+				} elseif ($family->isPendingDeletion()) {
200
+					$class = ' class="old"';
201
+				} else {
202
+					$class = '';
203
+				}
204
+				?>			
205 205
         		<tr <?= $class ?>>
206 206
         			<td class="transparent" data-sort="<?= $sosa ?>"><?= I18N::translate('%1$d/%2$d', $sosa, ($sosa + 1) % 10) ?></td>
207 207
         			<!--  HUSBAND -->
208 208
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($husb); ?>
209 209
         			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">        			
210 210
         			<?php foreach ($husb->getAllNames() as $num=>$name) {
211
-        				if ($name['type']=='NAME') {
212
-        					$title='';
213
-        				} else {
214
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"';
215
-        				}
216
-        				if ($num==$husb->getPrimaryName()) {
217
-        					$class=' class="name2"';
218
-        					$sex_image=$husb->getSexImage();
219
-        				} else {
220
-        					$class='';
221
-        					$sex_image='';
222
-        				} ?>
211
+						if ($name['type']=='NAME') {
212
+							$title='';
213
+						} else {
214
+							$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"';
215
+						}
216
+						if ($num==$husb->getPrimaryName()) {
217
+							$class=' class="name2"';
218
+							$sex_image=$husb->getSexImage();
219
+						} else {
220
+							$class='';
221
+							$sex_image='';
222
+						} ?>
223 223
         				<a <?php echo $title.' '.$class; ?> href="<?php echo $husb->getHtmlUrl(); ?>">
224 224
         					<?php echo \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']); ?>
225 225
         				</a>
226 226
         				<?php echo $sex_image.FunctionsPrint::formatSosaNumbers($dhusb->getSosaNumbers(), 1, 'smaller'); ?>
227 227
         				<br/>
228 228
             		<?php }
229
-            		echo $husb->getPrimaryParentsNames('parents details1', 'none');
230
-            		?>
229
+					echo $husb->getPrimaryParentsNames('parents details1', 'none');
230
+					?>
231 231
             		</td>
232 232
             		<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>
233 233
             		<?php $hdate=$husb->getBirthDate(); ?>
@@ -236,55 +236,55 @@  discard block
 block discarded – undo
236 236
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($wife); ?>
237 237
         			<td colspan="2">
238 238
         			<?php foreach ($wife->getAllNames() as $num=>$name) {
239
-        				if ($name['type']=='NAME') {
240
-        					$title='';
241
-        				} else {
242
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"';
243
-        				}
244
-        				if ($num==$wife->getPrimaryName()) {
245
-        					$class=' class="name2"';
246
-        					$sex_image=$wife->getSexImage();
247
-        				} else {
248
-        					$class='';
249
-        					$sex_image='';
250
-        				} ?>
239
+						if ($name['type']=='NAME') {
240
+							$title='';
241
+						} else {
242
+							$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"';
243
+						}
244
+						if ($num==$wife->getPrimaryName()) {
245
+							$class=' class="name2"';
246
+							$sex_image=$wife->getSexImage();
247
+						} else {
248
+							$class='';
249
+							$sex_image='';
250
+						} ?>
251 251
         				<a <?= $title.' '.$class ?> href="<?= $wife->getHtmlUrl() ?>">
252 252
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
253 253
         				</a>
254 254
         				<?= $sex_image.FunctionsPrint::formatSosaNumbers($dwife->getSosaNumbers(), 1, 'smaller') ?>
255 255
         				<br/>
256 256
             		<?php }
257
-            		echo $wife->getPrimaryParentsNames('parents details1', 'none');
258
-            		?>
257
+					echo $wife->getPrimaryParentsNames('parents details1', 'none');
258
+					?>
259 259
             		</td>
260 260
             		<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>
261 261
             		<?php $wdate=$wife->getBirthDate(); ?>
262 262
             		<td class="center" data-sort="<?= Date::getAge($wdate, $mdate, 1) ?>"><?= Date::getAge($wdate, $mdate, 2) ?></td>
263 263
             		<td data-sort="<?= $mdate->julianDay() ?>"><?php 
264
-            		if ($marriage_dates = $family->getAllMarriageDates()) {
265
-        				foreach ($marriage_dates as $n => $marriage_date) {
266
-        					if ($n) { echo '<br>'; } ?>
264
+					if ($marriage_dates = $family->getAllMarriageDates()) {
265
+						foreach ($marriage_dates as $n => $marriage_date) {
266
+							if ($n) { echo '<br>'; } ?>
267 267
         					<div><?= $marriage_date->display(true) ?></div>
268 268
         				<?php }
269
-            		} elseif ($family->getFacts('_NMR')) {
270
-            		    echo I18N::translate('no');
271
-            		} elseif ($family->getFacts('MARR')) {
272
-            		    echo I18N::translate('yes');
273
-            		} else {
274
-            		    echo '&nbsp;';
275
-            		} ?>
269
+					} elseif ($family->getFacts('_NMR')) {
270
+						echo I18N::translate('no');
271
+					} elseif ($family->getFacts('MARR')) {
272
+						echo I18N::translate('yes');
273
+					} else {
274
+						echo '&nbsp;';
275
+					} ?>
276 276
             		</td>
277 277
             		<td><?php 
278
-            		foreach ($family->getAllMarriagePlaces() as $n => $marriage_place) {
279
-				        $tmp = new Place($marriage_place, $family->getTree());
280
-        				if ($n) { ?><br><?php } ?>
278
+					foreach ($family->getAllMarriagePlaces() as $n => $marriage_place) {
279
+						$tmp = new Place($marriage_place, $family->getTree());
280
+						if ($n) { ?><br><?php } ?>
281 281
         				<a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>">
282 282
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?>
283 283
         				</a>
284 284
         			<?php  } ?>
285 285
         			</td>
286 286
         			<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
287
-				        $isMSourced = $dfamily->isMarriageSourced(); ?>
287
+						$isMSourced = $dfamily->isMarriageSourced(); ?>
288 288
 				   	<td data-sort=<?= $isMSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isMSourced, 'MARR', 1, 'medium') ?></td>
289 289
 					<?php } else { ?>
290 290
 					<td>&nbsp;</td>
@@ -295,30 +295,30 @@  discard block
 block discarded – undo
295 295
 					<td hidden><?php 
296 296
 					if (!$mdate->isOK()) { echo 'U'; }
297 297
 					else {
298
-					    if (Date::compare($mdate, new Date(date('Y') - 100)) > 0) { echo 'Y100'; }
299
-					    else { echo 'YES'; }
298
+						if (Date::compare($mdate, new Date(date('Y') - 100)) > 0) { echo 'Y100'; }
299
+						else { echo 'YES'; }
300 300
 					}
301 301
 					if ($family->getFacts(WT_EVENTS_DIV)) { echo 'D'; }
302 302
 					if (count($husb->getSpouseFamilies()) > 1 || count($wife->getSpouseFamilies()) > 1) {
303
-					    echo 'M';
303
+						echo 'M';
304 304
 					} ?>
305 305
 					</td>
306 306
 					<td hidden><?php 
307
-			         if ($husb->isDead() && $wife->isDead()) { echo 'Y'; }
308
-			         if ($husb->isDead() && !$wife->isDead()) {
309
-        				if ($wife->getSex() == 'F') { echo 'H'; }
310
-        				if ($wife->getSex() == 'M') { echo 'W'; } // male partners
311
-        			}
312
-        			if (!$husb->isDead() && $wife->isDead()) {
313
-        				if ($husb->getSex() == 'M') { echo 'W'; }
314
-        				if ($husb->getSex() == 'F') { echo  'H'; }  // female partners
315
-        			}
316
-        			if (!$husb->isDead() && !$wife->isDead()) { echo 'N'; } ?>
307
+					 if ($husb->isDead() && $wife->isDead()) { echo 'Y'; }
308
+					 if ($husb->isDead() && !$wife->isDead()) {
309
+						if ($wife->getSex() == 'F') { echo 'H'; }
310
+						if ($wife->getSex() == 'M') { echo 'W'; } // male partners
311
+					}
312
+					if (!$husb->isDead() && $wife->isDead()) {
313
+						if ($husb->getSex() == 'M') { echo 'W'; }
314
+						if ($husb->getSex() == 'F') { echo  'H'; }  // female partners
315
+					}
316
+					if (!$husb->isDead() && !$wife->isDead()) { echo 'N'; } ?>
317 317
         			</td>
318 318
         			<td hidden><?php 
319
-			         if (!$husb->getChildFamilies() && !$wife->getChildFamilies()) { echo 'R'; }
320
-			         elseif (!$husb->isDead() && !$wife->isDead() && $family->getNumberOfChildren() < 1) { echo 'L'; }
321
-			         else { echo '&nbsp;'; } ?>
319
+					 if (!$husb->getChildFamilies() && !$wife->getChildFamilies()) { echo 'R'; }
320
+					 elseif (!$husb->isDead() && !$wife->isDead() && $family->getNumberOfChildren() < 1) { echo 'L'; }
321
+					 else { echo '&nbsp;'; } ?>
322 322
 			         </td>
323 323
 				</tr>
324 324
         	<?php } ?>
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
         <p class="warning"><?= I18N::translate('No family has been found for generation %d', $this->data->get('generation')) ?></p>
357 357
         <?php 
358 358
 		}
359
-    }
359
+	}
360 360
     
361 361
 }
362 362
  
363 363
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 */
35 35
     protected function renderContent() { 
36 36
         
37
-        if($this->data->get('has_sosa', false)) {
37
+        if ($this->data->get('has_sosa', false)) {
38 38
             $table_id = $this->data->get('table_id');            
39 39
         ?>   
40 40
         
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 										class="ui-state-default"
53 53
 										title="<?php echo I18N::translate('Show individuals who are alive or couples where both partners are alive.'); ?>"
54 54
 									>
55
-									<?php echo I18N::translate('Both alive');?>
55
+									<?php echo I18N::translate('Both alive'); ?>
56 56
 									</button>
57 57
 									<button
58 58
 										type="button"
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 										class="ui-state-default"
62 62
 										title="<?php echo I18N::translate('Show couples where only the female partner is deceased.'); ?>"
63 63
 									>
64
-									<?php echo I18N::translate('Widower');?>
64
+									<?php echo I18N::translate('Widower'); ?>
65 65
 									</button>
66 66
 									<button
67 67
 										type="button"
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 				</thead>
176 176
 				<tbody>
177 177
 			
178
-			<?php foreach($this->data->get('sosa_list') as $sosa => $family) {
178
+			<?php foreach ($this->data->get('sosa_list') as $sosa => $family) {
179 179
 			    /** @var \Fisharebest\Webtrees\Family $person */
180 180
 
181 181
 			    //PERSO Create decorator for Family
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 			    }
193 193
 			    $dwife = new \MyArtJaub\Webtrees\Individual($wife);
194 194
 			    
195
-			    $mdate=$family->getMarriageDate();
195
+			    $mdate = $family->getMarriageDate();
196 196
 			    
197 197
 			    if ($family->isPendingAddtion()) {
198 198
 			        $class = ' class="new"';
@@ -208,17 +208,17 @@  discard block
 block discarded – undo
208 208
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($husb); ?>
209 209
         			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">        			
210 210
         			<?php foreach ($husb->getAllNames() as $num=>$name) {
211
-        				if ($name['type']=='NAME') {
212
-        					$title='';
211
+        				if ($name['type'] == 'NAME') {
212
+        					$title = '';
213 213
         				} else {
214
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"';
214
+        					$title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"';
215 215
         				}
216
-        				if ($num==$husb->getPrimaryName()) {
217
-        					$class=' class="name2"';
218
-        					$sex_image=$husb->getSexImage();
216
+        				if ($num == $husb->getPrimaryName()) {
217
+        					$class = ' class="name2"';
218
+        					$sex_image = $husb->getSexImage();
219 219
         				} else {
220
-        					$class='';
221
-        					$sex_image='';
220
+        					$class = '';
221
+        					$sex_image = '';
222 222
         				} ?>
223 223
         				<a <?php echo $title.' '.$class; ?> href="<?php echo $husb->getHtmlUrl(); ?>">
224 224
         					<?php echo \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']); ?>
@@ -230,23 +230,23 @@  discard block
 block discarded – undo
230 230
             		?>
231 231
             		</td>
232 232
             		<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>
233
-            		<?php $hdate=$husb->getBirthDate(); ?>
233
+            		<?php $hdate = $husb->getBirthDate(); ?>
234 234
             		<td class="center" data-sort="<?= Date::getAge($hdate, $mdate, 1) ?>"><?= Date::getAge($hdate, $mdate, 2) ?></td>
235 235
             		<!--  WIFE -->            		
236 236
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($wife); ?>
237 237
         			<td colspan="2">
238 238
         			<?php foreach ($wife->getAllNames() as $num=>$name) {
239
-        				if ($name['type']=='NAME') {
240
-        					$title='';
239
+        				if ($name['type'] == 'NAME') {
240
+        					$title = '';
241 241
         				} else {
242
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"';
242
+        					$title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"';
243 243
         				}
244
-        				if ($num==$wife->getPrimaryName()) {
245
-        					$class=' class="name2"';
246
-        					$sex_image=$wife->getSexImage();
244
+        				if ($num == $wife->getPrimaryName()) {
245
+        					$class = ' class="name2"';
246
+        					$sex_image = $wife->getSexImage();
247 247
         				} else {
248
-        					$class='';
249
-        					$sex_image='';
248
+        					$class = '';
249
+        					$sex_image = '';
250 250
         				} ?>
251 251
         				<a <?= $title.' '.$class ?> href="<?= $wife->getHtmlUrl() ?>">
252 252
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
             		?>
259 259
             		</td>
260 260
             		<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>
261
-            		<?php $wdate=$wife->getBirthDate(); ?>
261
+            		<?php $wdate = $wife->getBirthDate(); ?>
262 262
             		<td class="center" data-sort="<?= Date::getAge($wdate, $mdate, 1) ?>"><?= Date::getAge($wdate, $mdate, 2) ?></td>
263 263
             		<td data-sort="<?= $mdate->julianDay() ?>"><?php 
264 264
             		if ($marriage_dates = $family->getAllMarriageDates()) {
Please login to merge, or discard this patch.
src/Webtrees/Module/Sosa/Views/SosaListIndiView.php 2 patches
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
 	 * {@inhericDoc}
32 32
 	 * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent()
33 33
 	 */
34
-    protected function renderContent() { 
34
+	protected function renderContent() { 
35 35
         
36
-        if($this->data->get('has_sosa', false)) {
37
-            $table_id = $this->data->get('table_id');            
38
-        ?>   
36
+		if($this->data->get('has_sosa', false)) {
37
+			$table_id = $this->data->get('table_id');            
38
+		?>   
39 39
         
40 40
         <div id="sosa-indi-list" class="sosa-list">
41 41
         	<table id="<?= $table_id ?>">
@@ -177,62 +177,62 @@  discard block
 block discarded – undo
177 177
 			<tbody>
178 178
 			
179 179
 			<?php foreach($this->data->get('sosa_list') as $sosa => $person) {
180
-			    /** @var \Fisharebest\Webtrees\Individual $person */
181
-			    if ($person->isPendingAddtion()) {
182
-			        $class = ' class="new"';
183
-			    } elseif ($person->isPendingDeletion()) {
184
-			        $class = ' class="old"';
185
-			    } else {
186
-			        $class = '';
187
-			    }
188
-			    $dperson = new \MyArtJaub\Webtrees\Individual($person);
189
-			    ?>			
180
+				/** @var \Fisharebest\Webtrees\Individual $person */
181
+				if ($person->isPendingAddtion()) {
182
+					$class = ' class="new"';
183
+				} elseif ($person->isPendingDeletion()) {
184
+					$class = ' class="old"';
185
+				} else {
186
+					$class = '';
187
+				}
188
+				$dperson = new \MyArtJaub\Webtrees\Individual($person);
189
+				?>			
190 190
         		<tr <?= $class ?>>
191 191
         			<td class="transparent"><?= $sosa ?></td>
192 192
         			<td hidden><?= $person->getXref() ?></td>
193 193
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?>
194 194
         			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">
195 195
         			<?php foreach ($person->getAllNames() as $num=>$name) {
196
-        				if ($name['type']=='NAME') {
197
-        					$title='';
198
-        				} else {
199
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
200
-        				}
201
-        				if ($num==$person->getPrimaryName()) {
202
-        					$class=' class="name2"';
203
-        					$sex_image=$person->getSexImage();
204
-        				} else {
205
-        					$class='';
206
-        					$sex_image='';
207
-        				} ?>
196
+						if ($name['type']=='NAME') {
197
+							$title='';
198
+						} else {
199
+							$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
200
+						}
201
+						if ($num==$person->getPrimaryName()) {
202
+							$class=' class="name2"';
203
+							$sex_image=$person->getSexImage();
204
+						} else {
205
+							$class='';
206
+							$sex_image='';
207
+						} ?>
208 208
         				<a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>">
209 209
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
210 210
         				</a>
211 211
         				<?= $sex_image.FunctionsPrint::formatSosaNumbers($dperson->getSosaNumbers(), 1, 'smaller') ?>
212 212
         				<br/>
213 213
             		<?php }
214
-            		echo $person->getPrimaryParentsNames('parents details1', 'none');
215
-            		?>
214
+					echo $person->getPrimaryParentsNames('parents details1', 'none');
215
+					?>
216 216
             		</td>
217 217
             		<td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td>
218 218
             		<?php $birth_dates = $person->getAllBirthDates(); ?>
219 219
             		<td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>">
220 220
             		<?php foreach ($birth_dates as $n => $birth_date) {
221
-    					   if ($n > 0) { ?><br/><?php } ?>
221
+						   if ($n > 0) { ?><br/><?php } ?>
222 222
     						<?php  echo $birth_date->display(true);
223
-			        } ?>
223
+					} ?>
224 224
             		</td>
225 225
         			<td>
226 226
         			<?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) {
227
-				        $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree());
228
-        				if ($n > 0) { ?><br><?php } ?>
227
+						$tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree());
228
+						if ($n > 0) { ?><br><?php } ?>
229 229
         				<a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>">
230 230
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?>
231 231
         				</a>
232 232
         			<?php } ?>
233 233
         			</td>
234 234
         			<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
235
-				        $isBSourced = $dperson->isBirthSourced(); ?>
235
+						$isBSourced = $dperson->isBirthSourced(); ?>
236 236
 				   	<td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td>
237 237
 					<?php } else { ?>
238 238
 					<td>&nbsp;</td>
@@ -240,63 +240,63 @@  discard block
 block discarded – undo
240 240
 					<?php $death_dates = $person->getAllDeathDates(); ?>
241 241
 					<td data-sort="<?= $person->getEstimatedDeathDate()->julianDay() ?>">
242 242
 					<?php foreach ($death_dates as $num => $death_date) {
243
-					       if ($num) { ?><br/><?php } ?>
243
+						   if ($num) { ?><br/><?php } ?>
244 244
 					 		<?php echo $death_date->display(true); 
245
-				     } ?>
245
+					 } ?>
246 246
 			         </td>
247 247
 			         <?php if (isset($birth_dates[0]) && isset($death_dates[0])) {
248
-			             $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0);
249
-			             $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2);
250
-			         } else {
251
-			             $age_at_death      = '';
252
-			             $age_at_death_sort = PHP_INT_MAX;
253
-			         } ?>
248
+						 $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0);
249
+						 $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2);
250
+					 } else {
251
+						 $age_at_death      = '';
252
+						 $age_at_death_sort = PHP_INT_MAX;
253
+					 } ?>
254 254
 			         <td class="center" data-sort="<?= $age_at_death_sort ?>"><?= $age_at_death ?></td>
255 255
 			         <td>
256 256
         			 <?php foreach ($person->getAllDeathPlaces() as $n => $death_place) {
257
-        				$tmp = new Place($death_place, $person->getTree());
258
-        				if ($n) { ?><br><?php } ?>
257
+						$tmp = new Place($death_place, $person->getTree());
258
+						if ($n) { ?><br><?php } ?>
259 259
         				<a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>">
260 260
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?>
261 261
         				</a>
262 262
         			<?php } ?>
263 263
         			</td>
264 264
         			<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
265
-        			    if($person->isDead()) {
266
-        			        $isDSourced = $dperson->isDeathSourced(); ?>
265
+						if($person->isDead()) {
266
+							$isDSourced = $dperson->isDeathSourced(); ?>
267 267
 				   	<td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td>
268 268
 					<?php } else { ?>
269 269
 					<td data-sort="-99">&nbsp;</td>
270 270
 					<?php } 
271
-        			} else { ?>
271
+					} else { ?>
272 272
 					<td>&nbsp;</td>
273 273
 					<?php } ?>
274 274
 					<td hidden><?= $person->getSex() ?></td>
275 275
 					<td hidden>
276 276
 					<?php if (!$person->canShow() || Date::compare($person->getEstimatedBirthDate(), new Date(date('Y') - 100)) > 0) {
277
-					    echo 'Y100';
278
-        			} else {
279
-        				echo 'YES';
280
-        			} ?>
277
+						echo 'Y100';
278
+					} else {
279
+						echo 'YES';
280
+					} ?>
281 281
         			</td>
282 282
         			<td hidden>
283 283
         			<?php if (isset($death_dates[0]) && Date::compare($death_dates[0], new Date(date('Y') - 100)) > 0) {
284
-				        echo 'Y100';
285
-        			} elseif ($person->isDead()) {
286
-				        echo 'YES';
287
-        			} else {
288
-				        echo 'N';
289
-			         } ?>
284
+						echo 'Y100';
285
+					} elseif ($person->isDead()) {
286
+						echo 'YES';
287
+					} else {
288
+						echo 'N';
289
+					 } ?>
290 290
 			         </td>
291 291
 			         <td hidden>
292 292
 					<?php if (!$person->getChildFamilies()) {
293
-					    echo 'R';
293
+						echo 'R';
294 294
 					}  // roots
295 295
 					elseif (!$person->isDead() && $person->getNumberOfChildren() < 1) {
296
-            			echo 'L';
296
+						echo 'L';
297 297
 					} // leaves
298 298
 					else {
299
-					    echo '&nbsp;';
299
+						echo '&nbsp;';
300 300
 					} ?>
301 301
 					</td>
302 302
 				</tr>
@@ -307,12 +307,12 @@  discard block
 block discarded – undo
307 307
 					<th class="ui-state-default" colspan="15">
308 308
 						<div class="center">
309 309
 							<?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)',
310
-							    I18N::number($this->data->get('sosa_count')),
311
-							    I18N::number($this->data->get('sosa_theo')), 
312
-							    I18N::percentage($this->data->get('sosa_ratio'),2)
313
-							    ) ?>
310
+								I18N::number($this->data->get('sosa_count')),
311
+								I18N::number($this->data->get('sosa_theo')), 
312
+								I18N::percentage($this->data->get('sosa_ratio'),2)
313
+								) ?>
314 314
 							<?php if($this->data->get('sosa_hidden') > 0) {
315
-							    echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']';
315
+								echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']';
316 316
 							} ?>
317 317
 						</div>
318 318
 					</th>
@@ -346,8 +346,8 @@  discard block
 block discarded – undo
346 346
 				</div>
347 347
 			</div>
348 348
 		<?php 
349
-        }
350
-    }
349
+		}
350
+	}
351 351
     
352 352
 }
353 353
  
354 354
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	 */
34 34
     protected function renderContent() { 
35 35
         
36
-        if($this->data->get('has_sosa', false)) {
36
+        if ($this->data->get('has_sosa', false)) {
37 37
             $table_id = $this->data->get('table_id');            
38 38
         ?>   
39 39
         
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 				</thead>
177 177
 			<tbody>
178 178
 			
179
-			<?php foreach($this->data->get('sosa_list') as $sosa => $person) {
179
+			<?php foreach ($this->data->get('sosa_list') as $sosa => $person) {
180 180
 			    /** @var \Fisharebest\Webtrees\Individual $person */
181 181
 			    if ($person->isPendingAddtion()) {
182 182
 			        $class = ' class="new"';
@@ -193,17 +193,17 @@  discard block
 block discarded – undo
193 193
         			<?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?>
194 194
         			<td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>">
195 195
         			<?php foreach ($person->getAllNames() as $num=>$name) {
196
-        				if ($name['type']=='NAME') {
197
-        					$title='';
196
+        				if ($name['type'] == 'NAME') {
197
+        					$title = '';
198 198
         				} else {
199
-        					$title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
199
+        					$title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"';
200 200
         				}
201
-        				if ($num==$person->getPrimaryName()) {
202
-        					$class=' class="name2"';
203
-        					$sex_image=$person->getSexImage();
201
+        				if ($num == $person->getPrimaryName()) {
202
+        					$class = ' class="name2"';
203
+        					$sex_image = $person->getSexImage();
204 204
         				} else {
205
-        					$class='';
206
-        					$sex_image='';
205
+        					$class = '';
206
+        					$sex_image = '';
207 207
         				} ?>
208 208
         				<a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>">
209 209
         					<?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?>
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
         			<?php } ?>
263 263
         			</td>
264 264
         			<?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) {
265
-        			    if($person->isDead()) {
265
+        			    if ($person->isDead()) {
266 266
         			        $isDSourced = $dperson->isDeathSourced(); ?>
267 267
 				   	<td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td>
268 268
 					<?php } else { ?>
@@ -309,10 +309,10 @@  discard block
 block discarded – undo
309 309
 							<?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)',
310 310
 							    I18N::number($this->data->get('sosa_count')),
311 311
 							    I18N::number($this->data->get('sosa_theo')), 
312
-							    I18N::percentage($this->data->get('sosa_ratio'),2)
312
+							    I18N::percentage($this->data->get('sosa_ratio'), 2)
313 313
 							    ) ?>
314
-							<?php if($this->data->get('sosa_hidden') > 0) {
315
-							    echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']';
314
+							<?php if ($this->data->get('sosa_hidden') > 0) {
315
+							    echo '['.I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']';
316 316
 							} ?>
317 317
 						</div>
318 318
 					</th>
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 								<button type="button" class="ui-state-default btn-toggle-parents">
325 325
 									<?= I18N::translate('Show parents') ?>
326 326
 								</button>
327
-								<button id="btn-toggle-statistics-<?php echo $table_id ;?>" type="button" class="ui-state-default btn-toggle-statistics">
327
+								<button id="btn-toggle-statistics-<?php echo $table_id; ?>" type="button" class="ui-state-default btn-toggle-statistics">
328 328
 									<?= I18N::translate('Show statistics charts') ?>
329 329
 								</button>
330 330
 							</div>
Please login to merge, or discard this patch.