| Conditions | 27 |
| Paths | 434 |
| Total Lines | 450 |
| Code Lines | 209 |
| Lines | 27 |
| Ratio | 6 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 63 | public function modAction($mod_action) { |
||
| 64 | switch ($mod_action) { |
||
| 65 | case 'ajax': |
||
| 66 | $html = $this->getSidebarAjaxContent(); |
||
| 67 | header('Content-Type: text/html; charset=UTF-8'); |
||
| 68 | echo $html; |
||
| 69 | break; |
||
| 70 | case 'index': |
||
| 71 | global $controller, $WT_TREE; |
||
|
|
|||
| 72 | |||
| 73 | $MAX_PEDIGREE_GENERATIONS = $WT_TREE->getPreference('MAX_PEDIGREE_GENERATIONS'); |
||
| 74 | |||
| 75 | $clip_ctrl = new ClippingsCartController; |
||
| 76 | $cart = Session::get('cart'); |
||
| 77 | |||
| 78 | $controller = new PageController; |
||
| 79 | $controller |
||
| 80 | ->setPageTitle($this->getTitle()) |
||
| 81 | ->pageHeader(); |
||
| 82 | |||
| 83 | echo '<script>'; |
||
| 84 | echo 'function radAncestors(elementid) {var radFamilies=document.getElementById(elementid);radFamilies.checked=true;}'; |
||
| 85 | echo '</script>'; |
||
| 86 | echo '<div class="clipping-cart">'; |
||
| 87 | |||
| 88 | if (!$cart[$WT_TREE->getTreeId()]) { |
||
| 89 | echo '<h2>', I18N::translate('Family tree clippings cart'), '</h2>'; |
||
| 90 | } |
||
| 91 | |||
| 92 | if ($clip_ctrl->action == 'add') { |
||
| 93 | $record = GedcomRecord::getInstance($clip_ctrl->id, $WT_TREE); |
||
| 94 | if ($clip_ctrl->type === 'FAM') { ?> |
||
| 95 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" action="module.php"> |
||
| 96 | <input type="hidden" name="mod" value="clippings"> |
||
| 97 | <input type="hidden" name="mod_action" value="index"> |
||
| 98 | <input type="hidden" name="id" value="<?= $clip_ctrl->id ?>"> |
||
| 99 | <input type="hidden" name="type" value="<?= $clip_ctrl->type ?>"> |
||
| 100 | <input type="hidden" name="action" value="add1"> |
||
| 101 | <table class="add-to center"> |
||
| 102 | <thead> |
||
| 103 | <tr> |
||
| 104 | <td class="topbottombar"> |
||
| 105 | <?= I18N::translate('Add to the clippings cart') ?> |
||
| 106 | </td> |
||
| 107 | </tr> |
||
| 108 | </thead> |
||
| 109 | <tbody> |
||
| 110 | <tr> |
||
| 111 | <td class="optionbox"> |
||
| 112 | <input type="radio" name="others" value="parents"> |
||
| 113 | <?= $record->getFullName() ?> |
||
| 114 | </td> |
||
| 115 | </tr> |
||
| 116 | <tr> |
||
| 117 | <td class="optionbox"> |
||
| 118 | <input type="radio" name="others" value="members" checked> |
||
| 119 | <?= /* I18N: %s is a family (husband + wife) */ |
||
| 120 | I18N::translate('%s and their children', $record->getFullName()) ?> |
||
| 121 | </td> |
||
| 122 | </tr> |
||
| 123 | <tr> |
||
| 124 | <td class="optionbox"> |
||
| 125 | <input type="radio" name="others" value="descendants"> |
||
| 126 | <?= /* I18N: %s is a family (husband + wife) */ |
||
| 127 | I18N::translate('%s and their descendants', $record->getFullName()) ?> |
||
| 128 | </td> |
||
| 129 | </tr> |
||
| 130 | </tbody> |
||
| 131 | <tfoot> |
||
| 132 | <tr> |
||
| 133 | <td class="topbottombar"><input type="submit" value="<?= I18N::translate('continue') ?>"> |
||
| 134 | </td> |
||
| 135 | </tr> |
||
| 136 | </tfoot> |
||
| 137 | </table> |
||
| 138 | </form> |
||
| 139 | </div> |
||
| 140 | <?php } elseif ($clip_ctrl->type === 'INDI') { ?> |
||
| 141 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" action="module.php"> |
||
| 142 | <input type="hidden" name="mod" value="clippings"> |
||
| 143 | <input type="hidden" name="mod_action" value="index"> |
||
| 144 | <input type="hidden" name="id" value="<?= $clip_ctrl->id ?>"> |
||
| 145 | <input type="hidden" name="type" value="<?= $clip_ctrl->type ?>"> |
||
| 146 | <input type="hidden" name="action" value="add1"> |
||
| 147 | <table class="add-to center"> |
||
| 148 | <thead> |
||
| 149 | <tr> |
||
| 150 | <td class="topbottombar"> |
||
| 151 | <?= I18N::translate('Add to the clippings cart') ?> |
||
| 152 | </td> |
||
| 153 | </tr> |
||
| 154 | </thead> |
||
| 155 | <tbody> |
||
| 156 | <tr> |
||
| 157 | <td class="optionbox"> |
||
| 158 | <label> |
||
| 159 | <input type="radio" name="others" checked value="none"> |
||
| 160 | <?= $record->getFullName() ?> |
||
| 161 | </label> |
||
| 162 | </td> |
||
| 163 | </tr> |
||
| 164 | <tr> |
||
| 165 | <td class="optionbox"> |
||
| 166 | <label> |
||
| 167 | <input type="radio" name="others" value="parents"> |
||
| 168 | <?php |
||
| 169 | View Code Duplication | if ($record->getSex() === 'F') { |
|
| 170 | echo /* I18N: %s is a woman's name */ |
||
| 171 | I18N::translate('%s, her parents and siblings', $record->getFullName()); |
||
| 172 | } else { |
||
| 173 | echo /* I18N: %s is a man's name */ |
||
| 174 | I18N::translate('%s, his parents and siblings', $record->getFullName()); |
||
| 175 | } |
||
| 176 | ?> |
||
| 177 | </label> |
||
| 178 | </td> |
||
| 179 | </tr> |
||
| 180 | <tr> |
||
| 181 | <td class="optionbox"> |
||
| 182 | <label> |
||
| 183 | <input type="radio" name="others" value="members"> |
||
| 184 | <?php |
||
| 185 | View Code Duplication | if ($record->getSex() === 'F') { |
|
| 186 | echo /* I18N: %s is a woman's name */ |
||
| 187 | I18N::translate('%s, her spouses and children', $record->getFullName()); |
||
| 188 | } else { |
||
| 189 | echo /* I18N: %s is a man's name */ |
||
| 190 | I18N::translate('%s, his spouses and children', $record->getFullName()); |
||
| 191 | } |
||
| 192 | ?> |
||
| 193 | </label> |
||
| 194 | </td> |
||
| 195 | </tr> |
||
| 196 | <tr> |
||
| 197 | <td class="optionbox"> |
||
| 198 | <label> |
||
| 199 | <input type="radio" name="others" value="ancestors" id="ancestors"> |
||
| 200 | <?php |
||
| 201 | View Code Duplication | if ($record->getSex() === 'F') { |
|
| 202 | echo /* I18N: %s is a woman's name */ |
||
| 203 | I18N::translate('%s and her ancestors', $record->getFullName()); |
||
| 204 | } else { |
||
| 205 | echo /* I18N: %s is a man's name */ |
||
| 206 | I18N::translate('%s and his ancestors', $record->getFullName()); |
||
| 207 | } |
||
| 208 | ?> |
||
| 209 | </label> |
||
| 210 | <br> |
||
| 211 | <?= I18N::translate('Number of generations') ?> |
||
| 212 | <input type="text" size="5" name="level1" value="<?= $MAX_PEDIGREE_GENERATIONS ?>" onfocus="radAncestors('ancestors');"> |
||
| 213 | </td> |
||
| 214 | </tr> |
||
| 215 | <tr> |
||
| 216 | <td class="optionbox"> |
||
| 217 | <label> |
||
| 218 | <input type="radio" name="others" value="ancestorsfamilies" id="ancestorsfamilies"> |
||
| 219 | <?php |
||
| 220 | View Code Duplication | if ($record->getSex() === 'F') { |
|
| 221 | echo /* I18N: %s is a woman's name */ |
||
| 222 | I18N::translate('%s, her ancestors and their families', $record->getFullName()); |
||
| 223 | } else { |
||
| 224 | echo /* I18N: %s is a man's name */ |
||
| 225 | I18N::translate('%s, his ancestors and their families', $record->getFullName()); |
||
| 226 | } |
||
| 227 | ?> |
||
| 228 | </label> |
||
| 229 | <br> |
||
| 230 | <?= I18N::translate('Number of generations') ?> |
||
| 231 | <input type="text" size="5" name="level2" value="<?= $MAX_PEDIGREE_GENERATIONS ?>" onfocus="radAncestors('ancestorsfamilies');"> |
||
| 232 | </td> |
||
| 233 | </tr> |
||
| 234 | <tr> |
||
| 235 | <td class="optionbox"> |
||
| 236 | <label> |
||
| 237 | <input type="radio" name="others" value="descendants" id="descendants"> |
||
| 238 | <?php |
||
| 239 | View Code Duplication | if ($record->getSex() === 'F') { |
|
| 240 | echo /* I18N: %s is a woman's name */ |
||
| 241 | I18N::translate('%s, her spouses and descendants', $record->getFullName()); |
||
| 242 | } else { |
||
| 243 | echo /* I18N: %s is a man's name */ |
||
| 244 | I18N::translate('%s, his spouses and descendants', $record->getFullName()); |
||
| 245 | } |
||
| 246 | ?> |
||
| 247 | </label> |
||
| 248 | <br> |
||
| 249 | <?= I18N::translate('Number of generations') ?> |
||
| 250 | <input type="text" size="5" name="level3" value="<?= $MAX_PEDIGREE_GENERATIONS ?>" onfocus="radAncestors('descendants');"> |
||
| 251 | </td> |
||
| 252 | </tr> |
||
| 253 | </tbody> |
||
| 254 | <tfoot> |
||
| 255 | <tr> |
||
| 256 | <td class="topbottombar"> |
||
| 257 | <input type="submit" value="<?= I18N::translate('continue') ?>"> |
||
| 258 | </td> |
||
| 259 | </tr> |
||
| 260 | </tfoot> |
||
| 261 | </table> |
||
| 262 | </form> |
||
| 263 | </div> |
||
| 264 | <?php } elseif ($clip_ctrl->type === 'SOUR') { ?> |
||
| 265 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" action="module.php"> |
||
| 266 | <input type="hidden" name="mod" value="clippings"> |
||
| 267 | <input type="hidden" name="mod_action" value="index"> |
||
| 268 | <input type="hidden" name="id" value="<?= $clip_ctrl->id ?>"> |
||
| 269 | <input type="hidden" name="type" value="<?= $clip_ctrl->type ?>"> |
||
| 270 | <input type="hidden" name="action" value="add1"> |
||
| 271 | <table class="add-to center"> |
||
| 272 | <thead> |
||
| 273 | <tr> |
||
| 274 | <td class="topbottombar"> |
||
| 275 | <?= I18N::translate('Add to the clippings cart') ?> |
||
| 276 | </td> |
||
| 277 | </tr> |
||
| 278 | </thead> |
||
| 279 | <tbody> |
||
| 280 | <tr> |
||
| 281 | <td class="optionbox"> |
||
| 282 | <label> |
||
| 283 | <input type="radio" name="others" checked value="none"> |
||
| 284 | <?= $record->getFullName() ?> |
||
| 285 | </label> |
||
| 286 | </td> |
||
| 287 | </tr> |
||
| 288 | <tr> |
||
| 289 | <td class="optionbox"> |
||
| 290 | <label> |
||
| 291 | <input type="radio" name="others" value="linked"> |
||
| 292 | <?= /* I18N: %s is the name of a source */ |
||
| 293 | I18N::translate('%s and the individuals that reference it.', $record->getFullName()) ?> |
||
| 294 | </label> |
||
| 295 | </td> |
||
| 296 | </tr> |
||
| 297 | </tbody> |
||
| 298 | <tfoot> |
||
| 299 | <tr> |
||
| 300 | <td class="topbottombar"> |
||
| 301 | <input type="submit" value="<?= I18N::translate('continue') ?>"> |
||
| 302 | </td> |
||
| 303 | </tr> |
||
| 304 | </tfoot> |
||
| 305 | </table> |
||
| 306 | </form> |
||
| 307 | </div> |
||
| 308 | <?php } |
||
| 309 | } |
||
| 310 | |||
| 311 | if (!$cart[$WT_TREE->getTreeId()]) { |
||
| 312 | if ($clip_ctrl->action != 'add') { |
||
| 313 | echo '<div class="center">'; |
||
| 314 | echo I18N::translate('The clippings cart allows you to take extracts from this family tree and download them as a GEDCOM file.'); |
||
| 315 | echo '</div>'; |
||
| 316 | ?> |
||
| 317 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" name="addin" action="module.php"> |
||
| 318 | <input type="hidden" name="mod" value="clippings"> |
||
| 319 | <input type="hidden" name="mod_action" value="index"> |
||
| 320 | <table class="add-to center"> |
||
| 321 | <thead> |
||
| 322 | <tr> |
||
| 323 | <td colspan="2" class="topbottombar"> |
||
| 324 | <?= I18N::translate('Add to the clippings cart') ?> |
||
| 325 | </td> |
||
| 326 | </tr> |
||
| 327 | </thead> |
||
| 328 | <tbody> |
||
| 329 | <tr> |
||
| 330 | <td class="optionbox"> |
||
| 331 | <input type="hidden" name="action" value="add"> |
||
| 332 | <input type="text" data-autocomplete-type="IFSRO" name="id" id="cart_item_id" size="5"> |
||
| 333 | </td> |
||
| 334 | <td class="optionbox"> |
||
| 335 | <input type="submit" value="<?= /* I18N: A button label. */ I18N::translate('add') ?>"> |
||
| 336 | </td> |
||
| 337 | </tr> |
||
| 338 | </tbody> |
||
| 339 | </table> |
||
| 340 | </form> |
||
| 341 | </div> |
||
| 342 | <?php |
||
| 343 | } |
||
| 344 | echo '<div class="center">'; |
||
| 345 | // -- end new lines |
||
| 346 | echo I18N::translate('Your clippings cart is empty.'); |
||
| 347 | echo '</div>'; |
||
| 348 | } else { |
||
| 349 | // Keep track of the INDI from the parent page, otherwise it will |
||
| 350 | // get lost after ajax updates |
||
| 351 | $pid = Filter::get('pid', WT_REGEX_XREF); |
||
| 352 | |||
| 353 | if ($clip_ctrl->action !== 'download' && $clip_ctrl->action !== 'add') { ?> |
||
| 354 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" action="module.php"> |
||
| 355 | <input type="hidden" name="mod" value="clippings"> |
||
| 356 | <input type="hidden" name="mod_action" value="index"> |
||
| 357 | <input type="hidden" name="action" value="download"> |
||
| 358 | <input type="hidden" name="pid" value="<?= $pid ?>"> |
||
| 359 | <table class="add-to center"> |
||
| 360 | <tr> |
||
| 361 | <td colspan="2" class="topbottombar"> |
||
| 362 | <h2><?= I18N::translate('Download') ?></h2> |
||
| 363 | </td> |
||
| 364 | </tr> |
||
| 365 | <?php if (Auth::isManager($WT_TREE)) { ?> |
||
| 366 | <tr> |
||
| 367 | <td class="descriptionbox width50 wrap"> |
||
| 368 | <?= I18N::translate('Apply privacy settings') ?> |
||
| 369 | </td> |
||
| 370 | <td class="optionbox"> |
||
| 371 | <input type="radio" name="privatize_export" value="none" checked> |
||
| 372 | <?= I18N::translate('None') ?> |
||
| 373 | <br> |
||
| 374 | <input type="radio" name="privatize_export" value="gedadmin"> |
||
| 375 | <?= I18N::translate('Manager') ?> |
||
| 376 | <br> |
||
| 377 | <input type="radio" name="privatize_export" value="user"> |
||
| 378 | <?= I18N::translate('Member') ?> |
||
| 379 | <br> |
||
| 380 | <input type="radio" name="privatize_export" value="visitor"> |
||
| 381 | <?= I18N::translate('Visitor') ?> |
||
| 382 | </td> |
||
| 383 | </tr> |
||
| 384 | <?php } elseif (Auth::isMember($WT_TREE)) { ?> |
||
| 385 | <tr> |
||
| 386 | <td class="descriptionbox width50 wrap"> |
||
| 387 | <?= I18N::translate('Apply privacy settings') ?> |
||
| 388 | </td> |
||
| 389 | <td class="optionbox"> |
||
| 390 | <input type="radio" name="privatize_export" value="user" checked> <?= I18N::translate('Member') ?><br> |
||
| 391 | <input type="radio" name="privatize_export" value="visitor"> <?= I18N::translate('Visitor') ?> |
||
| 392 | </td> |
||
| 393 | </tr> |
||
| 394 | <?php } ?> |
||
| 395 | |||
| 396 | <tr> |
||
| 397 | <td class="descriptionbox width50 wrap"> |
||
| 398 | <?= I18N::translate('Convert from UTF-8 to ISO-8859-1') ?> |
||
| 399 | </td> |
||
| 400 | <td class="optionbox"> |
||
| 401 | <input type="checkbox" name="convert" value="yes"> |
||
| 402 | </td> |
||
| 403 | </tr> |
||
| 404 | |||
| 405 | <tr> |
||
| 406 | <td class="topbottombar" colspan="2"> |
||
| 407 | <input type="submit" value="<?= /* I18N: A button label. */ I18N::translate('download') ?>"> |
||
| 408 | </td> |
||
| 409 | </tr> |
||
| 410 | </table> |
||
| 411 | </form> |
||
| 412 | </div> |
||
| 413 | <br> |
||
| 414 | |||
| 415 | <form class="wt-page-options wt-page-options-clipping-cart hidden-print" name="addin" action="module.php"> |
||
| 416 | <input type="hidden" name="mod" value="clippings"> |
||
| 417 | <input type="hidden" name="mod_action" value="index"> |
||
| 418 | <table class="add-to center"> |
||
| 419 | <thead> |
||
| 420 | <tr> |
||
| 421 | <td colspan="2" class="topbottombar" style="text-align:center; "> |
||
| 422 | <?= I18N::translate('Add to the clippings cart') ?> |
||
| 423 | </td> |
||
| 424 | </tr> |
||
| 425 | </thead> |
||
| 426 | <tbody> |
||
| 427 | <tr> |
||
| 428 | <td class="optionbox"> |
||
| 429 | <input type="hidden" name="action" value="add"> |
||
| 430 | <input type="text" data-autocomplete-type="IFSRO" name="id" id="cart_item_id" size="8"> |
||
| 431 | </td> |
||
| 432 | <td class="optionbox"> |
||
| 433 | <input type="submit" value="<?= /* I18N: A button label. */ I18N::translate('add') ?>"> |
||
| 434 | </td> |
||
| 435 | </tr> |
||
| 436 | </tbody> |
||
| 437 | <tfoot> |
||
| 438 | <tr> |
||
| 439 | <th colspan="2"> |
||
| 440 | <a href="module.php?mod=clippings&mod_action=index&action=empty"> |
||
| 441 | <?= I18N::translate('Empty the clippings cart') ?> |
||
| 442 | </a> |
||
| 443 | </th> |
||
| 444 | </tr> |
||
| 445 | </tfoot> |
||
| 446 | </table> |
||
| 447 | </form> |
||
| 448 | </div> |
||
| 449 | <?php } ?> |
||
| 450 | <div class="clipping-cart"> |
||
| 451 | <h2> |
||
| 452 | <?= I18N::translate('Family tree clippings cart') ?> |
||
| 453 | </h2> |
||
| 454 | <table id="mycart" class="sortable list_table width50"> |
||
| 455 | <thead> |
||
| 456 | <tr> |
||
| 457 | <th class="list_label"><?= I18N::translate('Record') ?></th> |
||
| 458 | <th class="list_label"><?= I18N::translate('Remove') ?></th> |
||
| 459 | </tr> |
||
| 460 | </thead> |
||
| 461 | <tbody> |
||
| 462 | <?php |
||
| 463 | foreach (array_keys($cart[$WT_TREE->getTreeId()]) as $xref) { |
||
| 464 | $record = GedcomRecord::getInstance($xref, $WT_TREE); |
||
| 465 | if ($record) { |
||
| 466 | switch ($record::RECORD_TYPE) { |
||
| 467 | case 'INDI': |
||
| 468 | $icon = 'icon-indis'; |
||
| 469 | break; |
||
| 470 | case 'FAM': |
||
| 471 | $icon = 'icon-sfamily'; |
||
| 472 | break; |
||
| 473 | case 'SOUR': |
||
| 474 | $icon = 'icon-source'; |
||
| 475 | break; |
||
| 476 | case 'REPO': |
||
| 477 | $icon = 'icon-repository'; |
||
| 478 | break; |
||
| 479 | case 'NOTE': |
||
| 480 | $icon = 'icon-note'; |
||
| 481 | break; |
||
| 482 | case 'OBJE': |
||
| 483 | $icon = 'icon-media'; |
||
| 484 | break; |
||
| 485 | default: |
||
| 486 | $icon = 'icon-clippings'; |
||
| 487 | break; |
||
| 488 | } |
||
| 489 | ?> |
||
| 490 | <tr> |
||
| 491 | <td class="list_value"> |
||
| 492 | <i class="<?= $icon ?>"></i> |
||
| 493 | <?php |
||
| 494 | echo '<a href="', $record->getHtmlUrl(), '">', $record->getFullName(), '</a>'; |
||
| 495 | ?> |
||
| 496 | </td> |
||
| 497 | <td class="list_value center vmiddle"><a href="module.php?mod=clippings&mod_action=index&action=remove&id=<?= $xref ?>" class="icon-remove" title="<?= I18N::translate('Remove') ?>"></a></td> |
||
| 498 | </tr> |
||
| 499 | <?php |
||
| 500 | } |
||
| 501 | } |
||
| 502 | ?> |
||
| 503 | </table> |
||
| 504 | </div> |
||
| 505 | <?php |
||
| 506 | } |
||
| 507 | break; |
||
| 508 | default: |
||
| 509 | http_response_code(404); |
||
| 510 | break; |
||
| 511 | } |
||
| 512 | } |
||
| 513 | |||
| 760 |
Instead of relying on
globalstate, we recommend one of these alternatives:1. Pass all data via parameters
2. Create a class that maintains your state