| Conditions | 137 |
| Paths | 0 |
| Total Lines | 746 |
| Code Lines | 479 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 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 |
||
| 298 | public function get_table_data($from = 1, $perPage = null, $column = null, $direction = null, $sort = null) |
||
| 299 | { |
||
| 300 | //variables load in index.php |
||
| 301 | global $certificate_min_score; |
||
| 302 | |||
| 303 | $isAllowedToEdit = api_is_allowed_to_edit(); |
||
| 304 | // determine sorting type |
||
| 305 | $col_adjust = $isAllowedToEdit ? 1 : 0; |
||
| 306 | // By id |
||
| 307 | $this->column = 5; |
||
| 308 | |||
| 309 | switch ($this->column) { |
||
| 310 | // Type |
||
| 311 | case 0 + $col_adjust: |
||
| 312 | $sorting = GradebookDataGenerator::GDG_SORT_TYPE; |
||
| 313 | break; |
||
| 314 | case 1 + $col_adjust: |
||
| 315 | $sorting = GradebookDataGenerator::GDG_SORT_NAME; |
||
| 316 | break; |
||
| 317 | case 2 + $col_adjust: |
||
| 318 | $sorting = GradebookDataGenerator::GDG_SORT_DESCRIPTION; |
||
| 319 | break; |
||
| 320 | case 3 + $col_adjust: |
||
| 321 | $sorting = GradebookDataGenerator::GDG_SORT_WEIGHT; |
||
| 322 | break; |
||
| 323 | case 4 + $col_adjust: |
||
| 324 | $sorting = GradebookDataGenerator::GDG_SORT_DATE; |
||
| 325 | break; |
||
| 326 | case 5 + $col_adjust: |
||
| 327 | $sorting = GradebookDataGenerator::GDG_SORT_ID; |
||
| 328 | break; |
||
| 329 | } |
||
| 330 | |||
| 331 | if ('DESC' == $this->direction) { |
||
| 332 | $sorting |= GradebookDataGenerator::GDG_SORT_DESC; |
||
| 333 | } else { |
||
| 334 | $sorting |= GradebookDataGenerator::GDG_SORT_ASC; |
||
| 335 | } |
||
| 336 | |||
| 337 | // Status of user in course. |
||
| 338 | $user_id = $this->userId; |
||
| 339 | $course_code = api_get_course_id(); |
||
| 340 | $courseId = api_get_course_int_id(); |
||
| 341 | $session_id = api_get_session_id(); |
||
| 342 | |||
| 343 | $statusToFilter = 0; |
||
| 344 | if (empty($session_id)) { |
||
| 345 | $statusToFilter = STUDENT; |
||
| 346 | } |
||
| 347 | |||
| 348 | if (empty($this->studentList) && $this->loadStats) { |
||
| 349 | $studentList = CourseManager::getUserListFromCourseId( |
||
| 350 | $courseId, |
||
| 351 | $session_id, |
||
| 352 | null, |
||
| 353 | null, |
||
| 354 | $statusToFilter |
||
| 355 | ); |
||
| 356 | $this->studentList = $studentList; |
||
| 357 | } |
||
| 358 | |||
| 359 | $this->datagen->userId = $this->userId; |
||
| 360 | $data_array = $this->datagen->get_data( |
||
| 361 | $sorting, |
||
| 362 | $from, |
||
| 363 | $this->per_page, |
||
| 364 | false, |
||
| 365 | $this->studentList, |
||
| 366 | $this->loadStats |
||
| 367 | ); |
||
| 368 | |||
| 369 | // generate the data to display |
||
| 370 | $sortable_data = []; |
||
| 371 | $weight_total_links = 0; |
||
| 372 | $main_cat = Category::load( |
||
| 373 | null, |
||
| 374 | null, |
||
| 375 | api_get_course_int_id(), |
||
| 376 | null, |
||
| 377 | null, |
||
| 378 | $session_id, |
||
| 379 | 'ORDER BY id' |
||
| 380 | ); |
||
| 381 | |||
| 382 | $totalCategoriesWeight = 0; |
||
| 383 | $scoredisplay = ScoreDisplay::instance(); |
||
| 384 | $totalBest = [0, 0]; |
||
| 385 | $totalAverage = [0, 0]; |
||
| 386 | |||
| 387 | $type = 'detail'; |
||
| 388 | if ($this->exportToPdf) { |
||
| 389 | $type = 'simple'; |
||
| 390 | } |
||
| 391 | |||
| 392 | $model = ExerciseLib::getCourseScoreModel(); |
||
| 393 | $userExerciseScoreInCategory = ('true' === api_get_setting('gradebook.gradebook_use_exercise_score_settings_in_categories')); |
||
| 394 | $useExerciseScoreInTotal = ('true' === api_get_setting('gradebook.gradebook_use_exercise_score_settings_in_total')); |
||
| 395 | $course_code = api_get_course_id(); |
||
| 396 | $session_id = api_get_session_id(); |
||
| 397 | $defaultData = Session::read($this->getPreloadDataKey()); |
||
| 398 | $settings = api_get_setting('gradebook.gradebook_pdf_export_settings', true); |
||
| 399 | $showWeight = true; |
||
| 400 | if ($this->exportToPdf && isset($settings['hide_score_weight']) && $settings['hide_score_weight']) { |
||
| 401 | $showWeight = false; |
||
| 402 | } |
||
| 403 | $totalAverageList = []; |
||
| 404 | // Categories. |
||
| 405 | if (!empty($data_array)) { |
||
| 406 | foreach ($data_array as $data) { |
||
| 407 | // list of items inside the gradebook (exercises, lps, forums, etc) |
||
| 408 | $row = []; |
||
| 409 | /** @var AbstractLink $item */ |
||
| 410 | $item = $data[0]; |
||
| 411 | // If the item is invisible, wrap it in a span with class invisible |
||
| 412 | $invisibility_span_open = $isAllowedToEdit && '0' == $item->is_visible() ? '<span class="text-muted">' : ''; |
||
| 413 | $invisibility_span_close = $isAllowedToEdit && '0' == $item->is_visible() ? '</span>' : ''; |
||
| 414 | |||
| 415 | if ($this->teacherView) { |
||
| 416 | if (false == $this->exportToPdf) { |
||
| 417 | $row[] = $this->build_id_column($item); |
||
| 418 | } |
||
| 419 | } |
||
| 420 | |||
| 421 | // Type. |
||
| 422 | $row[] = $this->build_type_column($item); |
||
| 423 | |||
| 424 | // Name. |
||
| 425 | if ('Category' === get_class($item)) { |
||
| 426 | $row[] = $invisibility_span_open.'<strong>'.$item->get_name().'</strong>'.$invisibility_span_close; |
||
| 427 | $main_categories[$item->get_id()]['name'] = $item->get_name(); |
||
| 428 | } else { |
||
| 429 | $name = $this->build_name_link($item, $type); |
||
| 430 | $row[] = $invisibility_span_open.$name.$invisibility_span_close; |
||
| 431 | $main_categories[$item->get_id()]['name'] = $name; |
||
| 432 | } |
||
| 433 | |||
| 434 | $this->dataForGraph['categories'][] = $item->get_name(); |
||
| 435 | $main_categories[$item->get_id()]['weight'] = $item->get_weight(); |
||
| 436 | $totalCategoriesWeight += $item->get_weight(); |
||
| 437 | |||
| 438 | // Description. |
||
| 439 | if (false == $this->exportToPdf) { |
||
| 440 | $row[] = $invisibility_span_open.$data[2].$invisibility_span_close; |
||
| 441 | } |
||
| 442 | |||
| 443 | // Weight. |
||
| 444 | $weight = $scoredisplay->display_score( |
||
| 445 | [ |
||
| 446 | $data['3'], |
||
| 447 | $this->currentcat->get_weight(), |
||
| 448 | ], |
||
| 449 | SCORE_SIMPLE, |
||
| 450 | SCORE_BOTH, |
||
| 451 | true |
||
| 452 | ); |
||
| 453 | |||
| 454 | if ($showWeight) { |
||
| 455 | if ($this->teacherView) { |
||
| 456 | $row[] = $invisibility_span_open. |
||
| 457 | Display::tag('p', $weight, ['class' => 'score']). |
||
| 458 | $invisibility_span_close; |
||
| 459 | } else { |
||
| 460 | $row[] = $invisibility_span_open.$weight.$invisibility_span_close; |
||
| 461 | } |
||
| 462 | } |
||
| 463 | |||
| 464 | $categoryWeight = $item->get_weight(); |
||
| 465 | if ($this->teacherView) { |
||
| 466 | $weight_total_links += $data[3]; |
||
| 467 | } |
||
| 468 | |||
| 469 | // Edit (for admins). |
||
| 470 | if ($this->teacherView) { |
||
| 471 | $show_message = Category::show_message_resource_delete($item->getCourseId()); |
||
| 472 | if (empty($show_message)) { |
||
| 473 | $row[] = $this->build_edit_column($item); |
||
| 474 | } |
||
| 475 | } else { |
||
| 476 | // Students get the results and certificates columns |
||
| 477 | $value_data = isset($data[4]) ? $data[4] : null; |
||
| 478 | $best = isset($data['best']) ? $data['best'] : null; |
||
| 479 | $average = isset($data['average']) ? $data['average'] : null; |
||
| 480 | $ranking = isset($data['ranking']) ? $data['ranking'] : null; |
||
| 481 | $totalResult = []; |
||
| 482 | if (isset($data['result_score'])) { |
||
| 483 | $totalResult = [ |
||
| 484 | $data['result_score'][0] ?? 0, |
||
| 485 | $data['result_score'][1] ?? 0, |
||
| 486 | ]; |
||
| 487 | } |
||
| 488 | |||
| 489 | if (empty($model)) { |
||
| 490 | $data['best_score'][0] = $data['best_score'][0] ?? 0; |
||
| 491 | $data['best_score'][1] = $data['best_score'][1] ?? 0; |
||
| 492 | $totalBest = [ |
||
| 493 | $scoredisplay->format_score($totalBest[0] + $data['best_score'][0]), |
||
| 494 | $scoredisplay->format_score($totalBest[1] + $data['best_score'][1]), |
||
| 495 | ]; |
||
| 496 | $totalAverage = [0, 0]; |
||
| 497 | if (isset($data['average_score']) && !empty($data['average_score'])) { |
||
| 498 | $totalAverage = [ |
||
| 499 | $data['average_score'][0], |
||
| 500 | $data['average_score'][1], |
||
| 501 | ]; |
||
| 502 | } |
||
| 503 | } |
||
| 504 | |||
| 505 | // Score |
||
| 506 | if (empty($model)) { |
||
| 507 | $row[] = $value_data; |
||
| 508 | } else { |
||
| 509 | $row[] = ExerciseLib::show_score( |
||
| 510 | $data['result_score'][0], |
||
| 511 | $data['result_score'][1] |
||
| 512 | ); |
||
| 513 | } |
||
| 514 | |||
| 515 | $totalAverageList[$item->get_id()] = $totalAverage; |
||
| 516 | $mode = SCORE_AVERAGE; |
||
| 517 | if ($userExerciseScoreInCategory) { |
||
| 518 | $mode = SCORE_SIMPLE; |
||
| 519 | list($avgScore, $avgWeight) = $this->safeScore($totalAverage); |
||
| 520 | $result = ExerciseLib::convertScoreToPlatformSetting($avgScore, $avgWeight); |
||
| 521 | |||
| 522 | $totalAverage[0] = $result['score']; |
||
| 523 | $totalAverage[1] = $result['weight']; |
||
| 524 | |||
| 525 | list($resScore, $resWeight) = $this->safeScore($totalResult); |
||
| 526 | $result = ExerciseLib::convertScoreToPlatformSetting($resScore, $resWeight); |
||
| 527 | |||
| 528 | $totalResult[0] = $result['score']; |
||
| 529 | $totalResult[1] = $result['weight']; |
||
| 530 | |||
| 531 | list($safeScore, $safeWeight) = $this->safeScore($data['result_score'] ?? []); |
||
| 532 | $result = ExerciseLib::convertScoreToPlatformSetting($safeScore, $safeWeight); |
||
| 533 | |||
| 534 | $data['my_result_no_float'][0] = $result['score']; |
||
| 535 | } |
||
| 536 | |||
| 537 | $totalResultAverageValue = strip_tags( |
||
| 538 | $scoredisplay->display_score($totalResult, $mode, null, false, false, true) |
||
| 539 | ); |
||
| 540 | $totalAverageValue = strip_tags( |
||
| 541 | $scoredisplay->display_score($totalAverage, $mode, null, false, false, true) |
||
| 542 | ); |
||
| 543 | |||
| 544 | $this->dataForGraph['my_result'][] = floatval($totalResultAverageValue); |
||
| 545 | $this->dataForGraph['average'][] = floatval($totalAverageValue); |
||
| 546 | $this->dataForGraph['my_result_no_float'][] = $data['result_score'][0] ?? 0; |
||
| 547 | |||
| 548 | if (empty($model)) { |
||
| 549 | // Ranking |
||
| 550 | if (in_array(1, $this->loadStats)) { |
||
| 551 | $row[] = $ranking; |
||
| 552 | } |
||
| 553 | |||
| 554 | // Best |
||
| 555 | if (in_array(2, $this->loadStats)) { |
||
| 556 | $row[] = $best; |
||
| 557 | } |
||
| 558 | |||
| 559 | // Average |
||
| 560 | if (in_array(3, $this->loadStats)) { |
||
| 561 | $row[] = $average; |
||
| 562 | } |
||
| 563 | } |
||
| 564 | |||
| 565 | if ('Category' === get_class($item)) { |
||
| 566 | if (false == $this->exportToPdf) { |
||
| 567 | $row[] = $this->build_edit_column($item); |
||
| 568 | } |
||
| 569 | } |
||
| 570 | } |
||
| 571 | |||
| 572 | // Category added. |
||
| 573 | $sortable_data[] = $row; |
||
| 574 | |||
| 575 | // Loading children |
||
| 576 | if ('Category' === get_class($item)) { |
||
| 577 | $parent_id = $item->get_id(); |
||
| 578 | $cats = Category::load( |
||
| 579 | $parent_id, |
||
| 580 | null, |
||
| 581 | 0, |
||
| 582 | null, |
||
| 583 | null, |
||
| 584 | null |
||
| 585 | ); |
||
| 586 | |||
| 587 | if (isset($cats[0])) { |
||
| 588 | /** @var Category $subCategory */ |
||
| 589 | $subCategory = $cats[0]; |
||
| 590 | $allcat = $subCategory->get_subcategories($this->userId, $courseId, $session_id); |
||
| 591 | $alleval = $subCategory->get_evaluations($this->userId); |
||
| 592 | $alllink = $subCategory->get_links($this->userId); |
||
| 593 | |||
| 594 | $sub_cat_info = new GradebookDataGenerator($allcat, $alleval, $alllink); |
||
| 595 | $sub_cat_info->exportToPdf = $this->exportToPdf; |
||
| 596 | $sub_cat_info->preLoadDataKey = $this->getPreloadDataKey(); |
||
| 597 | $sub_cat_info->userId = $user_id; |
||
| 598 | |||
| 599 | $data_array2 = $sub_cat_info->get_data( |
||
| 600 | $sorting, |
||
| 601 | $from, |
||
| 602 | $this->per_page, |
||
| 603 | false, |
||
| 604 | $this->studentList |
||
| 605 | ); |
||
| 606 | $totalWeight = 0; |
||
| 607 | |||
| 608 | // Links. |
||
| 609 | foreach ($data_array2 as $data) { |
||
| 610 | $row = []; |
||
| 611 | $item = $data[0]; |
||
| 612 | //if the item is invisible, wrap it in a span with class invisible |
||
| 613 | $invisibility_span_open = $isAllowedToEdit && '0' == $item->is_visible() ? '<span class="text-muted">' : ''; |
||
| 614 | $invisibility_span_close = $isAllowedToEdit && '0' == $item->is_visible() ? '</span>' : ''; |
||
| 615 | |||
| 616 | if (isset($item)) { |
||
| 617 | $main_categories[$parent_id]['children'][$item->get_id()]['name'] = $item->get_name(); |
||
| 618 | $main_categories[$parent_id]['children'][$item->get_id()]['weight'] = $item->get_weight(); |
||
| 619 | } |
||
| 620 | |||
| 621 | if ($this->teacherView) { |
||
| 622 | if (false == $this->exportToPdf) { |
||
| 623 | $row[] = $this->build_id_column($item); |
||
| 624 | } |
||
| 625 | } |
||
| 626 | |||
| 627 | // Type |
||
| 628 | $row[] = $this->build_type_column($item, 'padding-left:5px'); |
||
| 629 | // Name. |
||
| 630 | $row[] = $invisibility_span_open.' '. |
||
| 631 | $this->build_name_link($item, $type, 4).$invisibility_span_close; |
||
| 632 | |||
| 633 | // Description. |
||
| 634 | if (false == $this->exportToPdf) { |
||
| 635 | $row[] = $invisibility_span_open.$data[2].$invisibility_span_close; |
||
| 636 | } |
||
| 637 | |||
| 638 | $weight = $data[3]; |
||
| 639 | $totalWeight += $weight; |
||
| 640 | |||
| 641 | // Weight |
||
| 642 | if ($showWeight) { |
||
| 643 | $row[] = $invisibility_span_open.$weight.$invisibility_span_close; |
||
| 644 | } |
||
| 645 | |||
| 646 | // Admins get an edit column. |
||
| 647 | if (api_is_allowed_to_edit(null, true) && |
||
| 648 | false == isset($_GET['user_id']) && |
||
| 649 | (isset($_GET['action']) && 'export_all' != $_GET['action'] || !isset($_GET['action'])) |
||
| 650 | ) { |
||
| 651 | $show_message = Category::show_message_resource_delete($item->getCourseId()); |
||
| 652 | if (empty($show_message)) { |
||
| 653 | if (false == $this->exportToPdf) { |
||
| 654 | $row[] = $this->build_edit_column($item); |
||
| 655 | } |
||
| 656 | } |
||
| 657 | } else { |
||
| 658 | // Students get the results and certificates columns |
||
| 659 | $eval_n_links = array_merge($alleval, $alllink); |
||
| 660 | if (count($eval_n_links) > 0) { |
||
| 661 | $value_data = isset($data[4]) ? $data[4] : null; |
||
| 662 | if (!is_null($value_data)) { |
||
| 663 | // Result |
||
| 664 | $row[] = $value_data; |
||
| 665 | $best = isset($data['best']) ? $data['best'] : null; |
||
| 666 | $average = isset($data['average']) ? $data['average'] : null; |
||
| 667 | $ranking = isset($data['ranking']) ? $data['ranking'] : null; |
||
| 668 | if (empty($model)) { |
||
| 669 | // Ranking |
||
| 670 | if (in_array(1, $this->loadStats)) { |
||
| 671 | $row[] = $ranking; |
||
| 672 | } |
||
| 673 | |||
| 674 | // Best |
||
| 675 | if (in_array(2, $this->loadStats)) { |
||
| 676 | $row[] = $best; |
||
| 677 | } |
||
| 678 | |||
| 679 | // Average |
||
| 680 | if (in_array(3, $this->loadStats)) { |
||
| 681 | $row[] = $average; |
||
| 682 | } |
||
| 683 | } |
||
| 684 | } |
||
| 685 | } |
||
| 686 | |||
| 687 | if (!empty($cats)) { |
||
| 688 | if (false == $this->exportToPdf) { |
||
| 689 | $row[] = null; |
||
| 690 | } |
||
| 691 | } |
||
| 692 | } |
||
| 693 | |||
| 694 | if (false == $this->exportToPdf) { |
||
| 695 | $row['child_of'] = $parent_id; |
||
| 696 | } |
||
| 697 | $sortable_data[] = $row; |
||
| 698 | } |
||
| 699 | |||
| 700 | // "Warning row" |
||
| 701 | if (!empty($data_array)) { |
||
| 702 | if ($this->teacherView) { |
||
| 703 | // Compare the category weight to the sum of all weights inside the category |
||
| 704 | if (intval($totalWeight) == $categoryWeight) { |
||
| 705 | $label = null; |
||
| 706 | $total = GradebookUtils::scoreBadges( |
||
| 707 | [ |
||
| 708 | $totalWeight.' / '.$categoryWeight, |
||
| 709 | '100', |
||
| 710 | ] |
||
| 711 | ); |
||
| 712 | } else { |
||
| 713 | $label = Display::getMdiIcon( |
||
| 714 | StateIcon::WARNING, |
||
| 715 | 'ch-tool-icon', |
||
| 716 | null, |
||
| 717 | ICON_SIZE_SMALL, |
||
| 718 | sprintf(get_lang('The sum of all weights of activities must be %s'), $categoryWeight) |
||
| 719 | ); |
||
| 720 | $total = Display::label($totalWeight.' / '.$categoryWeight, 'warning'); |
||
| 721 | } |
||
| 722 | $row = [ |
||
| 723 | null, |
||
| 724 | null, |
||
| 725 | " <h5>".get_lang('Subtotal').'</h5>', |
||
| 726 | null, |
||
| 727 | $total.' '.$label, |
||
| 728 | 'child_of' => $parent_id, |
||
| 729 | ]; |
||
| 730 | $sortable_data[] = $row; |
||
| 731 | } |
||
| 732 | } |
||
| 733 | } |
||
| 734 | } |
||
| 735 | } |
||
| 736 | } //end looping categories |
||
| 737 | |||
| 738 | $mainWeight = 0; |
||
| 739 | if (count($main_cat) > 1) { |
||
| 740 | /** @var Category $myCat */ |
||
| 741 | foreach ($main_cat as $myCat) { |
||
| 742 | $myParentId = $myCat->get_parent_id(); |
||
| 743 | if (0 == $myParentId) { |
||
| 744 | $mainWeight = (int) $myCat->get_weight(); |
||
| 745 | } |
||
| 746 | } |
||
| 747 | } |
||
| 748 | |||
| 749 | if ($this->teacherView) { |
||
| 750 | // Total for teacher. |
||
| 751 | if (count($main_cat) > 1) { |
||
| 752 | if (intval($totalCategoriesWeight) == $mainWeight) { |
||
| 753 | $total = GradebookUtils::scoreBadges( |
||
| 754 | [ |
||
| 755 | $totalCategoriesWeight.' / '.$mainWeight, |
||
| 756 | '100', |
||
| 757 | ] |
||
| 758 | ); |
||
| 759 | } else { |
||
| 760 | $total = Display::label($totalCategoriesWeight.' / '.$mainWeight, 'warning'); |
||
| 761 | } |
||
| 762 | $row = [ |
||
| 763 | null, |
||
| 764 | null, |
||
| 765 | '<strong>'.get_lang('Total').'</strong>', |
||
| 766 | null, |
||
| 767 | $total, |
||
| 768 | ]; |
||
| 769 | $sortable_data[] = $row; |
||
| 770 | } |
||
| 771 | } else { |
||
| 772 | $showPercentage = false === $this->datagen->hidePercentage; |
||
| 773 | // Total for student. |
||
| 774 | if (count($main_cat) > 1) { |
||
| 775 | $mainWeight = (int) $main_cat[0]->get_weight(); |
||
| 776 | $global = null; |
||
| 777 | $average = null; |
||
| 778 | $myTotal = 0; |
||
| 779 | |||
| 780 | if (isset($this->dataForGraph['my_result_no_float'])) { |
||
| 781 | foreach ($this->dataForGraph['my_result_no_float'] as $result) { |
||
| 782 | $myTotal += $result; |
||
| 783 | } |
||
| 784 | } |
||
| 785 | |||
| 786 | $totalResult[0] = $myTotal; |
||
| 787 | // Overwrite main weight |
||
| 788 | $totalResult[1] = $mainWeight; |
||
| 789 | |||
| 790 | if (!empty($model)) { |
||
| 791 | $totalResult = ExerciseLib::show_score($totalResult[0], $totalResult[1], false); |
||
| 792 | } else { |
||
| 793 | $totalResult = $scoredisplay->display_score( |
||
| 794 | $totalResult, |
||
| 795 | SCORE_DIV, |
||
| 796 | null, |
||
| 797 | false, |
||
| 798 | false, |
||
| 799 | true |
||
| 800 | ); |
||
| 801 | |||
| 802 | if ($useExerciseScoreInTotal) { |
||
| 803 | $totalResult = ExerciseLib::show_score($myTotal, $mainWeight, false); |
||
| 804 | } |
||
| 805 | } |
||
| 806 | |||
| 807 | $row = [ |
||
| 808 | null, |
||
| 809 | '<strong>'.get_lang('Total').'</strong>', |
||
| 810 | ]; |
||
| 811 | |||
| 812 | if (!$this->exportToPdf) { |
||
| 813 | $row[] = null; |
||
| 814 | } |
||
| 815 | |||
| 816 | if ($showWeight) { |
||
| 817 | $row[] = $mainWeight; |
||
| 818 | } |
||
| 819 | |||
| 820 | $row[] = $totalResult; |
||
| 821 | $categoryId = $main_cat[0]->get_id(); |
||
| 822 | |||
| 823 | if (empty($model)) { |
||
| 824 | if (in_array(1, $this->loadStats)) { |
||
| 825 | if (isset($defaultData[$categoryId]) && isset($defaultData[$categoryId]['ranking'])) { |
||
| 826 | $totalRanking = $defaultData[$categoryId]['ranking']; |
||
| 827 | $invalidateRanking = $defaultData[$categoryId]['ranking_invalidate']; |
||
| 828 | $average = 0; |
||
| 829 | foreach ($totalRanking as $ranking) { |
||
| 830 | $average += $ranking; |
||
| 831 | } |
||
| 832 | } else { |
||
| 833 | $totalRanking = []; |
||
| 834 | $invalidateRanking = true; |
||
| 835 | $average = 0; |
||
| 836 | $main_cat[0]->setStudentList($this->studentList); |
||
| 837 | foreach ($this->studentList as $student) { |
||
| 838 | $score = $main_cat[0]->calc_score( |
||
| 839 | $student['user_id'], |
||
| 840 | null, |
||
| 841 | $courseId, |
||
| 842 | $session_id |
||
| 843 | ); |
||
| 844 | if (!empty($score[0])) { |
||
| 845 | $invalidateRanking = false; |
||
| 846 | } |
||
| 847 | $totalRanking[$student['user_id']] = $score[0]; |
||
| 848 | $average += $score[0]; |
||
| 849 | } |
||
| 850 | $defaultData[$categoryId]['ranking'] = $totalRanking; |
||
| 851 | $defaultData[$categoryId]['ranking_invalidate'] = $invalidateRanking; |
||
| 852 | Session::write($this->getPreloadDataKey(), $defaultData); |
||
| 853 | } |
||
| 854 | |||
| 855 | $totalRanking = AbstractLink::getCurrentUserRanking($user_id, $totalRanking); |
||
| 856 | $totalRanking = $scoredisplay->display_score( |
||
| 857 | $totalRanking, |
||
| 858 | SCORE_DIV, |
||
| 859 | SCORE_BOTH, |
||
| 860 | true, |
||
| 861 | true, |
||
| 862 | true |
||
| 863 | ); |
||
| 864 | |||
| 865 | if ($invalidateRanking) { |
||
| 866 | $totalRanking = null; |
||
| 867 | } |
||
| 868 | $row[] = $totalRanking; |
||
| 869 | } |
||
| 870 | |||
| 871 | if (in_array(2, $this->loadStats)) { |
||
| 872 | if (isset($defaultData[$categoryId]) && isset($defaultData[$categoryId]['best'])) { |
||
| 873 | $totalBest = $defaultData[$categoryId]['best']; |
||
| 874 | } else { |
||
| 875 | // Overwrite main weight |
||
| 876 | $totalBest[1] = $mainWeight; |
||
| 877 | $defaultData[$categoryId]['best'] = $totalBest; |
||
| 878 | } |
||
| 879 | |||
| 880 | if ($useExerciseScoreInTotal) { |
||
| 881 | if (isset($totalBest['score'])) { |
||
| 882 | $totalBestScore = $totalBest['score']; |
||
| 883 | } else { |
||
| 884 | $totalBestScore = $totalBest; |
||
| 885 | } |
||
| 886 | |||
| 887 | $totalBest = ExerciseLib::show_score($totalBestScore[0], $totalBestScore[1], $showPercentage); |
||
| 888 | } else { |
||
| 889 | $totalBest = $scoredisplay->display_score( |
||
| 890 | $totalBest, |
||
| 891 | SCORE_DIV, |
||
| 892 | SCORE_BOTH, |
||
| 893 | true, |
||
| 894 | false, |
||
| 895 | true |
||
| 896 | ); |
||
| 897 | } |
||
| 898 | $row[] = $totalBest; |
||
| 899 | } |
||
| 900 | |||
| 901 | if (in_array(3, $this->loadStats)) { |
||
| 902 | if (isset($defaultData[$categoryId]) && isset($defaultData[$categoryId]['average'])) { |
||
| 903 | $totalAverage = $defaultData[$categoryId]['average']; |
||
| 904 | } else { |
||
| 905 | $averageWeight = 0; |
||
| 906 | $categoryAverage = 0; |
||
| 907 | foreach ($totalAverageList as $averageScore) { |
||
| 908 | $categoryAverage += $averageScore[0]; |
||
| 909 | $averageWeight += $averageScore[1]; |
||
| 910 | } |
||
| 911 | $categoryAverage = $categoryAverage / count($totalAverageList); |
||
| 912 | //$averageWeight = $averageWeight ($totalAverageList); |
||
| 913 | |||
| 914 | // Overwrite main weight |
||
| 915 | //$totalAverage[0] = $average / count($this->studentList); |
||
| 916 | //$totalAverage[1] = $main_weight; |
||
| 917 | $totalAverage[0] = $categoryAverage; |
||
| 918 | $totalAverage[1] = $averageWeight; |
||
| 919 | //$defaultData[$categoryId]['average'] = $totalBest; |
||
| 920 | } |
||
| 921 | |||
| 922 | if ($useExerciseScoreInTotal) { |
||
| 923 | if (isset($totalAverage['score'])) { |
||
| 924 | $totalAverageScore = $totalAverage['score']; |
||
| 925 | } else { |
||
| 926 | $totalAverageScore = $totalAverage; |
||
| 927 | } |
||
| 928 | |||
| 929 | $totalAverage = ExerciseLib::show_score($totalAverageScore[0], $totalAverageScore[1], $showPercentage); |
||
| 930 | } else { |
||
| 931 | $totalAverage = $scoredisplay->display_score( |
||
| 932 | $totalAverage, |
||
| 933 | SCORE_DIV, |
||
| 934 | SCORE_BOTH, |
||
| 935 | true, |
||
| 936 | false, |
||
| 937 | true |
||
| 938 | ); |
||
| 939 | } |
||
| 940 | |||
| 941 | $row[] = $totalAverage; |
||
| 942 | } |
||
| 943 | } |
||
| 944 | |||
| 945 | if (!empty($row)) { |
||
| 946 | $sortable_data[] = $row; |
||
| 947 | } |
||
| 948 | } |
||
| 949 | } |
||
| 950 | |||
| 951 | Session::write('default_data', $defaultData); |
||
| 952 | |||
| 953 | // Warning messages |
||
| 954 | $view = isset($_GET['view']) ? $_GET['view'] : null; |
||
| 955 | if ($this->teacherView) { |
||
| 956 | if (isset($_GET['selectcat']) && |
||
| 957 | $_GET['selectcat'] > 0 && |
||
| 958 | 'presence' !== $view |
||
| 959 | ) { |
||
| 960 | $id_cat = (int) $_GET['selectcat']; |
||
| 961 | $category = Category::load($id_cat); |
||
| 962 | if (isset($category[0])) { |
||
| 963 | $weight_category = (int) $this->build_weight($category[0]); |
||
| 964 | $course_code = $this->build_course_code($category[0]); |
||
| 965 | $localCourseInfo = api_get_course_info($course_code); |
||
| 966 | $localCourseId = $localCourseInfo['real_id']; |
||
| 967 | $weight_total_links = round($weight_total_links); |
||
| 968 | |||
| 969 | if ($weight_total_links > $weight_category || |
||
| 970 | $weight_total_links < $weight_category || |
||
| 971 | $weight_total_links > $weight_category |
||
| 972 | ) { |
||
| 973 | $warning_message = sprintf(get_lang('The sum of all weights of activities must be %s'), $weight_category); |
||
| 974 | $modify_icons = |
||
| 975 | '<a href="gradebook_edit_cat.php?editcat='.$id_cat.'&cid='.$localCourseId.'&sid='.api_get_session_id().'">'. |
||
| 976 | Display::getMdiIcon(ActionIcon::EDIT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Edit'), ['alt' => $warning_message]); |
||
| 977 | $warning_message .= $modify_icons; |
||
| 978 | echo Display::return_message($warning_message, 'warning', false); |
||
| 979 | } |
||
| 980 | |||
| 981 | $content_html = DocumentManager::replace_user_info_into_html( |
||
| 982 | api_get_user_id(), |
||
| 983 | $localCourseInfo, |
||
| 984 | api_get_session_id() |
||
| 985 | ); |
||
| 986 | |||
| 987 | if (!empty($content_html)) { |
||
| 988 | $new_content = explode('</head>', $content_html['content']); |
||
| 989 | } |
||
| 990 | |||
| 991 | if (empty($new_content[0])) { |
||
| 992 | // Set default certificate |
||
| 993 | DocumentManager::generateDefaultCertificate($localCourseInfo); |
||
| 994 | } |
||
| 995 | } |
||
| 996 | } |
||
| 997 | |||
| 998 | if (empty($_GET['selectcat'])) { |
||
| 999 | $categories = Category::load(); |
||
| 1000 | $weight_categories = $certificate_min_scores = $course_codes = []; |
||
| 1001 | foreach ($categories as $category) { |
||
| 1002 | $course_code_category = $this->build_course_code($category); |
||
| 1003 | if (!empty($course_code)) { |
||
| 1004 | if ($course_code_category == $course_code) { |
||
| 1005 | $weight_categories[] = intval($this->build_weight($category)); |
||
| 1006 | $certificate_min_scores[] = intval($this->build_certificate_min_score($category)); |
||
| 1007 | $course_codes[] = $course_code; |
||
| 1008 | break; |
||
| 1009 | } |
||
| 1010 | } else { |
||
| 1011 | $weight_categories[] = intval($this->build_weight($category)); |
||
| 1012 | $certificate_min_scores[] = intval($this->build_certificate_min_score($category)); |
||
| 1013 | $course_codes[] = $course_code_category; |
||
| 1014 | } |
||
| 1015 | } |
||
| 1016 | |||
| 1017 | if (is_array($weight_categories) && |
||
| 1018 | is_array($certificate_min_scores) && |
||
| 1019 | is_array($course_codes) |
||
| 1020 | ) { |
||
| 1021 | $warning_message = ''; |
||
| 1022 | for ($x = 0; $x < count($weight_categories); $x++) { |
||
|
|
|||
| 1023 | $weight_category = intval($weight_categories[$x]); |
||
| 1024 | $certificate_min_score = intval($certificate_min_scores[$x]); |
||
| 1025 | $course_code = $course_codes[$x]; |
||
| 1026 | |||
| 1027 | if (empty($certificate_min_score) || |
||
| 1028 | ($certificate_min_score > $weight_category) |
||
| 1029 | ) { |
||
| 1030 | $warning_message .= $course_code. |
||
| 1031 | ' - '.get_lang('Certificate minimum score is required and must not be more than'). |
||
| 1032 | ' '.$weight_category.'<br />'; |
||
| 1033 | } |
||
| 1034 | } |
||
| 1035 | |||
| 1036 | if (!empty($warning_message)) { |
||
| 1037 | echo Display::return_message($warning_message, 'warning', false); |
||
| 1038 | } |
||
| 1039 | } |
||
| 1040 | } |
||
| 1041 | } |
||
| 1042 | |||
| 1043 | return $sortable_data; |
||
| 1044 | } |
||
| 1343 |
If the size of the collection does not change during the iteration, it is generally a good practice to compute it beforehand, and not on each iteration: