/
var
/
www
/
html
/
eccsm
/
report
/
progressgroup
/
Upload File
HOME
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Activity progress reports * * @package report * @subpackage progressgroup * @copyright 2008 Sam Marshall * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require('../../config.php'); require_once($CFG->libdir . '/completionlib.php'); define('COMPLETION_REPORT_PAGE', 25); // Get course $id = required_param('course',PARAM_INT); $course = $DB->get_record('course',array('id'=>$id)); if (!$course) { print_error('invalidcourseid'); } $context = context_course::instance($course->id); // Sort (default lastname, optionally firstname) $sort = optional_param('sort','',PARAM_ALPHA); $firstnamesort = $sort == 'firstname'; // CSV format $format = optional_param('format','',PARAM_ALPHA); $excel = $format == 'excelcsv'; $csv = $format == 'csv' || $excel; // Paging $start = optional_param('start', 0, PARAM_INT); $sifirst = optional_param('sifirst', 'all', PARAM_ALPHA); $silast = optional_param('silast', 'all', PARAM_ALPHA); $start = optional_param('start', 0, PARAM_INT); // Whether to show extra user identity information $extrafields = get_extra_user_fields($context); $leftcols = 1 + count($extrafields); function csv_quote($value) { global $excel; if ($excel) { return textlib::convert('"'.str_replace('"',"'",$value).'"','UTF-8','UTF-16LE'); } else { return '"'.str_replace('"',"'",$value).'"'; } } $url = new moodle_url('/report/progressgroup/index.php', array('course'=>$id)); if ($sort !== '') { $url->param('sort', $sort); } if ($format !== '') { $url->param('format', $format); } if ($start !== 0) { $url->param('start', $start); } $PAGE->set_url($url); $PAGE->set_pagelayout('report'); require_login($course); // Check basic permission require_capability('report/progress:view',$context); // Get group mode $group = groups_get_course_group($course,true); // Supposed to verify group if ($group===0 && $course->groupmode==SEPARATEGROUPS) { require_capability('moodle/site:accessallgroups',$context); } // Get data on activities and progress of all users, and give error if we've // nothing to display (no users or no activities) $reportsurl = $CFG->wwwroot.'/course/report.php?id='.$course->id; $completion = new completion_info($course); $activities = $completion->get_activities(); // Generate where clause $where = array(); $where_params = array(); if ($sifirst !== 'all') { $where[] = $DB->sql_like('u.firstname', ':sifirst', false); $where_params['sifirst'] = $sifirst.'%'; } if ($silast !== 'all') { $where[] = $DB->sql_like('u.lastname', ':silast', false); $where_params['silast'] = $silast.'%'; } // Get user match count $total = $completion->get_num_tracked_users(implode(' AND ', $where), $where_params, $group); // Total user count $grandtotal = $completion->get_num_tracked_users('', array(), $group); // Get user data $progress = array(); $param = array(); if ($total) { $progress = $completion->get_progress_all( implode(' AND ', $where), $where_params, $group, $firstnamesort ? 'u.firstname ASC' : 'u.lastname ASC', $csv ? 0 : COMPLETION_REPORT_PAGE, $csv ? 0 : $start, $context ); //print groupsuser($id,"2882"); } if ($csv && $grandtotal && count($activities)>0) { // Only show CSV if there are some users/actvs $shortname = format_string($course->shortname, true, array('context' => $context)); header('Content-Disposition: attachment; filename=progressgroup.'. preg_replace('/[^a-z0-9-]/','_',textlib::strtolower(strip_tags($shortname))).'.csv'); // Unicode byte-order mark for Excel if ($excel) { header('Content-Type: text/csv; charset=UTF-16LE'); print chr(0xFF).chr(0xFE); $sep="\t".chr(0); $line="\n".chr(0); } else { header('Content-Type: text/csv; charset=UTF-8'); $sep=","; $line="\n"; } } else { // Navigation and header $strreports = get_string("reports"); $strcompletion = get_string('activitycompletion', 'completion'); $PAGE->set_title($strcompletion); $PAGE->set_heading($course->fullname); echo $OUTPUT->header(); $PAGE->requires->js('/report/progressgroup/textrotate.js'); $PAGE->requires->js_function_call('textrotate_init', null, true); // Handle groups (if enabled) groups_print_course_menu($course,$CFG->wwwroot.'/report/progressgroup/?course='.$course->id); } if (count($activities)==0) { echo $OUTPUT->container(get_string('err_noactivities', 'completion'), 'errorbox errorboxcontent'); echo $OUTPUT->footer(); exit; } // If no users in this course what-so-ever if (!$grandtotal) { echo $OUTPUT->container(get_string('err_nousers', 'completion'), 'errorbox errorboxcontent'); echo $OUTPUT->footer(); exit; } // Build link for paging $link = $CFG->wwwroot.'/report/progressgroup/?course='.$course->id; if (strlen($sort)) { $link .= '&sort='.$sort; } $link .= '&start='; // Build the the page by Initial bar $initials = array('first', 'last'); $alphabet = explode(',', get_string('alphabet', 'langconfig')); $pagingbar = ''; foreach ($initials as $initial) { $var = 'si'.$initial; $othervar = $initial == 'first' ? 'silast' : 'sifirst'; $othervar = $$othervar != 'all' ? "&{$othervar}={$$othervar}" : ''; $pagingbar .= ' <div class="initialbar '.$initial.'initial">'; $pagingbar .= get_string($initial.'name').': '; if ($$var == 'all') { $pagingbar .= '<strong>'.get_string('all').'</strong> '; } else { $pagingbar .= "<a href=\"{$link}{$othervar}\">".get_string('all').'</a> '; } foreach ($alphabet as $letter) { if ($$var === $letter) { $pagingbar .= '<strong>'.$letter.'</strong> '; } else { $pagingbar .= "<a href=\"$link&$var={$letter}{$othervar}\">$letter</a> "; } } $pagingbar .= '</div>'; } // Do we need a paging bar? if ($total > COMPLETION_REPORT_PAGE) { // Paging bar $pagingbar .= '<div class="paging">'; $pagingbar .= get_string('page').': '; $sistrings = array(); if ($sifirst != 'all') { $sistrings[] = "sifirst={$sifirst}"; } if ($silast != 'all') { $sistrings[] = "silast={$silast}"; } $sistring = !empty($sistrings) ? '&'.implode('&', $sistrings) : ''; // Display previous link if ($start > 0) { $pstart = max($start - COMPLETION_REPORT_PAGE, 0); $pagingbar .= "(<a class=\"previous\" href=\"{$link}{$pstart}{$sistring}\">".get_string('previous').'</a>) '; } // Create page links $curstart = 0; $curpage = 0; while ($curstart < $total) { $curpage++; if ($curstart == $start) { $pagingbar .= ' '.$curpage.' '; } else { $pagingbar .= " <a href=\"{$link}{$curstart}{$sistring}\">$curpage</a> "; } $curstart += COMPLETION_REPORT_PAGE; } // Display next link $nstart = $start + COMPLETION_REPORT_PAGE; if ($nstart < $total) { $pagingbar .= " (<a class=\"next\" href=\"{$link}{$nstart}{$sistring}\">".get_string('next').'</a>)'; } $pagingbar .= '</div>'; } // Okay, let's draw the table of progress info, // Start of table if (!$csv) { print '<br class="clearer"/>'; // ugh print $pagingbar; if (!$total) { echo $OUTPUT->heading(get_string('nothingtodisplay')); echo $OUTPUT->footer(); exit; } print '<div id="completion-progress-wrapper" class="no-overflow">'; print '<table id="completion-progress" class="generaltable flexible boxaligncenter" style="text-align:left"><thead><tr style="vertical-align:top">'; // User heading / sort option print '<th scope="col" class="completion-sortchoice">'; $sistring = "&silast={$silast}&sifirst={$sifirst}"; if ($firstnamesort) { print get_string('firstname')." / <a href=\"./?course={$course->id}{$sistring}\">". get_string('lastname').'</a>'; } else { print "<a href=\"./?course={$course->id}&sort=firstname{$sistring}\">". get_string('firstname').'</a> / '. get_string('lastname'); } print '</th>'; // Print user identity columns foreach ($extrafields as $field) { echo '<th scope="col" class="completion-identifyfield">' . get_user_field_name($field) . '</th>'; } echo '<th scope="col" class="completion-identifyfield">Turma</th>'; } else { foreach ($extrafields as $field) { echo $sep . csv_quote(get_user_field_name($field)); } echo $sep . csv_quote("Turma"); } // Activities foreach($activities as $activity) { $activity->datepassed = $activity->completionexpected && $activity->completionexpected <= time(); $activity->datepassedclass=$activity->datepassed ? 'completion-expired' : ''; if ($activity->completionexpected) { $datetext=userdate($activity->completionexpected,get_string('strftimedate','langconfig')); } else { $datetext=''; } // FCAV: Permite que ao extrair CSV o nome do modulo nao seja cortado $activityNameUnshorted = $activity->name; // Some names (labels) come URL-encoded and can be very long, so shorten them $activity->name = shorten_text($activity->name); if ($csv) { print $sep.csv_quote(strip_tags($activityNameUnshorted)).$sep.csv_quote($datetext); } else { $formattedactivityname = format_string($activity->name, true, array('context' => $context)); print '<th scope="col" class="'.$activity->datepassedclass.'">'. '<a href="'.$CFG->wwwroot.'/mod/'.$activity->modname. '/view.php?id='.$activity->id.'" title="' . $formattedactivityname . '">'. '<img src="'.$OUTPUT->pix_url('icon', $activity->modname).'" alt="'. get_string('modulename',$activity->modname).'" /> <span class="completion-activityname">'. $formattedactivityname.'</span></a>'; if ($activity->completionexpected) { print '<div class="completion-expected"><span>'.$datetext.'</span></div>'; } print '</th>'; } } if ($csv) { print $line; } else { print '</tr></thead><tbody>'; } // Row for each user foreach($progress as $user) { // User name if ($csv) { print csv_quote(fullname($user)); foreach ($extrafields as $field) { echo $sep . csv_quote($user->{$field}); } } else { print '<tr><th scope="row"><a href="'.$CFG->wwwroot.'/user/view.php?id='. $user->id.'&course='.$course->id.'">'.fullname($user).'</a></th>'; foreach ($extrafields as $field) { echo '<td nowrap>' . s($user->{$field}) . '</td>'; } } if ($format != '') { require_once(__DIR__ . '/lib.php'); } if ($csv) { echo $sep . csv_quote(returngroup($DB, $id,$user->id, true)); } else{ echo '<td nowrap>'.returngroup($DB, $id,$user->id, false).'</td>'; } // Progress for each activity foreach($activities as $activity) { // Get progress information and state if (array_key_exists($activity->id,$user->progress)) { $thisprogress=$user->progress[$activity->id]; $state=$thisprogress->completionstate; $date=userdate($thisprogress->timemodified); } else { $state=COMPLETION_INCOMPLETE; $date=''; } // Work out how it corresponds to an icon switch($state) { case COMPLETION_INCOMPLETE : $completiontype='n'; break; case COMPLETION_COMPLETE : $completiontype='y'; break; case COMPLETION_COMPLETE_PASS : $completiontype='pass'; break; case COMPLETION_COMPLETE_FAIL : $completiontype='fail'; break; } $completionicon='completion-'. ($activity->completion==COMPLETION_TRACKING_AUTOMATIC ? 'auto' : 'manual'). '-'.$completiontype; $modcontext = context_module::instance($activity->id); $describe = get_string('completion-' . $completiontype, 'completion'); $a=new StdClass; $a->state=$describe; $a->date=$date; $a->user=fullname($user); $a->activity = format_string($activity->name, true, array('context' => $modcontext)); $fulldescribe=get_string('progress-title','completion',$a); if ($csv) { print $sep.csv_quote($describe).$sep.csv_quote($date); } else { print '<td class="completion-progresscell '.$activity->datepassedclass.'">'. '<img src="'.$OUTPUT->pix_url('i/'.$completionicon). '" alt="'.$describe.'" title="'.$fulldescribe.'" /></td>'; } } if ($csv) { print $line; } else { print '</tr>'; } } if ($csv) { exit; } print '</tbody></table>'; print '</div>'; print $pagingbar; print '<ul class="progress-actions"><li><a href="index.php?course='.$course->id. '&format=csv">'.get_string('csvdownload','completion').'</a></li> <li><a href="index.php?course='.$course->id.'&format=excelcsv">'. get_string('excelcsvdownload','completion').'</a></li></ul>'; echo $OUTPUT->footer(); function groupsuser($courseid, $userid){ }