@@ -55,15 +55,15 @@ discard block |
||
| 55 | 55 | |
| 56 | 56 | $this->checkIndividualAccess($individual); |
| 57 | 57 | |
| 58 | - $maximum_generations = (int)$tree->getPreference('MAX_DESCENDANCY_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 59 | - $default_generations = (int)$tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 58 | + $maximum_generations = (int) $tree->getPreference('MAX_DESCENDANCY_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 59 | + $default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 60 | 60 | |
| 61 | - $generations = (int)$request->get('generations', $default_generations); |
|
| 61 | + $generations = (int) $request->get('generations', $default_generations); |
|
| 62 | 62 | |
| 63 | 63 | $generations = min($generations, $maximum_generations); |
| 64 | 64 | $generations = max($generations, self::MINIMUM_GENERATIONS); |
| 65 | 65 | |
| 66 | - $show_spouse = (bool)$request->get('show_spouse'); |
|
| 66 | + $show_spouse = (bool) $request->get('show_spouse'); |
|
| 67 | 67 | |
| 68 | 68 | /* I18N: %s is an individual’s name */ |
| 69 | 69 | $title = I18N::translate('Hourglass chart of %s', $individual->getFullName()); |
@@ -95,14 +95,14 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | $this->checkIndividualAccess($individual); |
| 97 | 97 | |
| 98 | - $maximum_generations = (int)$tree->getPreference('MAX_DESCENDANCY_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 99 | - $default_generations = (int)$tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 98 | + $maximum_generations = (int) $tree->getPreference('MAX_DESCENDANCY_GENERATIONS', self::DEFAULT_MAXIMUM_GENERATIONS); |
|
| 99 | + $default_generations = (int) $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS', self::DEFAULT_GENERATIONS); |
|
| 100 | 100 | |
| 101 | - $generations = (int)$request->get('generations', $default_generations); |
|
| 101 | + $generations = (int) $request->get('generations', $default_generations); |
|
| 102 | 102 | $generations = min($generations, $maximum_generations); |
| 103 | 103 | $generations = max($generations, self::MINIMUM_GENERATIONS); |
| 104 | 104 | |
| 105 | - $show_spouse = (bool)$request->get('show_spouse'); |
|
| 105 | + $show_spouse = (bool) $request->get('show_spouse'); |
|
| 106 | 106 | |
| 107 | 107 | ob_start(); |
| 108 | 108 | $this->printDescendency($individual, 1, $generations, $show_spouse, true); |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | return new Response(view('hourglass-chart', [ |
| 116 | 116 | 'descendants' => $descendants, |
| 117 | 117 | 'ancestors' => $ancestors, |
| 118 | - 'bhalfheight' => (int)(Theme::theme()->parameter('chart-box-y') / 2), |
|
| 118 | + 'bhalfheight' => (int) (Theme::theme()->parameter('chart-box-y') / 2), |
|
| 119 | 119 | ])); |
| 120 | 120 | } |
| 121 | 121 | |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | |
| 135 | 135 | $this->checkIndividualAccess($individual); |
| 136 | 136 | |
| 137 | - $show_spouse = (bool)$request->get('show_spouse'); |
|
| 137 | + $show_spouse = (bool) $request->get('show_spouse'); |
|
| 138 | 138 | |
| 139 | 139 | ob_start(); |
| 140 | 140 | $this->printPersonPedigree($individual, 0, 1, $show_spouse); |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $xref = $request->get('xref'); |
| 157 | 157 | $individual = Individual::getInstance($xref, $tree); |
| 158 | 158 | |
| 159 | - $show_spouse = (bool)$request->get('show_spouse'); |
|
| 159 | + $show_spouse = (bool) $request->get('show_spouse'); |
|
| 160 | 160 | |
| 161 | 161 | ob_start(); |
| 162 | 162 | $this->printDescendency($individual, 1, 2, $show_spouse, false); |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | echo '<a href="' . e(route('hourglass', [ |
| 310 | 310 | 'xref' => $spouse->getXref(), |
| 311 | 311 | 'generations' => $generations, |
| 312 | - 'show_spouse' => (int)$show_spouse, |
|
| 312 | + 'show_spouse' => (int) $show_spouse, |
|
| 313 | 313 | 'ged' => $spouse->getTree()->getName(), |
| 314 | 314 | ])) . '" class="name1">' . $spouse->getFullName() . '</a>'; |
| 315 | 315 | } |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | echo '<a href="' . e(route('hourglass', [ |
| 318 | 318 | 'xref' => $child->getXref(), |
| 319 | 319 | 'generations' => $generations, |
| 320 | - 'show_spouse' => (int)$show_spouse, |
|
| 320 | + 'show_spouse' => (int) $show_spouse, |
|
| 321 | 321 | 'ged' => $child->getTree()->getName(), |
| 322 | 322 | ])) . '" class="name1">' . $child->getFullName() . '</a>'; |
| 323 | 323 | } |
@@ -332,7 +332,7 @@ discard block |
||
| 332 | 332 | echo '<a href="' . e(route('hourglass', [ |
| 333 | 333 | 'xref' => $husb->getXref(), |
| 334 | 334 | 'generations' => $generations, |
| 335 | - 'show_spouse' => (int)$show_spouse, |
|
| 335 | + 'show_spouse' => (int) $show_spouse, |
|
| 336 | 336 | 'ged' => $husb->getTree()->getName(), |
| 337 | 337 | ])) . '" class="name1">' . $husb->getFullName() . '</a>'; |
| 338 | 338 | } |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | echo '<a href="' . e(route('hourglass', [ |
| 342 | 342 | 'xref' => $wife->getXref(), |
| 343 | 343 | 'generations' => $generations, |
| 344 | - 'show_spouse' => (int)$show_spouse, |
|
| 344 | + 'show_spouse' => (int) $show_spouse, |
|
| 345 | 345 | 'ged' => $wife->getTree()->getName(), |
| 346 | 346 | ])) . '" class="name1">' . $wife->getFullName() . '</a>'; |
| 347 | 347 | } |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | echo '<a href="' . e(route('hourglass', [ |
| 361 | 361 | 'xref' => $child->getXref(), |
| 362 | 362 | 'generations' => $generations, |
| 363 | - 'show_spouse' => (int)$show_spouse, |
|
| 363 | + 'show_spouse' => (int) $show_spouse, |
|
| 364 | 364 | 'ged' => $child->getTree()->getName(), |
| 365 | 365 | ])) . '" class="name1">' . $child->getFullName() . '</a>'; |
| 366 | 366 | } |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | 'href' => '#', |
| 424 | 424 | 'data-route' => 'hourglass-add-asc', |
| 425 | 425 | 'data-xref' => $ARID, |
| 426 | - 'data-spouses' => (int)$show_spouse, |
|
| 426 | + 'data-spouses' => (int) $show_spouse, |
|
| 427 | 427 | 'data-tree' => $family->getHusband()->getTree()->getName(), |
| 428 | 428 | ]); |
| 429 | 429 | } |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | 'href' => '#', |
| 461 | 461 | 'data-route' => 'hourglass-add-asc', |
| 462 | 462 | 'data-xref' => $ARID, |
| 463 | - 'data-spouses' => (int)$show_spouse, |
|
| 463 | + 'data-spouses' => (int) $show_spouse, |
|
| 464 | 464 | 'data-tree' => $family->getWife()->getTree()->getName(), |
| 465 | 465 | ]); |
| 466 | 466 | } |
@@ -176,14 +176,14 @@ discard block |
||
| 176 | 176 | case '_BIRT_CHIL': |
| 177 | 177 | $children[$fact->getParent()->getXref()] = true; |
| 178 | 178 | /* I18N: Abbreviation for "number %s" */ |
| 179 | - $label .= '<br>' . I18N::translate('#%s', count($children)); |
|
| 179 | + $label .= '<br>' . I18N::translate('#%s', count($children)); |
|
| 180 | 180 | break; |
| 181 | 181 | case '_BIRT_GCHI': |
| 182 | 182 | case '_BIRT_GCH1': |
| 183 | 183 | case '_BIRT_GCH2': |
| 184 | 184 | $grandchildren[$fact->getParent()->getXref()] = true; |
| 185 | 185 | /* I18N: Abbreviation for "number %s" */ |
| 186 | - $label .= '<br>' . I18N::translate('#%s', count($grandchildren)); |
|
| 186 | + $label .= '<br>' . I18N::translate('#%s', count($grandchildren)); |
|
| 187 | 187 | break; |
| 188 | 188 | } |
| 189 | 189 | |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | for ($j = 0; $j < $ct; $j++) { |
| 578 | 578 | if (strpos($match[$j][1], '@') === false) { |
| 579 | 579 | $source = e($match[$j][1] . preg_replace('/\n\d CONT ?/', "\n", $match[$j][2])); |
| 580 | - $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
| 580 | + $data .= '<div class="fact_SOUR"><span class="label">' . I18N::translate('Source') . ':</span> <span class="field" dir="auto">' . Filter::formatText($source, $tree) . '</span></div>'; |
|
| 581 | 581 | } |
| 582 | 582 | } |
| 583 | 583 | // Find source for each fact |
@@ -595,7 +595,7 @@ discard block |
||
| 595 | 595 | } |
| 596 | 596 | $srec = substr($factrec, $spos1, $spos2 - $spos1); |
| 597 | 597 | $lt = preg_match_all("/$nlevel \w+/", $srec, $matches); |
| 598 | - $data .= '<div class="fact_SOUR">'; |
|
| 598 | + $data .= '<div class="fact_SOUR">'; |
|
| 599 | 599 | $elementID = Uuid::uuid4()->toString(); |
| 600 | 600 | if ($tree->getPreference('EXPAND_SOURCES')) { |
| 601 | 601 | $plusminus = 'icon-minus'; |
@@ -175,7 +175,7 @@ |
||
| 175 | 175 | 'words' => I18N::translate('Match the exact text, unless it occurs in the middle of a word.'), |
| 176 | 176 | 'wildcards' => I18N::translate('Use a “?” to match a single character, use “*” to match zero or more characters.'), |
| 177 | 177 | /* I18N: http://en.wikipedia.org/wiki/Regular_expression */ |
| 178 | - 'regex' => I18N::translate('Regular expressions are an advanced pattern matching technique.') . '<br>' . I18N::translate('See %s for more information.', '<a href="http://php.net/manual/regexp.reference.php">php.net/manual/regexp.reference.php</a>'), |
|
| 178 | + 'regex' => I18N::translate('Regular expressions are an advanced pattern matching technique.') . '<br>' . I18N::translate('See %s for more information.', '<a href="http://php.net/manual/regexp.reference.php">php.net/manual/regexp.reference.php</a>'), |
|
| 179 | 179 | ]; |
| 180 | 180 | |
| 181 | 181 | return |
@@ -52,9 +52,9 @@ discard block |
||
| 52 | 52 | { |
| 53 | 53 | $this->checkModuleIsActive($tree, 'lifespans_chart'); |
| 54 | 54 | |
| 55 | - $xrefs = (array)$request->get('xrefs', []); |
|
| 55 | + $xrefs = (array) $request->get('xrefs', []); |
|
| 56 | 56 | $addxref = $request->get('addxref', ''); |
| 57 | - $addfam = (bool)$request->get('addfam', false); |
|
| 57 | + $addfam = (bool) $request->get('addfam', false); |
|
| 58 | 58 | $placename = $request->get('placename', ''); |
| 59 | 59 | $start = $request->get('start', ''); |
| 60 | 60 | $end = $request->get('end', ''); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | { |
| 112 | 112 | $this->checkModuleIsActive($tree, 'lifespans_chart'); |
| 113 | 113 | |
| 114 | - $xrefs = (array)$request->get('xrefs', []); |
|
| 114 | + $xrefs = (array) $request->get('xrefs', []); |
|
| 115 | 115 | $xrefs = array_unique($xrefs); |
| 116 | 116 | |
| 117 | 117 | /** @var Individual[] $individuals */ |
@@ -131,8 +131,8 @@ discard block |
||
| 131 | 131 | $subtitle = $request->get('subtitle'); |
| 132 | 132 | |
| 133 | 133 | // Round to whole decades |
| 134 | - $start_year = (int)floor($this->minYear($individuals) / 10) * 10; |
|
| 135 | - $end_year = (int)ceil($this->maxYear($individuals) / 10) * 10; |
|
| 134 | + $start_year = (int) floor($this->minYear($individuals) / 10) * 10; |
|
| 135 | + $end_year = (int) ceil($this->maxYear($individuals) / 10) * 10; |
|
| 136 | 136 | |
| 137 | 137 | $lifespans = $this->layoutIndividuals($individuals); |
| 138 | 138 | |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | 'U' => new ColorGenerator(120, self::SATURATION, self::LIGHTNESS, self::ALPHA, self::RANGE), |
| 168 | 168 | ]; |
| 169 | 169 | |
| 170 | - $current_year = (int)date('Y'); |
|
| 170 | + $current_year = (int) date('Y'); |
|
| 171 | 171 | |
| 172 | 172 | // Latest year used in each row |
| 173 | 173 | $rows = []; |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | // Fill the row up to the year (leaving a small gap) |
| 197 | 197 | $rows[$next_row] = $death_year; |
| 198 | 198 | |
| 199 | - $lifespans[] = (object)[ |
|
| 199 | + $lifespans[] = (object) [ |
|
| 200 | 200 | 'background' => $colors[$individual->getSex()]->getNextColor(), |
| 201 | 201 | 'birth_year' => $birth_year, |
| 202 | 202 | 'death_year' => $death_year, |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | $year = $this->jdToYear($jd); |
| 226 | 226 | |
| 227 | 227 | // Don't show future dates |
| 228 | - return min($year, (int)date('Y')); |
|
| 228 | + return min($year, (int) date('Y')); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | /** |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | ->setPreference('sessiontime', '0'); |
| 119 | 119 | |
| 120 | 120 | // Create a dummy user, so we can send messages from the tree. |
| 121 | - $sender = new User((object)[ |
|
| 121 | + $sender = new User((object) [ |
|
| 122 | 122 | 'user_id' => null, |
| 123 | 123 | 'user_name' => '', |
| 124 | 124 | 'real_name' => $tree->getTitle(), |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | ); |
| 138 | 138 | |
| 139 | 139 | // Tell the genealogy contact about the registration. |
| 140 | - $webmaster = User::find((int)$tree->getPreference('WEBMASTER_USER_ID')); |
|
| 140 | + $webmaster = User::find((int) $tree->getPreference('WEBMASTER_USER_ID')); |
|
| 141 | 141 | |
| 142 | 142 | if ($webmaster !== null) { |
| 143 | 143 | I18N::init($webmaster->getPreference('language')); |
@@ -62,9 +62,9 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | $this->checkIndividualAccess($individual); |
| 64 | 64 | |
| 65 | - $chart_style = (int)$request->get('chart_style', self::DEFAULT_STYLE); |
|
| 66 | - $fan_width = (int)$request->get('fan_width', self::DEFAULT_WIDTH); |
|
| 67 | - $generations = (int)$request->get('generations', self::DEFAULT_GENERATIONS); |
|
| 65 | + $chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE); |
|
| 66 | + $fan_width = (int) $request->get('fan_width', self::DEFAULT_WIDTH); |
|
| 67 | + $generations = (int) $request->get('generations', self::DEFAULT_GENERATIONS); |
|
| 68 | 68 | |
| 69 | 69 | $fan_width = min($fan_width, self::MAXIMUM_WIDTH); |
| 70 | 70 | $fan_width = max($fan_width, self::MINIMUM_WIDTH); |
@@ -106,9 +106,9 @@ discard block |
||
| 106 | 106 | |
| 107 | 107 | $this->checkIndividualAccess($individual); |
| 108 | 108 | |
| 109 | - $chart_style = (int)$request->get('chart_style', self::DEFAULT_STYLE); |
|
| 110 | - $fan_width = (int)$request->get('fan_width', self::DEFAULT_WIDTH); |
|
| 111 | - $generations = (int)$request->get('generations', self::DEFAULT_GENERATIONS); |
|
| 109 | + $chart_style = (int) $request->get('chart_style', self::DEFAULT_STYLE); |
|
| 110 | + $fan_width = (int) $request->get('fan_width', self::DEFAULT_WIDTH); |
|
| 111 | + $generations = (int) $request->get('generations', self::DEFAULT_GENERATIONS); |
|
| 112 | 112 | |
| 113 | 113 | $fan_width = min($fan_width, self::MAXIMUM_WIDTH); |
| 114 | 114 | $fan_width = max($fan_width, self::MINIMUM_WIDTH); |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | $scale = $fanw / 640; |
| 138 | 138 | |
| 139 | 139 | // Create the image |
| 140 | - $image = imagecreate((int)$fanw, (int)$fanh); |
|
| 140 | + $image = imagecreate((int) $fanw, (int) $fanh); |
|
| 141 | 141 | |
| 142 | 142 | // Create colors |
| 143 | 143 | $transparent = imagecolorallocate($image, 0, 0, 0); |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | ]; |
| 155 | 155 | |
| 156 | 156 | |
| 157 | - imagefilledrectangle($image, 0, 0, (int)$fanw, (int)$fanh, $transparent); |
|
| 157 | + imagefilledrectangle($image, 0, 0, (int) $fanw, (int) $fanh, $transparent); |
|
| 158 | 158 | |
| 159 | 159 | $fandeg = 90 * $chart_style; |
| 160 | 160 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | // clean current generation area |
| 170 | 170 | $deg2 = 360 + ($fandeg - 180) / 2; |
| 171 | 171 | $deg1 = $deg2 - $fandeg; |
| 172 | - imagefilledarc($image, (int)$cx, (int)$cy, (int)$rx, (int)$rx, (int)$deg1, (int)$deg2, $backgrounds['U'], IMG_ARC_PIE); |
|
| 172 | + imagefilledarc($image, (int) $cx, (int) $cy, (int) $rx, (int) $rx, (int) $deg1, (int) $deg2, $backgrounds['U'], IMG_ARC_PIE); |
|
| 173 | 173 | $rx -= 3; |
| 174 | 174 | |
| 175 | 175 | // calculate new angle |
@@ -199,15 +199,15 @@ discard block |
||
| 199 | 199 | |
| 200 | 200 | $background = $backgrounds[$person->getSex()]; |
| 201 | 201 | |
| 202 | - imagefilledarc($image, (int)$cx, (int)$cy, (int)$rx, (int)$rx, (int)$deg1, (int)$deg2, $background, IMG_ARC_PIE); |
|
| 202 | + imagefilledarc($image, (int) $cx, (int) $cy, (int) $rx, (int) $rx, (int) $deg1, (int) $deg2, $background, IMG_ARC_PIE); |
|
| 203 | 203 | |
| 204 | 204 | // split and center text by lines |
| 205 | - $wmax = (int)($angle * 7 / 7 * $scale); |
|
| 205 | + $wmax = (int) ($angle * 7 / 7 * $scale); |
|
| 206 | 206 | $wmax = min($wmax, 35 * $scale); |
| 207 | 207 | if ($gen == 0) { |
| 208 | 208 | $wmax = min($wmax, 17 * $scale); |
| 209 | 209 | } |
| 210 | - $text = $this->splitAlignText($text, (int)$wmax); |
|
| 210 | + $text = $this->splitAlignText($text, (int) $wmax); |
|
| 211 | 211 | |
| 212 | 212 | // text angle |
| 213 | 213 | $tangle = 270 - ($deg1 + $angle / 2); |
@@ -376,7 +376,7 @@ discard block |
||
| 376 | 376 | } |
| 377 | 377 | $line .= "$word"; |
| 378 | 378 | } else { |
| 379 | - $p = max(0, (int)(($maxlen - $len) / 2)); |
|
| 379 | + $p = max(0, (int) (($maxlen - $len) / 2)); |
|
| 380 | 380 | if (!empty($line)) { |
| 381 | 381 | $line = str_repeat(' ', $p) . $line; // center alignment using spaces |
| 382 | 382 | $text .= $line . "\n"; |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | if (in_array(ord($line{0}), $RTLOrd)) { |
| 392 | 392 | $len /= 2; |
| 393 | 393 | } |
| 394 | - $p = max(0, (int)(($maxlen - $len) / 2)); |
|
| 394 | + $p = max(0, (int) (($maxlen - $len) / 2)); |
|
| 395 | 395 | $line = str_repeat(' ', $p) . $line; // center alignment using spaces |
| 396 | 396 | $text .= $line; |
| 397 | 397 | } |
@@ -411,9 +411,9 @@ discard block |
||
| 411 | 411 | { |
| 412 | 412 | return imagecolorallocate( |
| 413 | 413 | $image, |
| 414 | - (int)hexdec(substr($css_color, 0, 2)), |
|
| 415 | - (int)hexdec(substr($css_color, 2, 2)), |
|
| 416 | - (int)hexdec(substr($css_color, 4, 2)) |
|
| 414 | + (int) hexdec(substr($css_color, 0, 2)), |
|
| 415 | + (int) hexdec(substr($css_color, 2, 2)), |
|
| 416 | + (int) hexdec(substr($css_color, 4, 2)) |
|
| 417 | 417 | ); |
| 418 | 418 | } |
| 419 | 419 | |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | $z_axis = $this->axisAll(); |
| 577 | 577 | // The stats query doesn't have an "all" function, so query M/F/U separately |
| 578 | 578 | foreach (['M', 'F', 'U'] as $sex) { |
| 579 | - $rows = $stats->statsMarrAgeQuery(false, $sex); |
|
| 579 | + $rows = $stats->statsMarrAgeQuery(false, $sex); |
|
| 580 | 580 | $indi = []; |
| 581 | 581 | foreach ($rows as $row) { |
| 582 | 582 | if (!in_array($row->d_gid, $indi)) { |
@@ -589,7 +589,7 @@ discard block |
||
| 589 | 589 | case self::Z_AXIS_SEX: |
| 590 | 590 | $z_axis = $this->axisSexes(); |
| 591 | 591 | foreach (array_keys($z_axis) as $sex) { |
| 592 | - $rows = $stats->statsMarrAgeQuery(false, $sex); |
|
| 592 | + $rows = $stats->statsMarrAgeQuery(false, $sex); |
|
| 593 | 593 | $indi = []; |
| 594 | 594 | foreach ($rows as $row) { |
| 595 | 595 | if (!in_array($row->d_gid, $indi)) { |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | // The stats query doesn't have an "all" function, so query M/F/U separately |
| 606 | 606 | foreach (['M', 'F', 'U'] as $sex) { |
| 607 | 607 | $prev_boundary = 0; |
| 608 | - $indi = []; |
|
| 608 | + $indi = []; |
|
| 609 | 609 | foreach (array_keys($z_axis) as $boundary) { |
| 610 | 610 | $rows = $stats->statsMarrAgeQuery(false, $sex, $prev_boundary, $boundary); |
| 611 | 611 | foreach ($rows as $row) { |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | class PedigreeMapModule extends AbstractModule implements ModuleChartInterface |
| 37 | 37 | { |
| 38 | - const LINE_COLORS = [ |
|
| 38 | + const LINE_COLORS = [ |
|
| 39 | 39 | '#FF0000', |
| 40 | 40 | // Red |
| 41 | 41 | '#00FF00', |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | $color = self::LINE_COLORS[log($id, 2) % $color_count]; |
| 141 | 141 | $icon['color'] = $color; //make icon color the same as the line |
| 142 | 142 | $sosa_points[$id] = $event->getLatLonJSArray(); |
| 143 | - $sosa_parent = (int)floor($id / 2); |
|
| 143 | + $sosa_parent = (int) floor($id / 2); |
|
| 144 | 144 | if (array_key_exists($sosa_parent, $sosa_points)) { |
| 145 | 145 | // Would like to use a GeometryCollection to hold LineStrings |
| 146 | 146 | // rather than generate polylines but the MarkerCluster library |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | 'icon' => $icon, |
| 169 | 169 | 'tooltip' => $event->toolTip(), |
| 170 | 170 | 'summary' => view('modules/pedigree-map/event-sidebar', $event->shortSummary('pedigree', $id)), |
| 171 | - 'zoom' => (int)$event->getZoom(), |
|
| 171 | + 'zoom' => (int) $event->getZoom(), |
|
| 172 | 172 | ], |
| 173 | 173 | ]; |
| 174 | 174 | } |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | { |
| 189 | 189 | $xref = $request->get('reference'); |
| 190 | 190 | $individual = Individual::getInstance($xref, $tree); |
| 191 | - $generations = (int)$request->get( |
|
| 191 | + $generations = (int) $request->get( |
|
| 192 | 192 | 'generations', |
| 193 | 193 | $tree->getPreference('DEFAULT_PEDIGREE_GENERATIONS') |
| 194 | 194 | ); |
@@ -241,14 +241,14 @@ discard block |
||
| 241 | 241 | function ($item) { |
| 242 | 242 | return preg_replace('/[^a-z\d]/i', '', strtolower($item)); |
| 243 | 243 | }, |
| 244 | - (array)$provider->styles |
|
| 244 | + (array) $provider->styles |
|
| 245 | 245 | ); |
| 246 | 246 | |
| 247 | - $key = preg_replace('/[^a-z\d]/i', '', strtolower((string)$provider->name)); |
|
| 247 | + $key = preg_replace('/[^a-z\d]/i', '', strtolower((string) $provider->name)); |
|
| 248 | 248 | |
| 249 | 249 | self::$map_providers[$key] = [ |
| 250 | - 'name' => (string)$provider->name, |
|
| 251 | - 'styles' => array_combine($style_keys, (array)$provider->styles), |
|
| 250 | + 'name' => (string) $provider->name, |
|
| 251 | + 'styles' => array_combine($style_keys, (array) $provider->styles), |
|
| 252 | 252 | ]; |
| 253 | 253 | } |
| 254 | 254 | } catch (Exception $ex) { |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | 'provider' => 'openstreetmap', |
| 258 | 258 | 'style' => 'mapnik', |
| 259 | 259 | ]; |
| 260 | - self::$map_providers = [ |
|
| 260 | + self::$map_providers = [ |
|
| 261 | 261 | 'openstreetmap' => [ |
| 262 | 262 | 'name' => 'OpenStreetMap', |
| 263 | 263 | 'styles' => ['mapnik' => 'Mapnik'], |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | throw new IndividualAccessDeniedException(); |
| 319 | 319 | } |
| 320 | 320 | |
| 321 | - return (object)[ |
|
| 321 | + return (object) [ |
|
| 322 | 322 | 'name' => 'modules/pedigree-map/pedigree-map-page', |
| 323 | 323 | 'data' => [ |
| 324 | 324 | 'module' => $this->getName(), |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $input['control'] = FunctionsEdit::formControlSource($tree, $source, $attributes + ['required' => 'true']); |
| 116 | 116 | break; |
| 117 | 117 | case 'DATE': |
| 118 | - $attributes += [ |
|
| 118 | + $attributes += [ |
|
| 119 | 119 | 'type' => 'text', |
| 120 | 120 | 'value' => $input['default'], |
| 121 | 121 | ]; |
@@ -129,16 +129,16 @@ discard block |
||
| 129 | 129 | default: |
| 130 | 130 | switch ($input['type']) { |
| 131 | 131 | case 'text': |
| 132 | - $attributes += [ |
|
| 132 | + $attributes += [ |
|
| 133 | 133 | 'type' => 'text', |
| 134 | 134 | 'value' => $input['default'], |
| 135 | 135 | ]; |
| 136 | 136 | $input['control'] = '<input ' . Html::attributes($attributes) . '>'; |
| 137 | 137 | break; |
| 138 | 138 | case 'checkbox': |
| 139 | - $attributes += [ |
|
| 139 | + $attributes += [ |
|
| 140 | 140 | 'type' => 'checkbox', |
| 141 | - 'checked' => (bool)$input['default'], |
|
| 141 | + 'checked' => (bool) $input['default'], |
|
| 142 | 142 | ]; |
| 143 | 143 | $input['control'] = '<input ' . Html::attributes($attributes) . '>'; |
| 144 | 144 | break; |