123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class FlatViewDataGenerator
- * Class to select, sort and transform object data into array data,
- * used for the teacher's flat view
- * @author Bert Steppé
- *
- * @package chamilo.gradebook
- */
- class FlatViewDataGenerator
- {
- // Sorting types constants
- const FVDG_SORT_LASTNAME = 1;
- const FVDG_SORT_FIRSTNAME = 2;
- const FVDG_SORT_ASC = 4;
- const FVDG_SORT_DESC = 8;
- private $users;
- private $evals;
- private $links;
- private $evals_links;
- public $params;
- public $category = array();
- private $mainCourseCategory;
- /**
- * @param array $users
- * @param array $evals
- * @param array $links
- * @param array $params
- * @param Category|null $mainCourseCategory
- */
- public function FlatViewDataGenerator(
- $users = array(),
- $evals = array(),
- $links = array(),
- $params = array(),
- $mainCourseCategory = null
- ) {
- $this->users = (isset($users) ? $users : array());
- $this->evals = (isset($evals) ? $evals : array());
- $this->links = (isset($links) ? $links : array());
- $this->evals_links = array_merge($this->evals, $this->links);
- $this->params = $params;
- $this->mainCourseCategory = $mainCourseCategory;
- }
- /**
- * @return Category
- */
- public function getMainCourseCategory()
- {
- return $this->mainCourseCategory;
- }
- /**
- * Get total number of users (rows)
- * @return int
- */
- public function get_total_users_count()
- {
- return count($this->users);
- }
- /**
- * Get total number of evaluations/links (columns) (the 2 users columns not included)
- * @return int
- */
- public function get_total_items_count()
- {
- return count($this->evals_links);
- }
- /**
- * Get array containing column header names (incl user columns)
- * @param int $items_start Start item offset
- * @param int $items_count Number of items to get
- * @param bool $show_detail whether to show the details or not
- * @return array List of headers
- */
- public function get_header_names($items_start = 0, $items_count = null, $show_detail = false)
- {
- $headers = array();
- if (isset($this->params['show_official_code']) && $this->params['show_official_code']) {
- $headers[] = get_lang('OfficialCode');
- }
- if (isset($this->params['join_firstname_lastname']) && $this->params['join_firstname_lastname']) {
- if (api_is_western_name_order()) {
- $headers[] = get_lang('FirstnameAndLastname');
- } else {
- $headers[] = get_lang('LastnameAndFirstname');
- }
- } else {
- if (api_is_western_name_order()) {
- $headers[] = get_lang('FirstName');
- $headers[] = get_lang('LastName');
- } else {
- $headers[] = get_lang('LastName');
- $headers[] = get_lang('FirstName');
- }
- }
- if (!isset($items_count)) {
- $items_count = count($this->evals_links) - $items_start;
- }
- $parent_id = $this->category->get_parent_id();
- if ($parent_id == 0 ||
- isset($this->params['only_subcat']) &&
- $this->params['only_subcat'] == $this->category->get_id()
- ) {
- $main_weight = $this->category->get_weight();
- $grade_model_id = $this->category->get_grade_model_id();
- } else {
- $main_cat = Category::load($parent_id, null, null);
- $main_weight = $main_cat[0]->get_weight();
- $grade_model_id = $main_cat[0]->get_grade_model_id();
- }
- $use_grade_model = true;
- if (empty($grade_model_id) || $grade_model_id == -1) {
- $use_grade_model = false;
- }
- //@todo move these in a function
- $sum_categories_weight_array = array();
- $mainCategoryId = null;
- $mainCourseCategory = $this->getMainCourseCategory();
- if (!empty($mainCourseCategory)) {
- $mainCategoryId = $mainCourseCategory->get_id();
- }
- if (isset($this->category) && !empty($this->category)) {
- $categories = Category::load(null, null, null, $this->category->get_id());
- if (!empty($categories)) {
- foreach ($categories as $category) {
- $sum_categories_weight_array[$category->get_id()] = $category->get_weight();
- }
- } else {
- $sum_categories_weight_array[$this->category->get_id()] = $this->category->get_weight();
- }
- }
- // No category was added
- $course_code = api_get_course_id();
- $session_id = api_get_session_id();
- $allcat = $this->category->get_subcategories(
- null,
- $course_code,
- $session_id,
- 'ORDER BY id'
- );
- $evaluationsAdded = array();
- if ($parent_id == 0 && !empty($allcat)) {
- // Means there are any subcategory
- foreach ($allcat as $sub_cat) {
- $sub_cat_weight = round(100 * $sub_cat->get_weight() / $main_weight, 1);
- $add_weight = " $sub_cat_weight %";
- $mainHeader = Display::url(
- $sub_cat->get_name(),
- api_get_self().'?selectcat='.$sub_cat->get_id().'&'.api_get_cidreq()
- ).$add_weight;
- if (api_get_setting('gradebook_detailed_admin_view') === 'true') {
- $links = $sub_cat->get_links();
- $evaluations = $sub_cat->get_evaluations();
- /** @var ExerciseLink $link */
- $linkNameList = [];
- foreach ($links as $link) {
- $linkNameList[] = $link->get_name();
- }
- $evalNameList = [];
- foreach ($evaluations as $evaluation) {
- $evalNameList[] = $evaluation->get_name();
- }
- $finalList = array_merge($linkNameList, $evalNameList);
- if (!empty($finalList)) {
- $finalList[] = get_lang('Average');
- }
- $list = [];
- $list['items'] = $finalList;
- $list['header'] = '<center>'.$mainHeader.'</center>';
- $headers[]= $list;
- } else {
- $headers[] = '<center>'.$mainHeader.'</center>';
- }
- }
- } else {
- if (!isset($this->params['only_total_category']) ||
- (isset($this->params['only_total_category']) &&
- $this->params['only_total_category'] == false)
- ) {
- for ($count=0; ($count < $items_count ) && ($items_start + $count < count($this->evals_links)); $count++) {
- /** @var AbstractLink $item */
- $item = $this->evals_links[$count + $items_start];
- $weight = round(100 * $item->get_weight() / $main_weight, 1);
- $headers[] = $item->get_name().' '.$weight.' % ';
- $evaluationsAdded[] = $item->get_id();
- }
- }
- }
- if (!empty($mainCategoryId)) {
- for ($count = 0; ($count < $items_count) && ($items_start + $count < count($this->evals_links)); $count++) {
- /** @var AbstractLink $item */
- $item = $this->evals_links[$count + $items_start];
- if ($mainCategoryId == $item->get_category_id() &&
- !in_array($item->get_id(), $evaluationsAdded)
- ) {
- $weight = round(100 * $item->get_weight() / $main_weight, 1);
- $headers[] = $item->get_name() . ' ' . $weight . ' % ';
- }
- }
- }
- $headers[] = '<center>'.api_strtoupper(get_lang('GradebookQualificationTotal')).'</center>';
- return $headers;
- }
- /**
- * @param int $id
- *
- * @return int
- */
- public function get_max_result_by_link($id)
- {
- $max = 0;
- foreach ($this->users as $user) {
- $item = $this->evals_links [$id];
- $score = $item->calc_score($user[0]);
- if ($score[0] > $max) {
- $max = $score[0];
- }
- }
- return $max;
- }
- /**
- * Get array containing evaluation items
- * @return array
- */
- public function get_evaluation_items($items_start = 0, $items_count = null)
- {
- $headers = array();
- if (!isset($items_count)) {
- $items_count = count($this->evals_links) - $items_start;
- }
- for ($count=0; ($count < $items_count ) && ($items_start + $count < count($this->evals_links)); $count++) {
- $item = $this->evals_links [$count + $items_start];
- $headers[] = $item->get_name();
- }
- return $headers;
- }
- /**
- * Get actual array data
- * @param integer $users_count
- * @param integer $items_count
- * @return array 2-dimensional array - each array contains the elements:
- * 0: user id
- * 1: user lastname
- * 2: user firstname
- * 3+: evaluation/link scores
- */
- public function get_data(
- $users_sorting = 0,
- $users_start = 0,
- $users_count = null,
- $items_start = 0,
- $items_count = null,
- $ignore_score_color = false,
- $show_all = false
- ) {
- // Do some checks on users/items counts, redefine if invalid values
- if (!isset($users_count)) {
- $users_count = count ($this->users) - $users_start;
- }
- if ($users_count < 0) {
- $users_count = 0;
- }
- if (!isset($items_count)) {
- $items_count = count ($this->evals) + count ($this->links) - $items_start;
- }
- if ($items_count < 0) {
- $items_count = 0;
- }
- $userTable = array();
- foreach ($this->users as $user) {
- $userTable[] = $user;
- }
- // sort users array
- if ($users_sorting & self :: FVDG_SORT_LASTNAME) {
- usort($userTable, array('FlatViewDataGenerator','sort_by_last_name'));
- } elseif ($users_sorting & self :: FVDG_SORT_FIRSTNAME) {
- usort($userTable, array('FlatViewDataGenerator','sort_by_first_name'));
- }
- if ($users_sorting & self :: FVDG_SORT_DESC) {
- $userTable = array_reverse($userTable);
- }
- // Select the requested users
- $selected_users = array_slice($userTable, $users_start, $users_count);
- // Generate actual data array
- $scoredisplay = ScoreDisplay::instance();
- $data = array();
- $displaytype = SCORE_DIV;
- if ($ignore_score_color) {
- $displaytype |= SCORE_IGNORE_SPLIT;
- }
- //@todo move these in a function
- $sum_categories_weight_array = array();
- $mainCategoryId = null;
- $mainCourseCategory = $this->getMainCourseCategory();
- if (!empty($mainCourseCategory)) {
- $mainCategoryId = $mainCourseCategory->get_id();
- }
- if (isset($this->category) && !empty($this->category)) {
- $categories = Category::load(null, null, null, $this->category->get_id());
- if (!empty($categories)) {
- foreach ($categories as $category) {
- $sum_categories_weight_array[$category->get_id()] = $category->get_weight();
- }
- } else {
- $sum_categories_weight_array[$this->category->get_id()] = $this->category->get_weight();
- }
- }
- $parent_id = $this->category->get_parent_id();
- if (
- $parent_id == 0 ||
- (isset($this->params['only_subcat']) && $this->params['only_subcat'] == $this->category->get_id())
- ) {
- $main_weight = $this->category->get_weight();
- $grade_model_id = $this->category->get_grade_model_id();
- } else {
- $main_cat = Category::load($parent_id, null, null);
- $main_weight = $main_cat[0]->get_weight();
- $grade_model_id = $main_cat[0]->get_grade_model_id();
- }
- $use_grade_model = true;
- if (empty($grade_model_id) || $grade_model_id == -1) {
- $use_grade_model = false;
- }
- $export_to_pdf = false;
- if (isset($this->params['export_pdf']) && $this->params['export_pdf']) {
- $export_to_pdf = true;
- }
- foreach ($selected_users as $user) {
- $row = array();
- // User id
- if ($export_to_pdf) {
- $row['user_id'] = $user_id = $user[0];
- } else {
- $row[] = $user_id = $user[0];
- }
- // Official code
- if (isset($this->params['show_official_code']) && $this->params['show_official_code']) {
- if ($export_to_pdf) {
- $row['official_code'] = $user[4];
- } else {
- $row[] = $user[4];
- }
- }
- // Last name
- if (isset($this->params['join_firstname_lastname']) &&
- $this->params['join_firstname_lastname']
- ) {
- if ($export_to_pdf) {
- $row['name'] = api_get_person_name($user[3], $user[2]);
- } else {
- $row[] = api_get_person_name($user[3], $user[2]);
- }
- } else {
- if ($export_to_pdf) {
- if (api_is_western_name_order()) {
- $row['firstname'] = $user[3];
- $row['lastname'] = $user[2];
- } else {
- $row['lastname'] = $user[2];
- $row['firstname'] = $user[3];
- }
- } else {
- if (api_is_western_name_order()) {
- $row[] = $user[3]; //first name
- $row[] = $user[2]; //last name
- } else {
- $row[] = $user[2]; //last name
- $row[] = $user[3]; //first name
- }
- }
- }
- $item_value = 0;
- $item_value_total = 0;
- $item_total = 0;
- $convert_using_the_global_weight = true;
- $course_code = api_get_course_id();
- $session_id = api_get_session_id();
- $allcat = $this->category->get_subcategories(
- null,
- $course_code,
- $session_id,
- 'ORDER BY id'
- );
- $evaluationsAdded = array();
- if ($parent_id == 0 && !empty($allcat)) {
- /** @var Category $sub_cat */
- foreach ($allcat as $sub_cat) {
- $score = $sub_cat->calc_score($user_id);
- if (api_get_setting('gradebook_detailed_admin_view') === 'true') {
- $links = $sub_cat->get_links();
- $evaluations = $sub_cat->get_evaluations();
- /** @var ExerciseLink $link */
- $linkScoreList = [];
- foreach ($links as $link) {
- $linkScore = $link->calc_score($user_id);
- $linkScoreList[] = $scoredisplay->display_score(
- $linkScore,
- SCORE_SIMPLE
- );
- }
- $evalScoreList = [];
- foreach ($evaluations as $evaluation) {
- $evalScore = $evaluation->calc_score($user_id);
- $evalScoreList[] = $scoredisplay->display_score(
- $evalScore,
- SCORE_SIMPLE
- );
- }
- }
- $real_score = $score;
- $divide = $score[1] == 0 ? 1 : $score[1];
- $sub_cat_percentage = $sum_categories_weight_array[$sub_cat->get_id()];
- $item_value = $score[0]/$divide*$main_weight;
- // Fixing total when using one or multiple gradebooks
- $percentage = $sub_cat->get_weight()/($sub_cat_percentage) * $sub_cat_percentage/$this->category->get_weight();
- $item_value = $percentage*$item_value;
- $item_total += $sub_cat->get_weight();
- /*
- if ($convert_using_the_global_weight) {
- $score[0] = $score[0]/$main_weight*$sub_cat->get_weight();
- $score[1] = $main_weight ;
- }
- */
- if (api_get_setting('gradebook_show_percentage_in_reports') == 'false') {
- $real_score = $scoredisplay->display_score($real_score, SCORE_SIMPLE);
- $temp_score = $scoredisplay->display_score($score, SCORE_DIV_SIMPLE_WITH_CUSTOM);
- $temp_score = Display::tip($real_score, $temp_score);
- } else {
- $real_score = $scoredisplay->display_score($real_score, SCORE_DIV_PERCENT, SCORE_ONLY_SCORE);
- $temp_score = $scoredisplay->display_score($score, SCORE_DIV_SIMPLE_WITH_CUSTOM);
- $temp_score = Display::tip($temp_score, $real_score);
- }
- if (!isset($this->params['only_total_category']) ||
- (isset($this->params['only_total_category']) &&
- $this->params['only_total_category'] == false)
- ) {
- if (!$show_all) {
- if (api_get_setting('gradebook_detailed_admin_view') === 'true') {
- $finalList = array_merge($linkScoreList, $evalScoreList);
- if (empty($finalList)) {
- $average = 0;
- } else {
- $average = array_sum($finalList) / count($finalList);
- }
- $finalList[] = round($average, 2);
- foreach ($finalList as $finalValue) {
- $row[] = '<center>'.$finalValue.'</center>';
- }
- } else {
- $row[] = $temp_score.' ';
- }
- } else {
- $row[] = $temp_score;
- }
- }
- $item_value_total += $item_value;
- }
- if ($convert_using_the_global_weight) {
- //$item_total = $main_weight;
- }
- } else {
- // All evaluations
- $result = $this->parseEvaluations(
- $user_id,
- $sum_categories_weight_array,
- $items_count,
- $items_start,
- $show_all,
- $row
- );
- $item_total += $result['item_total'];
- $item_value_total += $result['item_value_total'];
- $evaluationsAdded = $result['evaluations_added'];
- $item_total = $main_weight;
- }
- // All evaluations
- $result = $this->parseEvaluations(
- $user_id,
- $sum_categories_weight_array,
- $items_count,
- $items_start,
- $show_all,
- $row,
- $mainCategoryId,
- $evaluationsAdded
- );
- $item_total += $result['item_total'];
- $item_value_total += $result['item_value_total'];
- $total_score = array($item_value_total, $item_total);
- if (!$show_all) {
- if ($export_to_pdf) {
- $row['total'] = $scoredisplay->display_score($total_score);
- } else {
- $row[] = $scoredisplay->display_score($total_score);
- }
- } else {
- if ($export_to_pdf) {
- $row['total'] = $scoredisplay->display_score($total_score, SCORE_DIV_SIMPLE_WITH_CUSTOM_LETTERS);
- } else {
- $row[] = $scoredisplay->display_score($total_score, SCORE_DIV_SIMPLE_WITH_CUSTOM_LETTERS);
- }
- }
- unset($score);
- $data[] = $row;
- }
- return $data;
- }
- /**
- * Parse evaluations
- *
- * @param int $user_id
- * @param array $sum_categories_weight_array
- * @param int $items_count
- * @param int $items_start
- * @param int $show_all
- * @param int $parentCategoryIdFilter filter by category id if set
- * @return array
- */
- public function parseEvaluations(
- $user_id,
- $sum_categories_weight_array,
- $items_count,
- $items_start,
- $show_all,
- & $row,
- $parentCategoryIdFilter = null,
- $evaluationsAlreadyAdded = array()
- ) {
- // Generate actual data array
- $scoredisplay = ScoreDisplay :: instance();
- $item_total = 0;
- $item_value_total = 0;
- $evaluationsAdded = array();
- for ($count = 0; $count < $items_count && ($items_start + $count < count($this->evals_links)); $count++) {
- /** @var AbstractLink $item */
- $item = $this->evals_links[$count + $items_start];
- if (!empty($evaluationsAlreadyAdded)) {
- if (in_array($item->get_id(), $evaluationsAlreadyAdded)) {
- continue;
- }
- }
- if (!empty($parentCategoryIdFilter)) {
- if ($item->get_category_id() != $parentCategoryIdFilter) {
- continue;
- }
- }
- $evaluationsAdded[] = $item->get_id();
- $score = $item->calc_score($user_id);
- $real_score = $score;
- $divide = isset($score[1]) && !empty($score[1]) ? $score[1] : 1;
- // Sub cat weight
- //$sub_cat_percentage = $sum_categories_weight_array[$item->get_category_id()];
- $item_value = isset($score[0]) ? $score[0]/$divide : 0;
- // Fixing total when using one or multiple gradebooks.
- if (empty($parentCategoryIdFilter)) {
- if ($this->category->get_parent_id() == 0) {
- $item_value = $score[0] / $divide * $item->get_weight();
- } else {
- $item_value = $item_value * $item->get_weight();
- }
- } else {
- $item_value = $score[0] / $divide * $item->get_weight();
- }
- $item_total += $item->get_weight();
- $complete_score = $scoredisplay->display_score($score, SCORE_DIV_PERCENT, SCORE_ONLY_SCORE);
- //$temp_score = $scoredisplay->display_score(array($item_value, null), SCORE_DIV_SIMPLE_WITH_CUSTOM);
- //$temp_score = Display::tip($temp_score, $complete_score);
- if (api_get_setting('gradebook_show_percentage_in_reports') == 'false') {
- $real_score = $scoredisplay->display_score($real_score, SCORE_SIMPLE);
- $temp_score = $scoredisplay->display_score(array($item_value, null), SCORE_DIV_SIMPLE_WITH_CUSTOM);
- $temp_score = Display::tip($real_score, $temp_score);
- } else {
- $temp_score = $scoredisplay->display_score($real_score, SCORE_DIV_PERCENT_WITH_CUSTOM);
- $temp_score = Display::tip($temp_score, $complete_score);
- }
- if (!isset($this->params['only_total_category']) ||
- (isset($this->params['only_total_category']) && $this->params['only_total_category'] == false)
- ) {
- if (!$show_all) {
- if (in_array($item->get_type(), array(
- LINK_EXERCISE,
- LINK_DROPBOX,
- LINK_STUDENTPUBLICATION,
- LINK_LEARNPATH,
- LINK_FORUM_THREAD,
- LINK_ATTENDANCE,
- LINK_SURVEY,
- LINK_HOTPOTATOES)
- )
- ) {
- if (!empty($score[0])) {
- $row[] = $temp_score.' ';
- } else {
- $row[] = '';
- }
- } else {
- $row[] = $temp_score.' ';
- }
- } else {
- $row[] = $temp_score;
- }
- }
- $item_value_total += $item_value;
- }
- return array(
- 'item_total' => $item_total,
- 'item_value_total' => $item_value_total,
- 'evaluations_added' => $evaluationsAdded
- );
- }
- /**
- * Get actual array data evaluation/link scores
- * @param int $session_id
- * @return array
- */
- public function get_evaluation_sumary_results($session_id = null)
- {
- $usertable = array();
- foreach ($this->users as $user) {
- $usertable[] = $user;
- }
- $selected_users = $usertable;
- // generate actual data array for all selected users
- $data = array();
- foreach ($selected_users as $user) {
- $row = array ();
- for ($count=0;$count < count($this->evals_links); $count++) {
- $item = $this->evals_links [$count];
- $score = $item->calc_score($user[0]);
- $porcent_score = isset($score[1]) && $score[1] > 0 ? ($score[0]*100)/$score[1] :0;
- $row[$item->get_name()] = $porcent_score;
- }
- $data[$user[0]] = $row;
- }
- // get evaluations for every user by item
- $data_by_item = array();
- foreach ($data as $uid => $items) {
- $tmp = array();
- foreach ($items as $item => $value) {
- $tmp[] = $item;
- if (in_array($item,$tmp)) {
- $data_by_item[$item][$uid] = $value;
- }
- }
- }
- /* Get evaluation summary results
- (maximum, minimum and average of evaluations for all students)
- */
- $result = array();
- foreach ($data_by_item as $k => $v) {
- $average = round(array_sum($v)/count($v));
- arsort($v);
- $maximum = array_shift($v);
- $minimum = array_pop($v);
- if (is_null($minimum)) {
- $minimum = 0;
- }
- $summary= array(
- 'max' => $maximum,
- 'min' => $minimum,
- 'avg' => $average
- );
- $result[$k] = $summary;
- }
- return $result;
- }
- /**
- * @return array
- */
- public function get_data_to_graph()
- {
- // do some checks on users/items counts, redefine if invalid values
- $usertable = array ();
- foreach ($this->users as $user) {
- $usertable[] = $user;
- }
- // sort users array
- usort($usertable, array ('FlatViewDataGenerator','sort_by_first_name'));
- $data = array ();
- $selected_users = $usertable;
- foreach ($selected_users as $user) {
- $row = array ();
- $row[] = $user[0]; // user id
- $item_value = 0;
- $item_total = 0;
- for ($count=0;$count < count($this->evals_links); $count++) {
- $item = $this->evals_links[$count];
- $score = $item->calc_score($user[0]);
- $divide =( ($score[1])==0 ) ? 1 : $score[1];
- $item_value += $score[0]/$divide*$item->get_weight();
- $item_total += $item->get_weight();
- $score_denom = ($score[1]==0) ? 1 : $score[1];
- $score_final = ($score[0] / $score_denom) * 100;
- $row[] = $score_final;
- }
- //$total_score = array($item_value, $item_total);
- $score_final = ($item_value / $item_total) * 100;
- $row[] = $score_final;
- $data[] = $row;
- }
- return $data;
- }
- /**
- * This is a function to show the generated data
- * @param bool $displayWarning
- * @return array
- */
- public function get_data_to_graph2($displayWarning = true)
- {
- // do some checks on users/items counts, redefine if invalid values
- $usertable = array();
- foreach ($this->users as $user) {
- $usertable[] = $user;
- }
- // sort users array
- usort($usertable, array ('FlatViewDataGenerator','sort_by_first_name'));
- // generate actual data array
- $scoredisplay = ScoreDisplay :: instance();
- $data = array();
- $selected_users = $usertable;
- foreach ($selected_users as $user) {
- $row = array ();
- $row[] = $user[0]; // user id
- $item_value = 0;
- $item_total = 0;
- $final_score = 0;
- $item_value_total = 0;
- $convert_using_the_global_weight = true;
- $course_code = api_get_course_id();
- $session_id = api_get_session_id();
- $allcat = $this->category->get_subcategories(null, $course_code, $session_id, 'ORDER BY id');
- $parent_id = $this->category->get_parent_id();
- if ($parent_id == 0 && !empty($allcat)) {
- foreach ($allcat as $sub_cat) {
- $score = $sub_cat->calc_score($user[0]);
- $real_score = $score;
- $main_weight = $this->category->get_weight();
- $divide = $score[1] == 0 ? 1 : $score[1];
- //$sub_cat_percentage = $sum_categories_weight_array[$sub_cat->get_id()];
- $item_value = $score[0]/$divide*$main_weight;
- $item_total += $sub_cat->get_weight();
- $row[] = array(
- $item_value,
- trim($scoredisplay->display_score($real_score, SCORE_CUSTOM, null, true))
- );
- $item_value_total += $item_value;
- $final_score += $score[0];
- //$final_score = ($final_score / $item_total) * 100;
- }
- $total_score = array($final_score, $item_total);
- $row[] = array(
- $final_score,
- trim($scoredisplay->display_score($total_score, SCORE_CUSTOM, null, true))
- );
- } else {
- for ($count=0;$count < count($this->evals_links); $count++) {
- $item = $this->evals_links [$count];
- $score = $item->calc_score($user[0]);
- $divide = ($score[1]) == 0 ? 1 : $score[1];
- $item_value += $score[0] / $divide * $item->get_weight();
- $item_total+=$item->get_weight();
- $score_denom=($score[1]==0) ? 1 : $score[1];
- $score_final = ($score[0] / $score_denom) * 100;
- $row[] = array ($score_final, trim($scoredisplay->display_score($score, SCORE_CUSTOM,null, true)));
- }
- $total_score=array($item_value,$item_total);
- $score_final = ($item_value / $item_total) * 100;
- if ($displayWarning) {
- Display::display_warning_message( Display::display_warning_message($total_score[1]));
- }
- $row[] =array ($score_final, trim($scoredisplay->display_score($total_score, SCORE_CUSTOM, null, true)));
- }
- $data[] = $row;
- }
- return $data;
- }
- /**
- * @param $item1
- * @param $item2
- * @return int
- */
- public function sort_by_last_name($item1, $item2)
- {
- return api_strcmp($item1[2], $item2[2]);
- }
- /**
- * @param $item1
- * @param $item2
- * @return int
- */
- public function sort_by_first_name($item1, $item2)
- {
- return api_strcmp($item1[3], $item2[3]);
- }
- }
|