@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @param GedcomRecord $grec Gedcom record |
24 | 24 | * @param string $size Prepend size |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function hRecordNamePrepend(GedcomRecord $grec, $size); |
27 | 28 | |
@@ -30,6 +31,7 @@ discard block |
||
30 | 31 | * |
31 | 32 | * @param GedcomRecord $grec Gedcom record |
32 | 33 | * @param string $size Append size |
34 | + * @return string |
|
33 | 35 | */ |
34 | 36 | public function hRecordNameAppend(GedcomRecord $grec, $size); |
35 | 37 |
@@ -28,29 +28,29 @@ discard block |
||
28 | 28 | class IsSourcedModule extends AbstractModule |
29 | 29 | implements ModuleSidebarInterface, HookSubscriberInterface, IndividualHeaderExtenderInterface, RecordNameTextExtenderInterface |
30 | 30 | { |
31 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
32 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
31 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
32 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
33 | 33 | |
34 | - /** |
|
35 | - * {@inheritDoc} |
|
36 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
37 | - */ |
|
38 | - public function getTitle() { |
|
39 | - return I18N::translate('Sourced events'); |
|
40 | - } |
|
34 | + /** |
|
35 | + * {@inheritDoc} |
|
36 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
37 | + */ |
|
38 | + public function getTitle() { |
|
39 | + return I18N::translate('Sourced events'); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * {@inheritDoc} |
44 | 44 | * @see \Fisharebest\Webtrees\Module\AbstractModule::getDescription() |
45 | 45 | */ |
46 | - public function getDescription() { |
|
47 | - return I18N::translate('Indicate if events related to an record are sourced.'); |
|
48 | - } |
|
46 | + public function getDescription() { |
|
47 | + return I18N::translate('Indicate if events related to an record are sourced.'); |
|
48 | + } |
|
49 | 49 | |
50 | - /** |
|
51 | - * {@inheritDoc} |
|
52 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
53 | - */ |
|
50 | + /** |
|
51 | + * {@inheritDoc} |
|
52 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
53 | + */ |
|
54 | 54 | public function getSubscribedHooks() { |
55 | 55 | return array( |
56 | 56 | 'hExtendIndiHeaderIcons' => 10, |
@@ -63,12 +63,12 @@ discard block |
||
63 | 63 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
64 | 64 | */ |
65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
66 | - if($ctrlIndi){ |
|
67 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
68 | - if ($dindi->canDisplayIsSourced()) |
|
69 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
70 | - } |
|
71 | - return ''; |
|
66 | + if($ctrlIndi){ |
|
67 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
68 | + if ($dindi->canDisplayIsSourced()) |
|
69 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
70 | + } |
|
71 | + return ''; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -94,15 +94,15 @@ discard block |
||
94 | 94 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
95 | 95 | */ |
96 | 96 | public function hRecordNameAppend(GedcomRecord $grec, $size = 'small'){ |
97 | - $html = ''; |
|
98 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
99 | - $dindi = new Individual($grec); |
|
100 | - $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
|
101 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
|
102 | - if($grec->isDead()) |
|
103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
104 | - } |
|
105 | - return $html; |
|
97 | + $html = ''; |
|
98 | + if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
99 | + $dindi = new Individual($grec); |
|
100 | + $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
|
101 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
|
102 | + if($grec->isDead()) |
|
103 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
104 | + } |
|
105 | + return $html; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::defaultSidebarOrder() |
111 | 111 | */ |
112 | 112 | public function defaultSidebarOrder() { |
113 | - return 15; |
|
113 | + return 15; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::hasSidebarContent() |
119 | 119 | */ |
120 | 120 | public function hasSidebarContent(){ |
121 | - return true; |
|
121 | + return true; |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarAjaxContent() |
127 | 127 | */ |
128 | 128 | public function getSidebarAjaxContent() { |
129 | - return ''; |
|
129 | + return ''; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
@@ -134,17 +134,17 @@ discard block |
||
134 | 134 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarContent() |
135 | 135 | */ |
136 | 136 | public function getSidebarContent() { |
137 | - global $controller; |
|
137 | + global $controller; |
|
138 | 138 | |
139 | - ob_start(); |
|
140 | - $root = $controller->getSignificantIndividual(); |
|
141 | - if ($root) { |
|
142 | - $dindi = new Individual($root); |
|
139 | + ob_start(); |
|
140 | + $root = $controller->getSignificantIndividual(); |
|
141 | + if ($root) { |
|
142 | + $dindi = new Individual($root); |
|
143 | 143 | |
144 | - if (!$dindi->canDisplayIsSourced()) { |
|
145 | - echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
146 | - } else { |
|
147 | - echo ' |
|
144 | + if (!$dindi->canDisplayIsSourced()) { |
|
145 | + echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
146 | + } else { |
|
147 | + echo ' |
|
148 | 148 | <table class="issourcedtable"> |
149 | 149 | <tr> |
150 | 150 | <td class="slabel"> ' . GedcomTag::getLabel('INDI') . '</td> |
@@ -155,35 +155,35 @@ discard block |
||
155 | 155 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1).'</td> |
156 | 156 | </tr>'; |
157 | 157 | |
158 | - $fams = $root->getSpouseFamilies(); |
|
159 | - ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
160 | - foreach($fams as $fam){ |
|
161 | - $dfam = new Family($fam); |
|
162 | - echo ' |
|
158 | + $fams = $root->getSpouseFamilies(); |
|
159 | + ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
160 | + foreach($fams as $fam){ |
|
161 | + $dfam = new Family($fam); |
|
162 | + echo ' |
|
163 | 163 | <tr> |
164 | 164 | <td class="slabel right"> |
165 | 165 | <a href="' . $fam->getHtmlUrl() . '"> '. GedcomTag::getLabel('MARR'); |
166 | - if($ct > 1){ |
|
167 | - echo ' ',$nb; |
|
168 | - $nb++; |
|
169 | - } |
|
170 | - echo ' </a> |
|
166 | + if($ct > 1){ |
|
167 | + echo ' ',$nb; |
|
168 | + $nb++; |
|
169 | + } |
|
170 | + echo ' </a> |
|
171 | 171 | </td> |
172 | 172 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dfam->isMarriageSourced(), 'MARR', 1).'</td> |
173 | 173 | </tr>'; |
174 | - } |
|
174 | + } |
|
175 | 175 | |
176 | - if( $root->isDead() ) |
|
177 | - echo ' |
|
176 | + if( $root->isDead() ) |
|
177 | + echo ' |
|
178 | 178 | <tr> |
179 | 179 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
180 | 180 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
181 | 181 | </tr>'; |
182 | 182 | |
183 | - echo '</table>'; |
|
184 | - } |
|
185 | - } |
|
186 | - return ob_get_clean(); |
|
183 | + echo '</table>'; |
|
184 | + } |
|
185 | + } |
|
186 | + return ob_get_clean(); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
64 | 64 | */ |
65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
66 | - if($ctrlIndi){ |
|
66 | + if ($ctrlIndi) { |
|
67 | 67 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
68 | 68 | if ($dindi->canDisplayIsSourced()) |
69 | 69 | return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
@@ -87,19 +87,19 @@ discard block |
||
87 | 87 | * {@inheritDoc} |
88 | 88 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
89 | 89 | */ |
90 | - public function hRecordNamePrepend(GedcomRecord $grec, $size){ } |
|
90 | + public function hRecordNamePrepend(GedcomRecord $grec, $size) { } |
|
91 | 91 | |
92 | 92 | /** |
93 | 93 | * {@inheritDoc} |
94 | 94 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
95 | 95 | */ |
96 | - public function hRecordNameAppend(GedcomRecord $grec, $size = 'small'){ |
|
96 | + public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
97 | 97 | $html = ''; |
98 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
98 | + if ($grec instanceof \Fisharebest\Webtrees\Individual) { |
|
99 | 99 | $dindi = new Individual($grec); |
100 | 100 | $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
101 | 101 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
102 | - if($grec->isDead()) |
|
102 | + if ($grec->isDead()) |
|
103 | 103 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
104 | 104 | } |
105 | 105 | return $html; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * {@inheritDoc} |
118 | 118 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::hasSidebarContent() |
119 | 119 | */ |
120 | - public function hasSidebarContent(){ |
|
120 | + public function hasSidebarContent() { |
|
121 | 121 | return true; |
122 | 122 | } |
123 | 123 | |
@@ -147,24 +147,24 @@ discard block |
||
147 | 147 | echo ' |
148 | 148 | <table class="issourcedtable"> |
149 | 149 | <tr> |
150 | - <td class="slabel"> ' . GedcomTag::getLabel('INDI') . '</td> |
|
150 | + <td class="slabel"> ' . GedcomTag::getLabel('INDI').'</td> |
|
151 | 151 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1).'</td> |
152 | 152 | </tr> |
153 | 153 | <tr> |
154 | - <td class="slabel">' . GedcomTag::getLabel('BIRT') . '</td> |
|
154 | + <td class="slabel">' . GedcomTag::getLabel('BIRT').'</td> |
|
155 | 155 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1).'</td> |
156 | 156 | </tr>'; |
157 | 157 | |
158 | 158 | $fams = $root->getSpouseFamilies(); |
159 | - ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
160 | - foreach($fams as $fam){ |
|
159 | + ($ct = count($fams)) > 1 ? $nb = 1 : $nb = ' '; |
|
160 | + foreach ($fams as $fam) { |
|
161 | 161 | $dfam = new Family($fam); |
162 | 162 | echo ' |
163 | 163 | <tr> |
164 | 164 | <td class="slabel right"> |
165 | - <a href="' . $fam->getHtmlUrl() . '"> '. GedcomTag::getLabel('MARR'); |
|
166 | - if($ct > 1){ |
|
167 | - echo ' ',$nb; |
|
165 | + <a href="' . $fam->getHtmlUrl().'"> '.GedcomTag::getLabel('MARR'); |
|
166 | + if ($ct > 1) { |
|
167 | + echo ' ', $nb; |
|
168 | 168 | $nb++; |
169 | 169 | } |
170 | 170 | echo ' </a> |
@@ -173,10 +173,10 @@ discard block |
||
173 | 173 | </tr>'; |
174 | 174 | } |
175 | 175 | |
176 | - if( $root->isDead() ) |
|
176 | + if ($root->isDead()) |
|
177 | 177 | echo ' |
178 | 178 | <tr> |
179 | - <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
|
179 | + <td class="slabel">' . GedcomTag::getLabel('DEAT').'</td> |
|
180 | 180 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
181 | 181 | </tr>'; |
182 | 182 |
@@ -65,8 +65,9 @@ discard block |
||
65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
66 | 66 | if($ctrlIndi){ |
67 | 67 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
68 | - if ($dindi->canDisplayIsSourced()) |
|
69 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
68 | + if ($dindi->canDisplayIsSourced()) { |
|
69 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
70 | + } |
|
70 | 71 | } |
71 | 72 | return ''; |
72 | 73 | } |
@@ -99,8 +100,9 @@ discard block |
||
99 | 100 | $dindi = new Individual($grec); |
100 | 101 | $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
101 | 102 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
102 | - if($grec->isDead()) |
|
103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
103 | + if($grec->isDead()) { |
|
104 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
105 | + } |
|
104 | 106 | } |
105 | 107 | return $html; |
106 | 108 | } |
@@ -173,12 +175,13 @@ discard block |
||
173 | 175 | </tr>'; |
174 | 176 | } |
175 | 177 | |
176 | - if( $root->isDead() ) |
|
177 | - echo ' |
|
178 | + if( $root->isDead() ) { |
|
179 | + echo ' |
|
178 | 180 | <tr> |
179 | 181 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
180 | 182 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
181 | 183 | </tr>'; |
184 | + } |
|
182 | 185 | |
183 | 186 | echo '</table>'; |
184 | 187 | } |
@@ -31,116 +31,116 @@ discard block |
||
31 | 31 | * Sosa Module. |
32 | 32 | */ |
33 | 33 | class SosaModule |
34 | - extends AbstractModule |
|
35 | - implements ModuleMenuInterface, |
|
36 | - ModuleConfigInterface, |
|
37 | - HookSubscriberInterface, |
|
38 | - IndividualHeaderExtenderInterface, |
|
39 | - RecordNameTextExtenderInterface |
|
34 | + extends AbstractModule |
|
35 | + implements ModuleMenuInterface, |
|
36 | + ModuleConfigInterface, |
|
37 | + HookSubscriberInterface, |
|
38 | + IndividualHeaderExtenderInterface, |
|
39 | + RecordNameTextExtenderInterface |
|
40 | 40 | { |
41 | - // How to update the database schema for this module |
|
42 | - const SCHEMA_TARGET_VERSION = 1; |
|
43 | - const SCHEMA_SETTING_NAME = 'MAJ_SOSA_SCHEMA_VERSION'; |
|
44 | - const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\Sosa\Schema'; |
|
41 | + // How to update the database schema for this module |
|
42 | + const SCHEMA_TARGET_VERSION = 1; |
|
43 | + const SCHEMA_SETTING_NAME = 'MAJ_SOSA_SCHEMA_VERSION'; |
|
44 | + const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\Sosa\Schema'; |
|
45 | 45 | |
46 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
47 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
48 | - |
|
49 | - /** |
|
50 | - * {@inhericDoc} |
|
51 | - */ |
|
52 | - public function getTitle() { |
|
53 | - return /* I18N: Name of the “Sosa” module */ I18N::translate('Sosa'); |
|
54 | - } |
|
55 | - |
|
56 | - /** |
|
57 | - * {@inhericDoc} |
|
58 | - */ |
|
59 | - public function getDescription() { |
|
60 | - return /* I18N: Description of the “Sosa” module */ I18N::translate('Calculate and display Sosa ancestors of the root person.'); |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * {@inhericDoc} |
|
65 | - */ |
|
66 | - public function modAction($mod_action) { |
|
67 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
46 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
47 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
48 | + |
|
49 | + /** |
|
50 | + * {@inhericDoc} |
|
51 | + */ |
|
52 | + public function getTitle() { |
|
53 | + return /* I18N: Name of the “Sosa” module */ I18N::translate('Sosa'); |
|
54 | + } |
|
55 | + |
|
56 | + /** |
|
57 | + * {@inhericDoc} |
|
58 | + */ |
|
59 | + public function getDescription() { |
|
60 | + return /* I18N: Description of the “Sosa” module */ I18N::translate('Calculate and display Sosa ancestors of the root person.'); |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * {@inhericDoc} |
|
65 | + */ |
|
66 | + public function modAction($mod_action) { |
|
67 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
68 | 68 | |
69 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
70 | - } |
|
69 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
70 | + } |
|
71 | 71 | |
72 | - /********** |
|
72 | + /********** |
|
73 | 73 | * ModuleConfigInterface |
74 | 74 | **********/ |
75 | 75 | |
76 | - /** |
|
77 | - * {@inhericDoc} |
|
78 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
79 | - */ |
|
80 | - public function getConfigLink() { |
|
81 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
76 | + /** |
|
77 | + * {@inhericDoc} |
|
78 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
79 | + */ |
|
80 | + public function getConfigLink() { |
|
81 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
82 | 82 | |
83 | - return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
84 | - } |
|
83 | + return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
84 | + } |
|
85 | 85 | |
86 | - /********** |
|
86 | + /********** |
|
87 | 87 | * ModuleMenuInterface |
88 | 88 | **********/ |
89 | 89 | |
90 | - /** |
|
91 | - * {@inhericDoc} |
|
92 | - * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::defaultMenuOrder() |
|
93 | - */ |
|
94 | - public function defaultMenuOrder() { |
|
95 | - return 5; |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * {@inhericDoc} |
|
100 | - * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::getMenu() |
|
101 | - */ |
|
102 | - public function getMenu() { |
|
103 | - global $WT_TREE, $controller; |
|
90 | + /** |
|
91 | + * {@inhericDoc} |
|
92 | + * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::defaultMenuOrder() |
|
93 | + */ |
|
94 | + public function defaultMenuOrder() { |
|
95 | + return 5; |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * {@inhericDoc} |
|
100 | + * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::getMenu() |
|
101 | + */ |
|
102 | + public function getMenu() { |
|
103 | + global $WT_TREE, $controller; |
|
104 | 104 | |
105 | - $menu = null; |
|
106 | - if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
105 | + $menu = null; |
|
106 | + if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
107 | 107 | |
108 | - $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $WT_TREE->getNameUrl() . '&'; |
|
109 | - $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
108 | + $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $WT_TREE->getNameUrl() . '&'; |
|
109 | + $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
110 | 110 | |
111 | - $menu = clone $sosa_stat_menu; |
|
112 | - $menu->setClass('menu-maj-sosa'); |
|
111 | + $menu = clone $sosa_stat_menu; |
|
112 | + $menu->setClass('menu-maj-sosa'); |
|
113 | 113 | |
114 | - $submenus = array_filter(array( |
|
115 | - new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | - new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | - $sosa_stat_menu |
|
118 | - )); |
|
114 | + $submenus = array_filter(array( |
|
115 | + new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | + new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | + $sosa_stat_menu |
|
118 | + )); |
|
119 | 119 | |
120 | 120 | |
121 | - if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_GEODISP_NAME) |
|
122 | - && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
|
123 | - ) |
|
124 | - { |
|
125 | - if(count($ga_list) > 0) { |
|
126 | - $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $WT_TREE->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | - } |
|
128 | - } |
|
121 | + if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_GEODISP_NAME) |
|
122 | + && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
|
123 | + ) |
|
124 | + { |
|
125 | + if(count($ga_list) > 0) { |
|
126 | + $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $WT_TREE->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | + } |
|
128 | + } |
|
129 | 129 | |
130 | - if(Auth::check()) { |
|
131 | - $submenus[] = new Menu( |
|
132 | - I18N::translate('Sosa Configuration'), |
|
133 | - $this->getConfigLink(), |
|
134 | - 'menu-maj-sosa-configuration', |
|
135 | - array('rel' => 'nofollow')); |
|
136 | - } |
|
130 | + if(Auth::check()) { |
|
131 | + $submenus[] = new Menu( |
|
132 | + I18N::translate('Sosa Configuration'), |
|
133 | + $this->getConfigLink(), |
|
134 | + 'menu-maj-sosa-configuration', |
|
135 | + array('rel' => 'nofollow')); |
|
136 | + } |
|
137 | 137 | |
138 | - //-- recompute Sosa submenu |
|
139 | - if (!empty($controller) && $controller instanceof IndividualController |
|
140 | - && Auth::check() && $WT_TREE->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID') |
|
141 | - ) { |
|
142 | - $controller |
|
143 | - ->addInlineJavascript(' |
|
138 | + //-- recompute Sosa submenu |
|
139 | + if (!empty($controller) && $controller instanceof IndividualController |
|
140 | + && Auth::check() && $WT_TREE->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID') |
|
141 | + ) { |
|
142 | + $controller |
|
143 | + ->addInlineJavascript(' |
|
144 | 144 | function majComputeSosaFromIndi(){ |
145 | 145 | if($("#computesosadlg").length == 0) { |
146 | 146 | $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation') .'\"><div id=\"sosaloadingarea\"></div></div>"); |
@@ -163,87 +163,87 @@ discard block |
||
163 | 163 | }); |
164 | 164 | }'); |
165 | 165 | |
166 | - $submenus[] = new Menu( |
|
167 | - I18N::translate('Complete Sosas'), |
|
168 | - '#', |
|
169 | - 'menu-maj-sosa-recompute', |
|
170 | - array( |
|
171 | - 'rel' => 'nofollow', |
|
172 | - 'onclick' => 'return majComputeSosaFromIndi();' |
|
173 | - )); |
|
174 | - } |
|
166 | + $submenus[] = new Menu( |
|
167 | + I18N::translate('Complete Sosas'), |
|
168 | + '#', |
|
169 | + 'menu-maj-sosa-recompute', |
|
170 | + array( |
|
171 | + 'rel' => 'nofollow', |
|
172 | + 'onclick' => 'return majComputeSosaFromIndi();' |
|
173 | + )); |
|
174 | + } |
|
175 | 175 | |
176 | - } |
|
176 | + } |
|
177 | 177 | |
178 | - $menu->setSubmenus($submenus); |
|
178 | + $menu->setSubmenus($submenus); |
|
179 | 179 | |
180 | - return $menu; |
|
180 | + return $menu; |
|
181 | 181 | |
182 | - } |
|
182 | + } |
|
183 | 183 | |
184 | - /********** |
|
184 | + /********** |
|
185 | 185 | * Hooks |
186 | 186 | **********/ |
187 | 187 | |
188 | - /** |
|
189 | - * {@inhericDoc} |
|
190 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
191 | - */ |
|
192 | - public function getSubscribedHooks() { |
|
193 | - return array( |
|
194 | - 'hExtendIndiHeaderIcons' => 20, |
|
195 | - 'hExtendIndiHeaderRight' => 20, |
|
196 | - 'hRecordNameAppend' => 20 |
|
197 | - ); |
|
198 | - } |
|
199 | - |
|
200 | - /** |
|
201 | - * {@inhericDoc} |
|
202 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
|
203 | - */ |
|
204 | - public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
|
205 | - if($ctrlIndi){ |
|
206 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
207 | - return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
|
208 | - } |
|
209 | - return ''; |
|
210 | - } |
|
211 | - |
|
212 | - /** |
|
213 | - * {@inhericDoc} |
|
214 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft() |
|
215 | - */ |
|
216 | - public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi) { } |
|
217 | - |
|
218 | - /** |
|
219 | - * {@inhericDoc} |
|
220 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
|
221 | - */ |
|
222 | - public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
|
223 | - if($ctrlIndi){ |
|
224 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
225 | - return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
226 | - } |
|
227 | - return ''; |
|
228 | - } |
|
229 | - |
|
230 | - /** |
|
231 | - * {@inhericDoc} |
|
232 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
|
233 | - */ |
|
234 | - public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
235 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
236 | - $dindi = new Individual($grec); |
|
237 | - return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
|
238 | - } |
|
239 | - return ''; |
|
240 | - } |
|
241 | - |
|
242 | - /** |
|
243 | - * {@inhericDoc} |
|
244 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
|
245 | - */ |
|
246 | - public function hRecordNamePrepend(GedcomRecord $grec, $size) {} |
|
188 | + /** |
|
189 | + * {@inhericDoc} |
|
190 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
191 | + */ |
|
192 | + public function getSubscribedHooks() { |
|
193 | + return array( |
|
194 | + 'hExtendIndiHeaderIcons' => 20, |
|
195 | + 'hExtendIndiHeaderRight' => 20, |
|
196 | + 'hRecordNameAppend' => 20 |
|
197 | + ); |
|
198 | + } |
|
199 | + |
|
200 | + /** |
|
201 | + * {@inhericDoc} |
|
202 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
|
203 | + */ |
|
204 | + public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
|
205 | + if($ctrlIndi){ |
|
206 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
207 | + return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
|
208 | + } |
|
209 | + return ''; |
|
210 | + } |
|
211 | + |
|
212 | + /** |
|
213 | + * {@inhericDoc} |
|
214 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft() |
|
215 | + */ |
|
216 | + public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi) { } |
|
217 | + |
|
218 | + /** |
|
219 | + * {@inhericDoc} |
|
220 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
|
221 | + */ |
|
222 | + public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
|
223 | + if($ctrlIndi){ |
|
224 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
225 | + return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
226 | + } |
|
227 | + return ''; |
|
228 | + } |
|
229 | + |
|
230 | + /** |
|
231 | + * {@inhericDoc} |
|
232 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
|
233 | + */ |
|
234 | + public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
235 | + if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
236 | + $dindi = new Individual($grec); |
|
237 | + return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
|
238 | + } |
|
239 | + return ''; |
|
240 | + } |
|
241 | + |
|
242 | + /** |
|
243 | + * {@inhericDoc} |
|
244 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
|
245 | + */ |
|
246 | + public function hRecordNamePrepend(GedcomRecord $grec, $size) {} |
|
247 | 247 | |
248 | 248 | |
249 | 249 |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | public function getConfigLink() { |
81 | 81 | Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
82 | 82 | |
83 | - return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
83 | + return 'module.php?mod='.$this->getName().'&mod_action=SosaConfig'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /********** |
@@ -103,17 +103,17 @@ discard block |
||
103 | 103 | global $WT_TREE, $controller; |
104 | 104 | |
105 | 105 | $menu = null; |
106 | - if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
106 | + if (ModuleManager::getInstance()->isOperational($this->getName())) { |
|
107 | 107 | |
108 | - $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $WT_TREE->getNameUrl() . '&'; |
|
109 | - $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
108 | + $root_url = 'module.php?mod='.$this->getName().'&ged='.$WT_TREE->getNameUrl().'&'; |
|
109 | + $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url.'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
110 | 110 | |
111 | 111 | $menu = clone $sosa_stat_menu; |
112 | 112 | $menu->setClass('menu-maj-sosa'); |
113 | 113 | |
114 | 114 | $submenus = array_filter(array( |
115 | - new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | - new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
115 | + new Menu(I18N::translate('Sosa Ancestors'), $root_url.'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | + new Menu(I18N::translate('Missing Ancestors'), $root_url.'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | 117 | $sosa_stat_menu |
118 | 118 | )); |
119 | 119 | |
@@ -122,12 +122,12 @@ discard block |
||
122 | 122 | && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
123 | 123 | ) |
124 | 124 | { |
125 | - if(count($ga_list) > 0) { |
|
126 | - $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $WT_TREE->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
125 | + if (count($ga_list) > 0) { |
|
126 | + $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod='.Constants::MODULE_MAJ_GEODISP_NAME.'&ged='.$WT_TREE->getNameUrl().'&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | |
130 | - if(Auth::check()) { |
|
130 | + if (Auth::check()) { |
|
131 | 131 | $submenus[] = new Menu( |
132 | 132 | I18N::translate('Sosa Configuration'), |
133 | 133 | $this->getConfigLink(), |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | ->addInlineJavascript(' |
144 | 144 | function majComputeSosaFromIndi(){ |
145 | 145 | if($("#computesosadlg").length == 0) { |
146 | - $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation') .'\"><div id=\"sosaloadingarea\"></div></div>"); |
|
146 | + $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation').'\"><div id=\"sosaloadingarea\"></div></div>"); |
|
147 | 147 | } |
148 | 148 | $("#computesosadlg").dialog({ |
149 | 149 | modal: true, |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | open: function(event, ui) { |
153 | 153 | $("button.ui-dialog-titlebar-close").hide(); |
154 | 154 | $("#sosaloadingarea").empty().html("<i class=\"icon-loading-small\"></i>"); |
155 | - $("#sosaloadingarea").load("module.php?mod=' . $this->getName() . '&mod_action=SosaConfig@computePartial&ged='. $WT_TREE->getNameUrl() .'&userid='.Auth::user()->getUserId().'&pid=' . $controller->getSignificantIndividual()->getXref() . '", |
|
155 | + $("#sosaloadingarea").load("module.php?mod=' . $this->getName().'&mod_action=SosaConfig@computePartial&ged='.$WT_TREE->getNameUrl().'&userid='.Auth::user()->getUserId().'&pid='.$controller->getSignificantIndividual()->getXref().'", |
|
156 | 156 | function(){ |
157 | 157 | $("button.ui-dialog-titlebar-close").show(); |
158 | 158 | setTimeout(function(){ |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
203 | 203 | */ |
204 | 204 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
205 | - if($ctrlIndi){ |
|
205 | + if ($ctrlIndi) { |
|
206 | 206 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
207 | 207 | return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
208 | 208 | } |
@@ -220,9 +220,9 @@ discard block |
||
220 | 220 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
221 | 221 | */ |
222 | 222 | public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
223 | - if($ctrlIndi){ |
|
223 | + if ($ctrlIndi) { |
|
224 | 224 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
225 | - return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
225 | + return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
226 | 226 | } |
227 | 227 | return ''; |
228 | 228 | } |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
233 | 233 | */ |
234 | 234 | public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
235 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
235 | + if ($grec instanceof \Fisharebest\Webtrees\Individual) { // Only apply to individuals |
|
236 | 236 | $dindi = new Individual($grec); |
237 | 237 | return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
238 | 238 | } |
@@ -32,11 +32,11 @@ discard block |
||
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,61 +176,61 @@ discard block |
||
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 | - $wife = $family->getWife(); |
|
189 | - if (is_null($wife)) { |
|
190 | - $wife = new Individual('W', '0 @W@ INDI', null, $family->getTree()); |
|
191 | - } |
|
184 | + $husb = $family->getHusband(); |
|
185 | + if (is_null($husb)) { |
|
186 | + $husb = new Individual('H', '0 @H@ INDI', null, $family->getTree()); |
|
187 | + } |
|
188 | + $wife = $family->getWife(); |
|
189 | + if (is_null($wife)) { |
|
190 | + $wife = new Individual('W', '0 @W@ INDI', null, $family->getTree()); |
|
191 | + } |
|
192 | 192 | |
193 | - $mdate=$family->getMarriageDate(); |
|
193 | + $mdate=$family->getMarriageDate(); |
|
194 | 194 | |
195 | - if ($family->isPendingAddtion()) { |
|
196 | - $class = ' class="new"'; |
|
197 | - } elseif ($family->isPendingDeletion()) { |
|
198 | - $class = ' class="old"'; |
|
199 | - } else { |
|
200 | - $class = ''; |
|
201 | - } |
|
202 | - ?> |
|
195 | + if ($family->isPendingAddtion()) { |
|
196 | + $class = ' class="new"'; |
|
197 | + } elseif ($family->isPendingDeletion()) { |
|
198 | + $class = ' class="old"'; |
|
199 | + } else { |
|
200 | + $class = ''; |
|
201 | + } |
|
202 | + ?> |
|
203 | 203 | <tr <?= $class ?>> |
204 | 204 | <td class="transparent" data-sort="<?= $sosa ?>"><?= I18N::translate('%1$d/%2$d', $sosa, ($sosa + 1) % 10) ?></td> |
205 | 205 | <!-- HUSBAND --> |
206 | 206 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($husb); ?> |
207 | 207 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
208 | 208 | <?php foreach ($husb->getAllNames() as $num=>$name) { |
209 | - if ($name['type']=='NAME') { |
|
210 | - $title=''; |
|
211 | - } else { |
|
212 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"'; |
|
213 | - } |
|
214 | - if ($num==$husb->getPrimaryName()) { |
|
215 | - $class=' class="name2"'; |
|
216 | - $sex_image=$husb->getSexImage(); |
|
217 | - } else { |
|
218 | - $class=''; |
|
219 | - $sex_image=''; |
|
220 | - } ?> |
|
209 | + if ($name['type']=='NAME') { |
|
210 | + $title=''; |
|
211 | + } else { |
|
212 | + $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"'; |
|
213 | + } |
|
214 | + if ($num==$husb->getPrimaryName()) { |
|
215 | + $class=' class="name2"'; |
|
216 | + $sex_image=$husb->getSexImage(); |
|
217 | + } else { |
|
218 | + $class=''; |
|
219 | + $sex_image=''; |
|
220 | + } ?> |
|
221 | 221 | <a <?php echo $title.' '.$class; ?> href="<?php echo $husb->getHtmlUrl(); ?>"> |
222 | 222 | <?php echo \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']); ?> |
223 | 223 | </a> |
224 | 224 | <?php echo $sex_image; |
225 | - echo implode(' ', |
|
226 | - \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
227 | - ->get('hRecordNameAppend') |
|
228 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $husb, 'smaller')); |
|
229 | - ?> |
|
225 | + echo implode(' ', |
|
226 | + \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
227 | + ->get('hRecordNameAppend') |
|
228 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $husb, 'smaller')); |
|
229 | + ?> |
|
230 | 230 | <br/> |
231 | 231 | <?php } |
232 | - echo $husb->getPrimaryParentsNames('parents details1', 'none'); |
|
233 | - ?> |
|
232 | + echo $husb->getPrimaryParentsNames('parents details1', 'none'); |
|
233 | + ?> |
|
234 | 234 | </td> |
235 | 235 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
236 | 236 | <?php $hdate=$husb->getBirthDate(); ?> |
@@ -239,60 +239,60 @@ discard block |
||
239 | 239 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($wife); ?> |
240 | 240 | <td colspan="2"> |
241 | 241 | <?php foreach ($wife->getAllNames() as $num=>$name) { |
242 | - if ($name['type']=='NAME') { |
|
243 | - $title=''; |
|
244 | - } else { |
|
245 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"'; |
|
246 | - } |
|
247 | - if ($num==$wife->getPrimaryName()) { |
|
248 | - $class=' class="name2"'; |
|
249 | - $sex_image=$wife->getSexImage(); |
|
250 | - } else { |
|
251 | - $class=''; |
|
252 | - $sex_image=''; |
|
253 | - } ?> |
|
242 | + if ($name['type']=='NAME') { |
|
243 | + $title=''; |
|
244 | + } else { |
|
245 | + $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"'; |
|
246 | + } |
|
247 | + if ($num==$wife->getPrimaryName()) { |
|
248 | + $class=' class="name2"'; |
|
249 | + $sex_image=$wife->getSexImage(); |
|
250 | + } else { |
|
251 | + $class=''; |
|
252 | + $sex_image=''; |
|
253 | + } ?> |
|
254 | 254 | <a <?= $title.' '.$class ?> href="<?= $wife->getHtmlUrl() ?>"> |
255 | 255 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
256 | 256 | </a> |
257 | 257 | <?= $sex_image; |
258 | - echo implode(' ', |
|
259 | - \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
260 | - ->get('hRecordNameAppend') |
|
261 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $wife, 'smaller')); |
|
262 | - ?> |
|
258 | + echo implode(' ', |
|
259 | + \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
260 | + ->get('hRecordNameAppend') |
|
261 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $wife, 'smaller')); |
|
262 | + ?> |
|
263 | 263 | <br/> |
264 | 264 | <?php } |
265 | - echo $wife->getPrimaryParentsNames('parents details1', 'none'); |
|
266 | - ?> |
|
265 | + echo $wife->getPrimaryParentsNames('parents details1', 'none'); |
|
266 | + ?> |
|
267 | 267 | </td> |
268 | 268 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
269 | 269 | <?php $wdate=$wife->getBirthDate(); ?> |
270 | 270 | <td class="center" data-sort="<?= Date::getAge($wdate, $mdate, 1) ?>"><?= Date::getAge($wdate, $mdate, 2) ?></td> |
271 | 271 | <td data-sort="<?= $mdate->julianDay() ?>"><?php |
272 | - if ($marriage_dates = $family->getAllMarriageDates()) { |
|
273 | - foreach ($marriage_dates as $n => $marriage_date) { |
|
274 | - if ($n) { echo '<br>'; } ?> |
|
272 | + if ($marriage_dates = $family->getAllMarriageDates()) { |
|
273 | + foreach ($marriage_dates as $n => $marriage_date) { |
|
274 | + if ($n) { echo '<br>'; } ?> |
|
275 | 275 | <div><?= $marriage_date->display(true) ?></div> |
276 | 276 | <?php } |
277 | - } elseif ($family->getFacts('_NMR')) { |
|
278 | - echo I18N::translate('no'); |
|
279 | - } elseif ($family->getFacts('MARR')) { |
|
280 | - echo I18N::translate('yes'); |
|
281 | - } else { |
|
282 | - echo ' '; |
|
283 | - } ?> |
|
277 | + } elseif ($family->getFacts('_NMR')) { |
|
278 | + echo I18N::translate('no'); |
|
279 | + } elseif ($family->getFacts('MARR')) { |
|
280 | + echo I18N::translate('yes'); |
|
281 | + } else { |
|
282 | + echo ' '; |
|
283 | + } ?> |
|
284 | 284 | </td> |
285 | 285 | <td><?php |
286 | - foreach ($family->getAllMarriagePlaces() as $n => $marriage_place) { |
|
287 | - $tmp = new Place($marriage_place, $family->getTree()); |
|
288 | - if ($n) { ?><br><?php } ?> |
|
286 | + foreach ($family->getAllMarriagePlaces() as $n => $marriage_place) { |
|
287 | + $tmp = new Place($marriage_place, $family->getTree()); |
|
288 | + if ($n) { ?><br><?php } ?> |
|
289 | 289 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
290 | 290 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
291 | 291 | </a> |
292 | 292 | <?php } ?> |
293 | 293 | </td> |
294 | 294 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
295 | - $isMSourced = $dfamily->isMarriageSourced(); ?> |
|
295 | + $isMSourced = $dfamily->isMarriageSourced(); ?> |
|
296 | 296 | <td data-sort=<?= $isMSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isMSourced, 'MARR', 1, 'medium') ?></td> |
297 | 297 | <?php } else { ?> |
298 | 298 | <td> </td> |
@@ -303,30 +303,30 @@ discard block |
||
303 | 303 | <td hidden><?php |
304 | 304 | if (!$mdate->isOK()) { echo 'U'; } |
305 | 305 | else { |
306 | - if (Date::compare($mdate, new Date(date('Y') - 100)) > 0) { echo 'Y100'; } |
|
307 | - else { echo 'YES'; } |
|
306 | + if (Date::compare($mdate, new Date(date('Y') - 100)) > 0) { echo 'Y100'; } |
|
307 | + else { echo 'YES'; } |
|
308 | 308 | } |
309 | 309 | if ($family->getFacts(WT_EVENTS_DIV)) { echo 'D'; } |
310 | 310 | if (count($husb->getSpouseFamilies()) > 1 || count($wife->getSpouseFamilies()) > 1) { |
311 | - echo 'M'; |
|
311 | + echo 'M'; |
|
312 | 312 | } ?> |
313 | 313 | </td> |
314 | 314 | <td hidden><?php |
315 | - if ($husb->isDead() && $wife->isDead()) { echo 'Y'; } |
|
316 | - if ($husb->isDead() && !$wife->isDead()) { |
|
317 | - if ($wife->getSex() == 'F') { echo 'H'; } |
|
318 | - if ($wife->getSex() == 'M') { echo 'W'; } // male partners |
|
319 | - } |
|
320 | - if (!$husb->isDead() && $wife->isDead()) { |
|
321 | - if ($husb->getSex() == 'M') { echo 'W'; } |
|
322 | - if ($husb->getSex() == 'F') { echo 'H'; } // female partners |
|
323 | - } |
|
324 | - if (!$husb->isDead() && !$wife->isDead()) { echo 'N'; } ?> |
|
315 | + if ($husb->isDead() && $wife->isDead()) { echo 'Y'; } |
|
316 | + if ($husb->isDead() && !$wife->isDead()) { |
|
317 | + if ($wife->getSex() == 'F') { echo 'H'; } |
|
318 | + if ($wife->getSex() == 'M') { echo 'W'; } // male partners |
|
319 | + } |
|
320 | + if (!$husb->isDead() && $wife->isDead()) { |
|
321 | + if ($husb->getSex() == 'M') { echo 'W'; } |
|
322 | + if ($husb->getSex() == 'F') { echo 'H'; } // female partners |
|
323 | + } |
|
324 | + if (!$husb->isDead() && !$wife->isDead()) { echo 'N'; } ?> |
|
325 | 325 | </td> |
326 | 326 | <td hidden><?php |
327 | - if (!$husb->getChildFamilies() && !$wife->getChildFamilies()) { echo 'R'; } |
|
328 | - elseif (!$husb->isDead() && !$wife->isDead() && $family->getNumberOfChildren() < 1) { echo 'L'; } |
|
329 | - else { echo ' '; } ?> |
|
327 | + if (!$husb->getChildFamilies() && !$wife->getChildFamilies()) { echo 'R'; } |
|
328 | + elseif (!$husb->isDead() && !$wife->isDead() && $family->getNumberOfChildren() < 1) { echo 'L'; } |
|
329 | + else { echo ' '; } ?> |
|
330 | 330 | </td> |
331 | 331 | </tr> |
332 | 332 | <?php } ?> |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | <p class="warning"><?= I18N::translate('No family has been found for generation %d', $this->data->get('generation')) ?></p> |
365 | 365 | <?php |
366 | 366 | } |
367 | - } |
|
367 | + } |
|
368 | 368 | |
369 | 369 | } |
370 | 370 | |
371 | 371 | \ No newline at end of file |
@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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 |
||
61 | 61 | class="ui-state-default" |
62 | 62 | title="<?php echo I18N::translate('Show couples where only the female partner is dead.'); ?>" |
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 |
||
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 |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | $wife = new Individual('W', '0 @W@ INDI', null, $family->getTree()); |
191 | 191 | } |
192 | 192 | |
193 | - $mdate=$family->getMarriageDate(); |
|
193 | + $mdate = $family->getMarriageDate(); |
|
194 | 194 | |
195 | 195 | if ($family->isPendingAddtion()) { |
196 | 196 | $class = ' class="new"'; |
@@ -206,17 +206,17 @@ discard block |
||
206 | 206 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($husb); ?> |
207 | 207 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
208 | 208 | <?php foreach ($husb->getAllNames() as $num=>$name) { |
209 | - if ($name['type']=='NAME') { |
|
210 | - $title=''; |
|
209 | + if ($name['type'] == 'NAME') { |
|
210 | + $title = ''; |
|
211 | 211 | } else { |
212 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"'; |
|
212 | + $title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $husb)).'"'; |
|
213 | 213 | } |
214 | - if ($num==$husb->getPrimaryName()) { |
|
215 | - $class=' class="name2"'; |
|
216 | - $sex_image=$husb->getSexImage(); |
|
214 | + if ($num == $husb->getPrimaryName()) { |
|
215 | + $class = ' class="name2"'; |
|
216 | + $sex_image = $husb->getSexImage(); |
|
217 | 217 | } else { |
218 | - $class=''; |
|
219 | - $sex_image=''; |
|
218 | + $class = ''; |
|
219 | + $sex_image = ''; |
|
220 | 220 | } ?> |
221 | 221 | <a <?php echo $title.' '.$class; ?> href="<?php echo $husb->getHtmlUrl(); ?>"> |
222 | 222 | <?php echo \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']); ?> |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | echo implode(' ', |
226 | 226 | \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
227 | 227 | ->get('hRecordNameAppend') |
228 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $husb, 'smaller')); |
|
228 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $husb, 'smaller')); |
|
229 | 229 | ?> |
230 | 230 | <br/> |
231 | 231 | <?php } |
@@ -233,23 +233,23 @@ discard block |
||
233 | 233 | ?> |
234 | 234 | </td> |
235 | 235 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
236 | - <?php $hdate=$husb->getBirthDate(); ?> |
|
236 | + <?php $hdate = $husb->getBirthDate(); ?> |
|
237 | 237 | <td class="center" data-sort="<?= Date::getAge($hdate, $mdate, 1) ?>"><?= Date::getAge($hdate, $mdate, 2) ?></td> |
238 | 238 | <!-- WIFE --> |
239 | 239 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($wife); ?> |
240 | 240 | <td colspan="2"> |
241 | 241 | <?php foreach ($wife->getAllNames() as $num=>$name) { |
242 | - if ($name['type']=='NAME') { |
|
243 | - $title=''; |
|
242 | + if ($name['type'] == 'NAME') { |
|
243 | + $title = ''; |
|
244 | 244 | } else { |
245 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"'; |
|
245 | + $title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $wife)).'"'; |
|
246 | 246 | } |
247 | - if ($num==$wife->getPrimaryName()) { |
|
248 | - $class=' class="name2"'; |
|
249 | - $sex_image=$wife->getSexImage(); |
|
247 | + if ($num == $wife->getPrimaryName()) { |
|
248 | + $class = ' class="name2"'; |
|
249 | + $sex_image = $wife->getSexImage(); |
|
250 | 250 | } else { |
251 | - $class=''; |
|
252 | - $sex_image=''; |
|
251 | + $class = ''; |
|
252 | + $sex_image = ''; |
|
253 | 253 | } ?> |
254 | 254 | <a <?= $title.' '.$class ?> href="<?= $wife->getHtmlUrl() ?>"> |
255 | 255 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | echo implode(' ', |
259 | 259 | \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
260 | 260 | ->get('hRecordNameAppend') |
261 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $wife, 'smaller')); |
|
261 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $wife, 'smaller')); |
|
262 | 262 | ?> |
263 | 263 | <br/> |
264 | 264 | <?php } |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | ?> |
267 | 267 | </td> |
268 | 268 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
269 | - <?php $wdate=$wife->getBirthDate(); ?> |
|
269 | + <?php $wdate = $wife->getBirthDate(); ?> |
|
270 | 270 | <td class="center" data-sort="<?= Date::getAge($wdate, $mdate, 1) ?>"><?= Date::getAge($wdate, $mdate, 2) ?></td> |
271 | 271 | <td data-sort="<?= $mdate->julianDay() ?>"><?php |
272 | 272 | if ($marriage_dates = $family->getAllMarriageDates()) { |
@@ -30,16 +30,16 @@ discard block |
||
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,52 +103,52 @@ discard block |
||
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; |
140 | - echo implode(' ', |
|
141 | - \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
142 | - ->get('hRecordNameAppend') |
|
143 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); ?> |
|
140 | + echo implode(' ', |
|
141 | + \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
142 | + ->get('hRecordNameAppend') |
|
143 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); ?> |
|
144 | 144 | <br/> |
145 | 145 | <?php } |
146 | - echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
147 | - ?> |
|
146 | + echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
147 | + ?> |
|
148 | 148 | </td> |
149 | 149 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
150 | 150 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
151 | - $isISourced = $dperson->isSourced(); ?> |
|
151 | + $isISourced = $dperson->isSourced(); ?> |
|
152 | 152 | <td data-sort="<?= $isISourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('R', $isISourced, 'INDI', 1, 'medium') ?></td> |
153 | 153 | <?php } else { ?> |
154 | 154 | <td> </td> |
@@ -158,23 +158,23 @@ discard block |
||
158 | 158 | <?php $birth_dates = $person->getAllBirthDates(); ?> |
159 | 159 | <td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>"> |
160 | 160 | <?php |
161 | - foreach ($birth_dates as $n => $birth_date) { |
|
162 | - if ($n > 0) { ?> <br> <?php } |
|
163 | - echo $birth_date->display(true); |
|
164 | - } |
|
165 | - ?> |
|
161 | + foreach ($birth_dates as $n => $birth_date) { |
|
162 | + if ($n > 0) { ?> <br> <?php } |
|
163 | + echo $birth_date->display(true); |
|
164 | + } |
|
165 | + ?> |
|
166 | 166 | </td> |
167 | 167 | <td> |
168 | 168 | <?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) { |
169 | - $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
170 | - if ($n > 0) { ?><br><?php } ?> |
|
169 | + $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
170 | + if ($n > 0) { ?><br><?php } ?> |
|
171 | 171 | <a href="'<?= $tmp->getURL(); ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
172 | 172 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
173 | 173 | </a> |
174 | 174 | <?php } ?> |
175 | 175 | </td> |
176 | 176 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
177 | - $isBSourced = $dperson->isBirthSourced(); ?> |
|
177 | + $isBSourced = $dperson->isBirthSourced(); ?> |
|
178 | 178 | <td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td> |
179 | 179 | <?php } else { ?> |
180 | 180 | <td> </td> |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | <?php } else if ($this->data->get('generation', 0) > 0) { ?> |
200 | 200 | <p><?= I18N::translate('No ancestors are missing for this generation. Generation complete at %s.', I18N::percentage($this->data->get('perc_sosa'), 2)) ?></p> |
201 | 201 | <?php } |
202 | - } else { ?> |
|
202 | + } else { ?> |
|
203 | 203 | <p class="warning"><?= I18N::translate('The list could not be displayed. Reasons might be:') ?><br/> |
204 | 204 | <ul> |
205 | 205 | <li><?= I18N::translate('No Sosa root individual has been defined.') ?></li> |
@@ -210,6 +210,6 @@ discard block |
||
210 | 210 | <?php } ?> |
211 | 211 | </div> |
212 | 212 | <?php |
213 | - } |
|
213 | + } |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | \ No newline at end of file |
@@ -35,9 +35,9 @@ discard block |
||
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 |
||
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 |
||
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']) ?> |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | echo implode(' ', |
141 | 141 | \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
142 | 142 | ->get('hRecordNameAppend') |
143 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); ?> |
|
143 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); ?> |
|
144 | 144 | <br/> |
145 | 145 | <?php } |
146 | 146 | echo $person->getPrimaryParentsNames('parents details1', 'none'); |
@@ -188,9 +188,9 @@ discard block |
||
188 | 188 | <td class="ui-state-default" colspan="11"> |
189 | 189 | <div class="center"> |
190 | 190 | <?= I18N::translate('Number of different missing ancestors: %s', I18N::number($this->data->get('missing_diff_count'))) ?> |
191 | - <?php if($this->data->get('missing_hidden') > 0) echo ' ['. I18N::translate('%s hidden', I18N::number($this->data->get('missing_hidden'))).']'; ?> |
|
192 | - <?= ' - ' . I18N::translate('Generation complete at %s', I18N::percentage($this->data->get('perc_sosa'), 2)) ?> |
|
193 | - <?= ' [' . I18N::translate('Potential %s', I18N::percentage($this->data->get('perc_sosa_potential'),2)).']' ?> |
|
191 | + <?php if ($this->data->get('missing_hidden') > 0) echo ' ['.I18N::translate('%s hidden', I18N::number($this->data->get('missing_hidden'))).']'; ?> |
|
192 | + <?= ' - '.I18N::translate('Generation complete at %s', I18N::percentage($this->data->get('perc_sosa'), 2)) ?> |
|
193 | + <?= ' ['.I18N::translate('Potential %s', I18N::percentage($this->data->get('perc_sosa_potential'), 2)).']' ?> |
|
194 | 194 | </div> |
195 | 195 | </td> |
196 | 196 | </tr> |
@@ -31,11 +31,11 @@ discard block |
||
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,67 +177,67 @@ discard block |
||
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; |
212 | - echo implode(' ', |
|
213 | - \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
214 | - ->get('hRecordNameAppend') |
|
215 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
216 | - ?> |
|
212 | + echo implode(' ', |
|
213 | + \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
214 | + ->get('hRecordNameAppend') |
|
215 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
216 | + ?> |
|
217 | 217 | <br/> |
218 | 218 | <?php } |
219 | - echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
220 | - ?> |
|
219 | + echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
220 | + ?> |
|
221 | 221 | </td> |
222 | 222 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
223 | 223 | <?php $birth_dates = $person->getAllBirthDates(); ?> |
224 | 224 | <td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>"> |
225 | 225 | <?php foreach ($birth_dates as $n => $birth_date) { |
226 | - if ($n > 0) { ?><br/><?php } ?> |
|
226 | + if ($n > 0) { ?><br/><?php } ?> |
|
227 | 227 | <?php echo $birth_date->display(true); |
228 | - } ?> |
|
228 | + } ?> |
|
229 | 229 | </td> |
230 | 230 | <td> |
231 | 231 | <?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) { |
232 | - $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
233 | - if ($n > 0) { ?><br><?php } ?> |
|
232 | + $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
233 | + if ($n > 0) { ?><br><?php } ?> |
|
234 | 234 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
235 | 235 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
236 | 236 | </a> |
237 | 237 | <?php } ?> |
238 | 238 | </td> |
239 | 239 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
240 | - $isBSourced = $dperson->isBirthSourced(); ?> |
|
240 | + $isBSourced = $dperson->isBirthSourced(); ?> |
|
241 | 241 | <td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td> |
242 | 242 | <?php } else { ?> |
243 | 243 | <td> </td> |
@@ -245,63 +245,63 @@ discard block |
||
245 | 245 | <?php $death_dates = $person->getAllDeathDates(); ?> |
246 | 246 | <td data-sort="<?= $person->getEstimatedDeathDate()->julianDay() ?>"> |
247 | 247 | <?php foreach ($death_dates as $num => $death_date) { |
248 | - if ($num) { ?><br/><?php } ?> |
|
248 | + if ($num) { ?><br/><?php } ?> |
|
249 | 249 | <?php echo $death_date->display(true); |
250 | - } ?> |
|
250 | + } ?> |
|
251 | 251 | </td> |
252 | 252 | <?php if (isset($birth_dates[0]) && isset($death_dates[0])) { |
253 | - $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
254 | - $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
255 | - } else { |
|
256 | - $age_at_death = ''; |
|
257 | - $age_at_death_sort = PHP_INT_MAX; |
|
258 | - } ?> |
|
253 | + $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
254 | + $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
255 | + } else { |
|
256 | + $age_at_death = ''; |
|
257 | + $age_at_death_sort = PHP_INT_MAX; |
|
258 | + } ?> |
|
259 | 259 | <td class="center" data-sort="<?= $age_at_death_sort ?>"><?= $age_at_death ?></td> |
260 | 260 | <td> |
261 | 261 | <?php foreach ($person->getAllDeathPlaces() as $n => $death_place) { |
262 | - $tmp = new Place($death_place, $person->getTree()); |
|
263 | - if ($n) { ?><br><?php } ?> |
|
262 | + $tmp = new Place($death_place, $person->getTree()); |
|
263 | + if ($n) { ?><br><?php } ?> |
|
264 | 264 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
265 | 265 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
266 | 266 | </a> |
267 | 267 | <?php } ?> |
268 | 268 | </td> |
269 | 269 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
270 | - if($person->isDead()) { |
|
271 | - $isDSourced = $dperson->isDeathSourced(); ?> |
|
270 | + if($person->isDead()) { |
|
271 | + $isDSourced = $dperson->isDeathSourced(); ?> |
|
272 | 272 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
273 | 273 | <?php } else { ?> |
274 | 274 | <td data-sort="-99"> </td> |
275 | 275 | <?php } |
276 | - } else { ?> |
|
276 | + } else { ?> |
|
277 | 277 | <td> </td> |
278 | 278 | <?php } ?> |
279 | 279 | <td hidden><?= $person->getSex() ?></td> |
280 | 280 | <td hidden> |
281 | 281 | <?php if (!$person->canShow() || Date::compare($person->getEstimatedBirthDate(), new Date(date('Y') - 100)) > 0) { |
282 | - echo 'Y100'; |
|
283 | - } else { |
|
284 | - echo 'YES'; |
|
285 | - } ?> |
|
282 | + echo 'Y100'; |
|
283 | + } else { |
|
284 | + echo 'YES'; |
|
285 | + } ?> |
|
286 | 286 | </td> |
287 | 287 | <td hidden> |
288 | 288 | <?php if (isset($death_dates[0]) && Date::compare($death_dates[0], new Date(date('Y') - 100)) > 0) { |
289 | - echo 'Y100'; |
|
290 | - } elseif ($person->isDead()) { |
|
291 | - echo 'YES'; |
|
292 | - } else { |
|
293 | - echo 'N'; |
|
294 | - } ?> |
|
289 | + echo 'Y100'; |
|
290 | + } elseif ($person->isDead()) { |
|
291 | + echo 'YES'; |
|
292 | + } else { |
|
293 | + echo 'N'; |
|
294 | + } ?> |
|
295 | 295 | </td> |
296 | 296 | <td hidden> |
297 | 297 | <?php if (!$person->getChildFamilies()) { |
298 | - echo 'R'; |
|
298 | + echo 'R'; |
|
299 | 299 | } // roots |
300 | 300 | elseif (!$person->isDead() && $person->getNumberOfChildren() < 1) { |
301 | - echo 'L'; |
|
301 | + echo 'L'; |
|
302 | 302 | } // leaves |
303 | 303 | else { |
304 | - echo ' '; |
|
304 | + echo ' '; |
|
305 | 305 | } ?> |
306 | 306 | </td> |
307 | 307 | </tr> |
@@ -312,12 +312,12 @@ discard block |
||
312 | 312 | <th class="ui-state-default" colspan="15"> |
313 | 313 | <div class="center"> |
314 | 314 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
315 | - I18N::number($this->data->get('sosa_count')), |
|
316 | - I18N::number($this->data->get('sosa_theo')), |
|
317 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
318 | - ) ?> |
|
315 | + I18N::number($this->data->get('sosa_count')), |
|
316 | + I18N::number($this->data->get('sosa_theo')), |
|
317 | + I18N::percentage($this->data->get('sosa_ratio'),2) |
|
318 | + ) ?> |
|
319 | 319 | <?php if($this->data->get('sosa_hidden') > 0) { |
320 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
320 | + echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
321 | 321 | } ?> |
322 | 322 | </div> |
323 | 323 | </th> |
@@ -351,8 +351,8 @@ discard block |
||
351 | 351 | </div> |
352 | 352 | </div> |
353 | 353 | <?php |
354 | - } |
|
355 | - } |
|
354 | + } |
|
355 | + } |
|
356 | 356 | |
357 | 357 | } |
358 | 358 | |
359 | 359 | \ No newline at end of file |
@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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 |
||
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']) ?> |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | echo implode(' ', |
213 | 213 | \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
214 | 214 | ->get('hRecordNameAppend') |
215 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
215 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
216 | 216 | ?> |
217 | 217 | <br/> |
218 | 218 | <?php } |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | <?php } ?> |
268 | 268 | </td> |
269 | 269 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
270 | - if($person->isDead()) { |
|
270 | + if ($person->isDead()) { |
|
271 | 271 | $isDSourced = $dperson->isDeathSourced(); ?> |
272 | 272 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
273 | 273 | <?php } else { ?> |
@@ -314,10 +314,10 @@ discard block |
||
314 | 314 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
315 | 315 | I18N::number($this->data->get('sosa_count')), |
316 | 316 | I18N::number($this->data->get('sosa_theo')), |
317 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
317 | + I18N::percentage($this->data->get('sosa_ratio'), 2) |
|
318 | 318 | ) ?> |
319 | - <?php if($this->data->get('sosa_hidden') > 0) { |
|
320 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
319 | + <?php if ($this->data->get('sosa_hidden') > 0) { |
|
320 | + echo '['.I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
321 | 321 | } ?> |
322 | 322 | </div> |
323 | 323 | </th> |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | <button type="button" class="ui-state-default btn-toggle-parents"> |
330 | 330 | <?= I18N::translate('Show parents') ?> |
331 | 331 | </button> |
332 | - <button id="btn-toggle-statistics-<?= $table_id ;?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
332 | + <button id="btn-toggle-statistics-<?= $table_id; ?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
333 | 333 | <?= I18N::translate('Show statistics charts') ?> |
334 | 334 | </button> |
335 | 335 | </div> |
@@ -1,13 +1,13 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * webtrees-lib: MyArtJaub library for webtrees |
|
4 | - * |
|
5 | - * @package MyArtJaub\Webtrees |
|
6 | - * @subpackage Hook |
|
7 | - * @author Jonathan Jaubart <[email protected]> |
|
8 | - * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
9 | - * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
10 | - */ |
|
3 | + * webtrees-lib: MyArtJaub library for webtrees |
|
4 | + * |
|
5 | + * @package MyArtJaub\Webtrees |
|
6 | + * @subpackage Hook |
|
7 | + * @author Jonathan Jaubart <[email protected]> |
|
8 | + * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
9 | + * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
10 | + */ |
|
11 | 11 | namespace MyArtJaub\Webtrees\Hook; |
12 | 12 | |
13 | 13 | use Fisharebest\Webtrees\Database; |
@@ -137,17 +137,17 @@ discard block |
||
137 | 137 | * @return array Results of the hook executions |
138 | 138 | */ |
139 | 139 | public function executeOnlyFor(array $module_names) { |
140 | - $result = array(); |
|
141 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
142 | - $params = func_get_args(); |
|
143 | - array_shift($params); |
|
144 | - foreach ($module_names as $module_name) { |
|
145 | - if($module = Module::getModuleByName($module_name)) { |
|
146 | - $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
|
147 | - } |
|
148 | - } |
|
149 | - } |
|
150 | - return $result; |
|
140 | + $result = array(); |
|
141 | + if(HookProvider::getInstance()->isModuleOperational()){ |
|
142 | + $params = func_get_args(); |
|
143 | + array_shift($params); |
|
144 | + foreach ($module_names as $module_name) { |
|
145 | + if($module = Module::getModuleByName($module_name)) { |
|
146 | + $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
|
147 | + } |
|
148 | + } |
|
149 | + } |
|
150 | + return $result; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param string $hook_function_in Hook function to be subscribed or executed |
32 | 32 | * @param string $hook_context_in Hook context to be subscribed or executed |
33 | 33 | */ |
34 | - public function __construct($hook_function_in, $hook_context_in = 'all'){ |
|
34 | + public function __construct($hook_function_in, $hook_context_in = 'all') { |
|
35 | 35 | $this->hook_function = $hook_function_in; |
36 | 36 | $this->hook_context = $hook_context_in; |
37 | 37 | } |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @param string $hsubscriber Name of the subscriber module |
49 | 49 | */ |
50 | - public function subscribe($hsubscriber){ |
|
51 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
50 | + public function subscribe($hsubscriber) { |
|
51 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
52 | 52 | Database::prepare( |
53 | 53 | "INSERT IGNORE INTO `##maj_hooks` (majh_hook_function, majh_hook_context, majh_module_name)". |
54 | 54 | " VALUES (?, ?, ?)" |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | * @param string $hsubscriber Name of the subscriber module |
63 | 63 | * @param int $priority Priority of execution |
64 | 64 | */ |
65 | - public function setPriority($hsubscriber, $priority){ |
|
66 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
65 | + public function setPriority($hsubscriber, $priority) { |
|
66 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
67 | 67 | Database::prepare( |
68 | 68 | "UPDATE `##maj_hooks`". |
69 | 69 | " SET majh_module_priority=?". |
@@ -79,8 +79,8 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @param string $hsubscriber Name of the subscriber module |
81 | 81 | */ |
82 | - public function enable($hsubscriber){ |
|
83 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
82 | + public function enable($hsubscriber) { |
|
83 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
84 | 84 | Database::prepare( |
85 | 85 | "UPDATE `##maj_hooks`". |
86 | 86 | " SET majh_status='enabled'". |
@@ -96,8 +96,8 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @param string $hsubscriber Name of the subscriber module |
98 | 98 | */ |
99 | - public function disable($hsubscriber){ |
|
100 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
99 | + public function disable($hsubscriber) { |
|
100 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
101 | 101 | Database::prepare( |
102 | 102 | "UPDATE `##maj_hooks`". |
103 | 103 | " SET majh_status='disabled'". |
@@ -113,8 +113,8 @@ discard block |
||
113 | 113 | * |
114 | 114 | * @param string $hsubscriber Name of the subscriber module |
115 | 115 | */ |
116 | - public function remove($hsubscriber){ |
|
117 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
116 | + public function remove($hsubscriber) { |
|
117 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
118 | 118 | Database::prepare( |
119 | 119 | "DELETE FROM `##maj_hooks`". |
120 | 120 | " WHERE majh_hook_function=?". |
@@ -138,11 +138,11 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function executeOnlyFor(array $module_names) { |
140 | 140 | $result = array(); |
141 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
141 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
142 | 142 | $params = func_get_args(); |
143 | 143 | array_shift($params); |
144 | 144 | foreach ($module_names as $module_name) { |
145 | - if($module = Module::getModuleByName($module_name)) { |
|
145 | + if ($module = Module::getModuleByName($module_name)) { |
|
146 | 146 | $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
147 | 147 | } |
148 | 148 | } |
@@ -156,17 +156,17 @@ discard block |
||
156 | 156 | * |
157 | 157 | * @return array Results of the hook executions |
158 | 158 | */ |
159 | - public function execute(){ |
|
159 | + public function execute() { |
|
160 | 160 | $result = array(); |
161 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
161 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
162 | 162 | $params = func_get_args(); |
163 | 163 | $sqlquery = ''; |
164 | 164 | $sqlparams = array($this->hook_function); |
165 | - if($this->hook_context != 'all') { |
|
165 | + if ($this->hook_context != 'all') { |
|
166 | 166 | $sqlparams = array($this->hook_function, $this->hook_context); |
167 | 167 | $sqlquery = " OR majh_hook_context=?"; |
168 | 168 | } |
169 | - $module_names=Database::prepare( |
|
169 | + $module_names = Database::prepare( |
|
170 | 170 | "SELECT majh_module_name AS module, majh_module_priority AS priority FROM `##maj_hooks`". |
171 | 171 | " WHERE majh_hook_function = ? AND (majh_hook_context='all'".$sqlquery.") AND majh_status='enabled'". |
172 | 172 | " ORDER BY majh_module_priority ASC, module ASC" |
@@ -183,15 +183,15 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @return int Number of active modules |
185 | 185 | */ |
186 | - public function getNumberActiveModules(){ |
|
187 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
186 | + public function getNumberActiveModules() { |
|
187 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
188 | 188 | $sqlquery = ''; |
189 | 189 | $sqlparams = array($this->hook_function); |
190 | - if($this->hook_context != 'all') { |
|
190 | + if ($this->hook_context != 'all') { |
|
191 | 191 | $sqlparams = array($this->hook_function, $this->hook_context); |
192 | 192 | $sqlquery = " OR majh_hook_context=?"; |
193 | 193 | } |
194 | - $module_names=Database::prepare( |
|
194 | + $module_names = Database::prepare( |
|
195 | 195 | "SELECT majh_module_name AS modules FROM `##maj_hooks`". |
196 | 196 | " WHERE majh_hook_function = ? AND (majh_hook_context='all'".$sqlquery.") AND majh_status='enabled'" |
197 | 197 | )->execute($sqlparams)->fetchOneColumn(); |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | * |
206 | 206 | * @return bool True is active modules exist, false otherwise |
207 | 207 | */ |
208 | - public function hasAnyActiveModule(){ |
|
209 | - return ($this->getNumberActiveModules()>0); |
|
208 | + public function hasAnyActiveModule() { |
|
209 | + return ($this->getNumberActiveModules() > 0); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | } |