mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-58140 completion: Added bulk activity completion page.
Part of MDL-58138 epic
This commit is contained in:
parent
b54bcddda4
commit
0b6208018f
11 changed files with 527 additions and 0 deletions
74
course/bulkcompletion.php
Normal file
74
course/bulkcompletion.php
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?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/>.
|
||||
|
||||
/**
|
||||
* Bulk activity completion selection
|
||||
*
|
||||
* @package core_completion
|
||||
* @category completion
|
||||
* @copyright 2017 Adrian Greeve
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
require_once(__DIR__.'/../config.php');
|
||||
require_once($CFG->dirroot.'/course/lib.php');
|
||||
require_once($CFG->libdir.'/completionlib.php');
|
||||
|
||||
$id = required_param('id', PARAM_INT); // course id
|
||||
$cmids = optional_param_array('cmid', [], PARAM_INT);
|
||||
|
||||
// Perform some basic access control checks.
|
||||
if ($id) {
|
||||
|
||||
if($id == SITEID){
|
||||
// Don't allow editing of 'site course' using this form.
|
||||
print_error('cannoteditsiteform');
|
||||
}
|
||||
|
||||
if (!$course = $DB->get_record('course', array('id' => $id))) {
|
||||
print_error('invalidcourseid');
|
||||
}
|
||||
require_login($course);
|
||||
require_capability('moodle/course:update', context_course::instance($course->id));
|
||||
|
||||
} else {
|
||||
require_login();
|
||||
print_error('needcourseid');
|
||||
}
|
||||
|
||||
// Set up the page.
|
||||
$PAGE->set_course($course);
|
||||
$PAGE->set_url('/course/bulkcompletion.php', array('id' => $course->id));
|
||||
$PAGE->set_title($course->shortname);
|
||||
$PAGE->set_heading($course->fullname);
|
||||
$PAGE->set_pagelayout('admin');
|
||||
|
||||
// Get all that stuff I need for the renderer.
|
||||
$manager = new \core_completion\manager($id);
|
||||
$bulkcompletiondata = $manager->get_activities_and_headings();
|
||||
|
||||
$renderer = $PAGE->get_renderer('core_course', 'bulk_activity_completion');
|
||||
|
||||
// Print the form.
|
||||
echo $OUTPUT->header();
|
||||
echo $OUTPUT->heading(get_string('editcoursecompletionsettings', 'core_completion'));
|
||||
|
||||
echo $renderer->navigation($id, 'bulkcompletion');
|
||||
|
||||
echo $renderer->bulkcompletion($bulkcompletiondata);
|
||||
|
||||
echo $OUTPUT->footer();
|
61
course/classes/output/bulk_activity_completion_renderer.php
Normal file
61
course/classes/output/bulk_activity_completion_renderer.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?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/>.
|
||||
|
||||
/**
|
||||
* Contains renderers for the bulk activity completion stuff.
|
||||
*
|
||||
* @package core_course
|
||||
* @copyright 2017 Adrian Greeve
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die;
|
||||
|
||||
require_once($CFG->dirroot.'/course/renderer.php');
|
||||
|
||||
/**
|
||||
* Main renderer for the bulk activity completion stuff.
|
||||
*
|
||||
* @package core_course
|
||||
* @copyright 2017 Adrian Greeve
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class core_course_bulk_activity_completion_renderer extends plugin_renderer_base {
|
||||
|
||||
public function navigation($courseid, $page) {
|
||||
$tabs = [];
|
||||
|
||||
$tabs[] = new tabobject(
|
||||
'completion',
|
||||
new moodle_url('/course/completion.php', ['id' => $courseid]),
|
||||
get_string('coursecompletion', 'completion')
|
||||
);
|
||||
|
||||
$tabs[] = new tabobject(
|
||||
'bulkcompletion',
|
||||
new moodle_url('/course/bulkcompletion.php', ['id' => $courseid]),
|
||||
get_string('bulkactivitycompletion', 'completion');
|
||||
);
|
||||
|
||||
return $this->tabtree($tabs, $page);
|
||||
}
|
||||
|
||||
|
||||
public function bulkcompletion($data) {
|
||||
return parent::render_from_template('core_course/bulkactivitycompletion', $data);
|
||||
}
|
||||
|
||||
}
|
|
@ -148,10 +148,14 @@ if ($form->is_cancelled()){
|
|||
redirect($url);
|
||||
}
|
||||
|
||||
$renderer = $PAGE->get_renderer('core_course', 'bulk_activity_completion');
|
||||
|
||||
// Print the form.
|
||||
echo $OUTPUT->header();
|
||||
echo $OUTPUT->heading(get_string('editcoursecompletionsettings', 'core_completion'));
|
||||
|
||||
echo $renderer->navigation($id, 'completion');
|
||||
|
||||
$form->display();
|
||||
|
||||
echo $OUTPUT->footer();
|
||||
|
|
71
course/templates/activityinstance.mustache
Normal file
71
course/templates/activityinstance.mustache
Normal file
|
@ -0,0 +1,71 @@
|
|||
{{!
|
||||
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/>.
|
||||
}}
|
||||
{{!
|
||||
@template core_course/activityinstance
|
||||
|
||||
Activity completion selector.
|
||||
|
||||
Example context (json):
|
||||
{
|
||||
"activities": [{
|
||||
"cmid": "4",
|
||||
"modname": "Test activity",
|
||||
"icon": {
|
||||
"attributes": [
|
||||
{"name": "src", "value": "https://raw.githubusercontent.com/moodle/moodle/master/pix/t/check.png"},
|
||||
{"name": "alt", "value": "Activity icon"}
|
||||
]
|
||||
},
|
||||
"completionstatus": {
|
||||
"string": "Manual",
|
||||
"icon": {
|
||||
"attributes": [
|
||||
{"name": "src", "value": "https://raw.githubusercontent.com/moodle/moodle/master/pix/t/check.png"},
|
||||
{"name": "alt", "value": "Completion icon"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}]
|
||||
}
|
||||
}}
|
||||
{{#activities}}
|
||||
<div class="row m-b-1">
|
||||
<div class="activityinstance col-sm-6 span6">
|
||||
<div class="mod-indent-outer"></div>
|
||||
<div>
|
||||
<input type="checkbox" class="m-r-1" name="cmid[]" data-section="{{sectionnumber}}" value="{{cmid}}" aria-label="{{#str}}checkactivity, completion, {{modname}}{{/str}}">
|
||||
<a href={{url}}>
|
||||
<img src="{{icon}}" class="iconlarge activityicon" alt=" " role="presentation" />
|
||||
<span class="instancename">{{modname}}</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="activity-completionstatus col-sm-6">
|
||||
<div class="col-sm-1">
|
||||
{{#completionstatus.icon}}
|
||||
<img src="{{completionstatus.icon}}" class="m-r-2">
|
||||
{{/completionstatus.icon}}
|
||||
{{^completionstatus.icon}}
|
||||
<span class="m-r-3"></span>
|
||||
{{/completionstatus.icon}}
|
||||
</div>
|
||||
<div class="col-sm-11">
|
||||
<span class="text-muted muted">{{{completionstatus.string}}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/activities}}
|
121
course/templates/bulkactivitycompletion.mustache
Normal file
121
course/templates/bulkactivitycompletion.mustache
Normal file
|
@ -0,0 +1,121 @@
|
|||
{{!
|
||||
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/>.
|
||||
}}
|
||||
{{!
|
||||
@template core_course/bulkactivitycompletion
|
||||
|
||||
Activity completion selector.
|
||||
|
||||
Example context (json):
|
||||
{
|
||||
"courseid": "2",
|
||||
"sesskey": "AAAAAA",
|
||||
"sections": [{
|
||||
"sectionnumber": "0",
|
||||
"name": "General",
|
||||
"activities": [{
|
||||
"cmid": "4",
|
||||
"modname": "Test activity",
|
||||
"icon": {
|
||||
"attributes": [
|
||||
{"name": "src", "value": "https://raw.githubusercontent.com/moodle/moodle/master/pix/t/check.png"},
|
||||
{"name": "alt", "value": "module icon"}
|
||||
]
|
||||
},
|
||||
"completionstatus": {
|
||||
"string": "Manual",
|
||||
"icon": {
|
||||
"attributes": [
|
||||
{"name": "src", "value": "https://raw.githubusercontent.com/moodle/moodle/master/pix/t/check.png"},
|
||||
{"name": "alt", "value": "completion icon"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
}
|
||||
}}
|
||||
<div class="container-fluid">
|
||||
<div class="row m-b-2">
|
||||
<div class="col">{{#str}}bulkactivitydetail, moodle{{/str}}</div>
|
||||
</div>
|
||||
<form method="post" action="bulkcompletion.php" class="mform">
|
||||
<div class="row m-b-2">
|
||||
<div class="col">
|
||||
<input type="submit" value="{{#str}}edit{{/str}}" class="btn btn-primary" name="submitbutton" aria-label="{{#str}}updateactivities, completion{{/str}}" />
|
||||
<input type="reset" value="{{#str}}cancel{{/str}}" class="btn btn-secondary" aria-label="{{#str}}resetactivities, completion{{/str}}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="top-section row m-b-1">
|
||||
<div class="col-sm-6 span6">
|
||||
<input type="checkbox" class="mastercheck m-r-1" aria-label="{{#str}}checkall, completion{{/str}}">
|
||||
<label class="font-weight-bold">{{#str}}activitieslabel, moodle{{/str}}</label>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label class="font-weight-bold">{{#str}}completiontracking, moodle{{/str}}</label>
|
||||
<span>{{{helpicon}}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="topics">
|
||||
|
||||
{{#sections}}
|
||||
|
||||
<div class="topic-section m-b-1">
|
||||
<div class="row m-b-1">
|
||||
<div class="col-sm-12">
|
||||
<input type="checkbox" data-section-master="{{sectionnumber}}" class="m-r-1" aria-label="{{#str}}checkallsection, completion, {{name}}{{/str}}">
|
||||
<h3>{{name}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
{{> core_course/activityinstance}}
|
||||
</div>
|
||||
|
||||
{{/sections}}
|
||||
|
||||
</div>
|
||||
<input type="hidden" name="id" value="{{courseid}}" />
|
||||
<input type="hidden" name="sesskey" value="{{sesskey}}" />
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<input type="submit" value="{{#str}}edit{{/str}}" class="btn btn-primary" name="submitbutton" />
|
||||
<input type="reset" value="{{#str}}cancel{{/str}}" class="btn btn-secondary" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{{#js}}
|
||||
require([
|
||||
'jquery',
|
||||
], function($) {
|
||||
$('.mastercheck').click(function() {
|
||||
var checked = $('.mastercheck').is(':checked');
|
||||
$('input[type=checkbox]').each(function() {
|
||||
$(this).prop('checked', checked);
|
||||
});
|
||||
});
|
||||
var mastersection = $('input[data-section-master]');
|
||||
mastersection.click(function() {
|
||||
var checked = $(this).is(':checked');
|
||||
var dataid = $(this).attr('data-section-master');
|
||||
$('input[type=checkbox][data-section=\'' + dataid + '\']').each(function() {
|
||||
$(this).prop('checked', checked);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
{{/js}}
|
Loading…
Add table
Add a link
Reference in a new issue