2009-09-21 07:22:57 +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 participation report
|
|
|
|
*
|
2011-11-02 11:24:44 +01:00
|
|
|
* @package report
|
|
|
|
* @subpackage participation
|
|
|
|
* @copyright 2009 Sam Hemelryk
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2009-09-21 07:22:57 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-02 11:57:56 +01:00
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
|
2009-09-21 07:22:57 +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
|
|
|
|
*/
|
2011-11-02 11:24:44 +01:00
|
|
|
function report_participation_extend_navigation_course($navigation, $course, $context) {
|
2009-09-21 07:22:57 +00:00
|
|
|
global $CFG, $OUTPUT;
|
2011-11-02 11:24:44 +01:00
|
|
|
if (has_capability('report/participation:view', $context)) {
|
|
|
|
$url = new moodle_url('/report/participation/index.php', array('id'=>$course->id));
|
|
|
|
$navigation->add(get_string('pluginname', 'report_participation'), $url, navigation_node::TYPE_SETTING, null, null, new pix_icon('i/report', ''));
|
2009-09-21 07:22:57 +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
|
2011-11-02 11:24:44 +01:00
|
|
|
* @return array
|
2011-06-17 16:23:10 +08:00
|
|
|
*/
|
2011-11-02 11:24:44 +01:00
|
|
|
function report_participation_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'),
|
2011-11-03 11:20:46 +01:00
|
|
|
'course-report-participation-index' => get_string('pluginpagetype', 'report_participation')
|
2011-06-17 16:23:10 +08:00
|
|
|
);
|
|
|
|
return $array;
|
2009-09-21 07:22:57 +00:00
|
|
|
}
|