2010-04-30 03:06:22 +00:00
|
|
|
<?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/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file contains functions used by the progress report
|
|
|
|
*
|
|
|
|
* @package course-report
|
|
|
|
* @copyright 2009 Sam Hemelryk
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2010-07-19 04:06:51 +00:00
|
|
|
require_once($CFG->libdir.'/completionlib.php');
|
|
|
|
|
2010-04-30 03:06:22 +00:00
|
|
|
/**
|
|
|
|
* This function extends the navigation with the report items
|
|
|
|
*
|
|
|
|
* @param navigation_node $navigation The navigation node to extend
|
|
|
|
* @param stdClass $course The course to object for the report
|
|
|
|
* @param stdClass $context The context of the course
|
|
|
|
*/
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
function report_completion_extend_navigation_course($navigation, $course, $context) {
|
2010-04-30 03:06:22 +00:00
|
|
|
global $CFG, $OUTPUT;
|
|
|
|
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
if (has_capability('report/completion:view', $context)) {
|
2010-10-06 02:23:50 +00:00
|
|
|
$completion = new completion_info($course);
|
|
|
|
if ($completion->is_enabled() && $completion->has_criteria()) {
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
$url = new moodle_url('/report/completion/index.php', array('course'=>$course->id));
|
|
|
|
$navigation->add(get_string('pluginname','report_completion'), $url, navigation_node::TYPE_SETTING, null, null, new pix_icon('i/report', ''));
|
2010-10-06 02:23:50 +00:00
|
|
|
}
|
2010-04-30 03:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
2011-06-17 16:23:10 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of page types
|
|
|
|
* @param string $pagetype current page type
|
|
|
|
* @param stdClass $parentcontext Block's parent context
|
|
|
|
* @param stdClass $currentcontext Current context of block
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
* @return array
|
2011-06-17 16:23:10 +08:00
|
|
|
*/
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
function report_completion_page_type_list($pagetype, $parentcontext, $currentcontext) {
|
2011-06-17 16:23:10 +08:00
|
|
|
$array = array(
|
|
|
|
'*' => get_string('page-x', 'pagetype'),
|
|
|
|
'course-report-*' => get_string('page-course-report-x', 'pagetype'),
|
MDL-29030 migrate completion report to new report type
AMOS BEGIN
MOV [completion:view,coursereport_completion],[completion:view,report_completion]
MOV [completiondate,coursereport_completion],[completiondate,report_completion]
MOV [pluginpagetype,coursereport_completion],[pluginpagetype,report_completion]
MOV [pluginname,coursereport_completion],[pluginname,report_completion]
AMOS END
2011-11-02 10:56:35 +01:00
|
|
|
'course-report-completion-index' => get_string('pluginpagetype', 'report_completion')
|
2011-06-17 16:23:10 +08:00
|
|
|
);
|
|
|
|
return $array;
|
|
|
|
}
|