@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | } elseif ($fact === 'REPO') { |
648 | 648 | echo |
649 | 649 | '<div class="input-group">' . |
650 | - '<span class="input-group-btn"><button class="btn btn-secondary" type="button" data-toggle="modal" data-target="#modal-create-repository" data-element-id="' . $element_id . '" title="' . I18N::translate('Create a repository') . '"><i class="fa fa-plus"></i></button></span>' . self::formControlRepository(Individual::getInstance($value, $WT_TREE), ['id' => $element_id, 'name' => $element_name]) . |
|
650 | + '<span class="input-group-btn"><button class="btn btn-secondary" type="button" data-toggle="modal" data-target="#modal-create-repository" data-element-id="' . $element_id . '" title="' . I18N::translate('Create a repository') . '"><i class="fa fa-plus"></i></button></span>' . self::formControlRepository(Individual::getInstance($value, $WT_TREE), ['id' => $element_id, 'name' => $element_name]) . |
|
651 | 651 | '</div>'; |
652 | 652 | } elseif ($fact === 'RESN') { |
653 | 653 | echo Bootstrap4::select(FunctionsEdit::optionsRestrictions(true), $value, ['id' => $element_id, 'name' => $element_name]); |
@@ -775,7 +775,7 @@ discard block |
||
775 | 775 | } elseif ($fact === 'TYPE' && $level === 0) { |
776 | 776 | // NAME TYPE : hide text field and show a selection list |
777 | 777 | echo Bootstrap4::select(GedcomCodeName::getValues($person), $value, ['id' => $element_id, 'name' => $element_name, 'onchange' => 'onchange="document.getElementById(\'' . $element_id . '\').value=this.value;"']); |
778 | - echo '<script>document.getElementById("', $element_id, '").style.display="none";</script>'; } |
|
778 | + echo '<script>document.getElementById("', $element_id, '").style.display="none";</script>'; } |
|
779 | 779 | |
780 | 780 | // popup links |
781 | 781 | switch ($fact) { |
@@ -85,8 +85,7 @@ discard block |
||
85 | 85 | // Create the underlying PDO object |
86 | 86 | self::$pdo = new PDO( |
87 | 87 | (substr($DBHOST, 0, 1) === '/' ? |
88 | - "mysql:unix_socket={$DBHOST};dbname={$DBNAME}" : |
|
89 | - "mysql:host={$DBHOST};dbname={$DBNAME};port={$DBPORT}" |
|
88 | + "mysql:unix_socket={$DBHOST};dbname={$DBNAME}" : "mysql:host={$DBHOST};dbname={$DBNAME};port={$DBPORT}" |
|
90 | 89 | ), |
91 | 90 | $DBUSER, $DBPASS, |
92 | 91 | [ |
@@ -161,7 +160,7 @@ discard block |
||
161 | 160 | } |
162 | 161 | } |
163 | 162 | $milliseconds = sprintf('%.3f', $microseconds * 1000); |
164 | - self::$log[] = '<tr><td>' .$stack . '</td><td>' . $query . '</td><td>' . $rows . '</td><td>' . $milliseconds . '</td></tr>'; |
|
163 | + self::$log[] = '<tr><td>' . $stack . '</td><td>' . $query . '</td><td>' . $rows . '</td><td>' . $milliseconds . '</td></tr>'; |
|
165 | 164 | } |
166 | 165 | |
167 | 166 | /** |
@@ -297,9 +297,9 @@ |
||
297 | 297 | |
298 | 298 | if ($sosa == 0 && Auth::isEditor($family->getTree())) { |
299 | 299 | echo '<br>'; |
300 | - echo '<a href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() .'&xref=' . $family->getXref() . '&gender=U">' . I18N::translate('Add a child to this family') . '</a>'; |
|
301 | - echo ' <a class="icon-sex_m_15x15" href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() .'&xref=' . $family->getXref() . '&gender=M" title="', I18N::translate('son'), '"></a>'; |
|
302 | - echo ' <a class="icon-sex_f_15x15" href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() .'&xref=' . $family->getXref() . '&gender=F" title="', I18N::translate('daughter'), '"></a>'; |
|
300 | + echo '<a href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() . '&xref=' . $family->getXref() . '&gender=U">' . I18N::translate('Add a child to this family') . '</a>'; |
|
301 | + echo ' <a class="icon-sex_m_15x15" href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() . '&xref=' . $family->getXref() . '&gender=M" title="', I18N::translate('son'), '"></a>'; |
|
302 | + echo ' <a class="icon-sex_f_15x15" href="edit_interface.php?action=add_child_to_family&ged=' . $family->getTree()->getNameHtml() . '&xref=' . $family->getXref() . '&gender=F" title="', I18N::translate('daughter'), '"></a>'; |
|
303 | 303 | echo '<br><br>'; |
304 | 304 | } |
305 | 305 | echo '</td>'; |
@@ -77,11 +77,11 @@ |
||
77 | 77 | $menu->addSubmenu(new Menu(I18N::translate('Change family members'), 'edit_interface.php?action=changefamily&ged=' . $this->record->getTree()->getNameHtml() . '&xref=' . $this->record->getXref(), 'menu-fam-change')); |
78 | 78 | |
79 | 79 | // edit_fam / add child |
80 | - $menu->addSubmenu(new Menu(I18N::translate('Add a child to this family'), 'edit_interface.php?action=add_child_to_family&ged=' . $this->record->getTree()->getNameHtml() .'&xref=' . $this->record->getXref() . '&gender=U', 'menu-fam-addchil')); |
|
80 | + $menu->addSubmenu(new Menu(I18N::translate('Add a child to this family'), 'edit_interface.php?action=add_child_to_family&ged=' . $this->record->getTree()->getNameHtml() . '&xref=' . $this->record->getXref() . '&gender=U', 'menu-fam-addchil')); |
|
81 | 81 | |
82 | 82 | // edit_fam / reorder_children |
83 | 83 | if ($this->record->getNumberOfChildren() > 1) { |
84 | - $menu->addSubmenu(new Menu(I18N::translate('Re-order children'), 'edit_interface.php?action=reorder_children&ged=' . $this->record->getTree()->getNameHtml() .'&xref=' . $this->record->getXref(), 'menu-fam-orderchil')); |
|
84 | + $menu->addSubmenu(new Menu(I18N::translate('Re-order children'), 'edit_interface.php?action=reorder_children&ged=' . $this->record->getTree()->getNameHtml() . '&xref=' . $this->record->getXref(), 'menu-fam-orderchil')); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // delete |
@@ -1080,7 +1080,7 @@ discard block |
||
1080 | 1080 | "SELECT CONCAT(l_to, '@', l_file), COUNT(*) FROM `##sources` JOIN `##link` ON l_from = s_id AND l_file = s_file AND l_type = 'NOTE' GROUP BY l_to, l_file" |
1081 | 1081 | )->fetchAssoc(); |
1082 | 1082 | |
1083 | - $html = ''; |
|
1083 | + $html = ''; |
|
1084 | 1084 | $html .= '<table ' . Datatables::noteTableAttributes() . '><thead><tr>'; |
1085 | 1085 | $html .= '<th>' . I18N::translate('Title') . '</th>'; |
1086 | 1086 | $html .= '<th>' . I18N::translate('Individuals') . '</th>'; |
@@ -1146,7 +1146,7 @@ discard block |
||
1146 | 1146 | )->fetchAssoc(); |
1147 | 1147 | |
1148 | 1148 | $html = ''; |
1149 | - $html .= '<table ' . Datatables::repositoryTableAttributes() . '><thead><tr>'; $html .= '<th>' . I18N::translate('Repository name') . '</th>'; |
|
1149 | + $html .= '<table ' . Datatables::repositoryTableAttributes() . '><thead><tr>'; $html .= '<th>' . I18N::translate('Repository name') . '</th>'; |
|
1150 | 1150 | $html .= '<th>' . I18N::translate('Sources') . '</th>'; |
1151 | 1151 | $html .= '<th>' . I18N::translate('Last change') . '</th>'; |
1152 | 1152 | $html .= '<th>' . I18N::translate('Delete') . '</th>'; |
@@ -1573,7 +1573,7 @@ discard block |
||
1573 | 1573 | if ($endjd === $startjd) { |
1574 | 1574 | $html .= I18N::translate('No events exist for tomorrow.'); |
1575 | 1575 | } else { |
1576 | - $html .= /* I18N: translation for %s==1 is unused; it is translated separately as “tomorrow” */ I18N::plural('No events exist for the next %s day.', 'No events exist for the next %s days.', $endjd - $startjd + 1, I18N::number($endjd - $startjd + 1)); |
|
1576 | + $html .= /* I18N: translation for %s==1 is unused; it is translated separately as “tomorrow” */ I18N::plural('No events exist for the next %s day.', 'No events exist for the next %s days.', $endjd - $startjd + 1, I18N::number($endjd - $startjd + 1)); |
|
1577 | 1577 | } |
1578 | 1578 | } else { |
1579 | 1579 | if ($endjd === $startjd) { |
@@ -1505,7 +1505,7 @@ |
||
1505 | 1505 | '0' => I18N::translateContext('Show the [first/last] [N] parts of a place name.', 'first'), |
1506 | 1506 | '1' => I18N::translateContext('Show the [first/last] [N] parts of a place name.', 'last'), |
1507 | 1507 | ], $WT_TREE->getPreference('SHOW_PEDIGREE_PLACES_SUFFIX', ['name' => 'SHOW_PEDIGREE_PLACES_SUFFIX'])), |
1508 | - Bootstrap4::select(FunctionsEdit::numericOptions(range(1,9)), $WT_TREE->getPreference('SHOW_PEDIGREE_PLACES'), ['name' => 'SHOW_PEDIGREE_PLACES']) |
|
1508 | + Bootstrap4::select(FunctionsEdit::numericOptions(range(1, 9)), $WT_TREE->getPreference('SHOW_PEDIGREE_PLACES'), ['name' => 'SHOW_PEDIGREE_PLACES']) |
|
1509 | 1509 | ) ?> |
1510 | 1510 | <p class="small text-muted"> |
1511 | 1511 | <?= /* I18N: Help text for the “Abbreviate place names” configuration setting */ I18N::translate('Place names are frequently too long to fit on charts, lists, etc. They can be abbreviated by showing just the first few parts of the name, such as <i>village, county</i>, or the last few part of it, such as <i>region, country</i>.') ?> |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public function getTabs() { |
97 | 97 | $active_tabs = Module::getActiveTabs($this->record->getTree()); |
98 | 98 | |
99 | - return array_filter($active_tabs, function(ModuleTabInterface $tab) { return $tab->hasTabContent(); }); |
|
99 | + return array_filter($active_tabs, function (ModuleTabInterface $tab) { return $tab->hasTabContent(); }); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | if ($n === 0) { |
143 | 143 | $content_class = 'collapse show'; |
144 | - $aria = 'true'; |
|
144 | + $aria = 'true'; |
|
145 | 145 | } |
146 | 146 | if ($fact->isPendingDeletion()) { |
147 | 147 | $container_class .= ' old'; |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | } |
244 | 244 | |
245 | 245 | if ($individual->canEdit() && !$fact->isPendingDeletion()) { |
246 | - $edit_links = FontAwesome::linkIcon('edit', I18N::translate('Edit the gender'), ['href' => 'edit_interface.php?action=edit&xref=' . $individual->getXref() . '&fact_id=' . $fact->getFactId() . '&ged=' . $individual->getTree()->getNameHtml() ]); |
|
246 | + $edit_links = FontAwesome::linkIcon('edit', I18N::translate('Edit the gender'), ['href' => 'edit_interface.php?action=edit&xref=' . $individual->getXref() . '&fact_id=' . $fact->getFactId() . '&ged=' . $individual->getTree()->getNameHtml()]); |
|
247 | 247 | |
248 | 248 | } else { |
249 | 249 | $edit_links = ''; |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | <div class="' . $container_class . '"> |
254 | 254 | <div class="card-header" role="tab" id="name-header-add"> |
255 | 255 | <div class="card-title mb-0"> |
256 | - <b>' . I18N::translate('Gender') . '</b> ' . $sex . $edit_links . ' |
|
256 | + <b>' . I18N::translate('Gender') . '</b> ' . $sex . $edit_links . ' |
|
257 | 257 | </div> |
258 | 258 | </div> |
259 | 259 | </div>'; |