@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | 'generations' => 3, |
96 | 96 | 'layout' => PedigreeChartModule::PORTRAIT, |
97 | 97 | ]); |
98 | - $content = view('modules/charts/chart', [ |
|
98 | + $content = view('modules/charts/chart', [ |
|
99 | 99 | 'block_id' => $block_id, |
100 | 100 | 'chart_url' => $chart_url, |
101 | 101 | ]); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'generations' => 2, |
111 | 111 | 'chart_style' => DescendancyChartModule::CHART_STYLE_LIST, |
112 | 112 | ]); |
113 | - $content = view('modules/charts/chart', [ |
|
113 | + $content = view('modules/charts/chart', [ |
|
114 | 114 | 'block_id' => $block_id, |
115 | 115 | 'chart_url' => $chart_url, |
116 | 116 | ]); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | 'ajax' => true, |
125 | 125 | 'generations' => 2, |
126 | 126 | ]); |
127 | - $content = view('modules/charts/chart', [ |
|
127 | + $content = view('modules/charts/chart', [ |
|
128 | 128 | 'block_id' => $block_id, |
129 | 129 | 'chart_url' => $chart_url, |
130 | 130 | ]); |
@@ -103,11 +103,11 @@ |
||
103 | 103 | $record = GedcomRecord::getInstance('HEAD', $tree); |
104 | 104 | $fact = $record->getFirstFact('COPR'); |
105 | 105 | if ($fact instanceof Fact) { |
106 | - $COPR = "\n1 COPR " .$fact->value(); |
|
106 | + $COPR = "\n1 COPR " . $fact->value(); |
|
107 | 107 | } |
108 | - $fact = $record->getFirstFact('LANG'); |
|
108 | + $fact = $record->getFirstFact('LANG'); |
|
109 | 109 | if ($fact instanceof Fact) { |
110 | - $LANG = "\n1 LANG " .$fact->value(); |
|
110 | + $LANG = "\n1 LANG " . $fact->value(); |
|
111 | 111 | } |
112 | 112 | // Link to actual SUBM/SUBN records, if they exist |
113 | 113 | $subn = DB::table('other') |
@@ -52,7 +52,7 @@ |
||
52 | 52 | } |
53 | 53 | |
54 | 54 | // Did we emigrate or naturalise? |
55 | - foreach ($individual->facts(['IMMI' ,'EMIG', 'NATU'], true) as $fact) { |
|
55 | + foreach ($individual->facts(['IMMI', 'EMIG', 'NATU'], true) as $fact) { |
|
56 | 56 | if (Date::compare($fact->date(), $this->date()) <= 0) { |
57 | 57 | $place = $fact->place()->gedcomName(); |
58 | 58 | } |
@@ -2591,7 +2591,7 @@ |
||
2591 | 2591 | /** @var ModuleBlockInterface $module */ |
2592 | 2592 | $module = $this->module_service |
2593 | 2593 | ->findByComponent('block', $this->tree, Auth::user()) |
2594 | - ->filter(function (ModuleInterface $module) use ($block): bool { |
|
2594 | + ->filter(function (ModuleInterface $module) use ($block) : bool { |
|
2595 | 2595 | return $module->name() === $block && $module->name() !== 'html'; |
2596 | 2596 | }) |
2597 | 2597 | ->first(); |
@@ -241,7 +241,7 @@ |
||
241 | 241 | echo '<table cellspacing="0" cellpadding="0" border="0" >'; |
242 | 242 | foreach ($children as $i => $child) { |
243 | 243 | echo '<tr><td>'; |
244 | - $kids = $this->printDescendency($generation + 1, $child); |
|
244 | + $kids = $this->printDescendency($generation + 1, $child); |
|
245 | 245 | $numkids += $kids; |
246 | 246 | echo '</td>'; |
247 | 247 | // Print the lines |
@@ -256,7 +256,7 @@ |
||
256 | 256 | |
257 | 257 | // Create a source, to indicate the source of the data. |
258 | 258 | $filetext .= "0 @WEBTREES@ SOUR\n1 TITL " . WT_BASE_URL . "\n"; |
259 | - $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID')); |
|
259 | + $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID')); |
|
260 | 260 | if ($author !== null) { |
261 | 261 | $filetext .= '1 AUTH ' . $author->realName() . "\n"; |
262 | 262 | } |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | for ($j = 0; $j < $ct; $j++) { |
590 | 590 | if (strpos($match[$j][1], '@') === false) { |
591 | 591 | $source = e($match[$j][1] . preg_replace('/\n\d CONT ?/', "\n", $match[$j][2])); |
592 | - $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
592 | + $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
593 | 593 | } |
594 | 594 | } |
595 | 595 | // Find source for each fact |
@@ -607,7 +607,7 @@ discard block |
||
607 | 607 | } |
608 | 608 | $srec = substr($factrec, $spos1, $spos2 - $spos1); |
609 | 609 | $lt = preg_match_all("/$nlevel \w+/", $srec, $matches); |
610 | - $data .= '<div class="fact_SOUR">'; |
|
610 | + $data .= '<div class="fact_SOUR">'; |
|
611 | 611 | $elementID = Uuid::uuid4()->toString(); |
612 | 612 | if ($tree->getPreference('EXPAND_SOURCES')) { |
613 | 613 | $plusminus = 'icon-minus'; |
@@ -789,7 +789,7 @@ |
||
789 | 789 | $html .= '<p class="small text-muted">' . I18N::translate('Use this image for charts and on the individual’s page.') . '</p>'; |
790 | 790 | } elseif ($fact === 'TYPE' && $level === '3') { |
791 | 791 | //-- Build the selector for the Media 'TYPE' Fact |
792 | - $html .= '<select name="text[]"><option selected value="" ></option>'; |
|
792 | + $html .= '<select name="text[]"><option selected value="" ></option>'; |
|
793 | 793 | $selectedValue = strtolower($value); |
794 | 794 | if (!array_key_exists($selectedValue, GedcomTag::getFileFormTypes())) { |
795 | 795 | $html .= '<option selected value="' . e($value) . '" >' . e($value) . '</option>'; |
@@ -402,7 +402,7 @@ |
||
402 | 402 | |
403 | 403 | $newged = ''; |
404 | 404 | if (!empty($_POST['NAME'])) { |
405 | - $newged .= "\n1 NAME " . $_POST['NAME']; |
|
405 | + $newged .= "\n1 NAME " . $_POST['NAME']; |
|
406 | 406 | $name_facts = [ |
407 | 407 | 'TYPE', |
408 | 408 | 'NPFX', |