Skip to content

Commit

Permalink
MDL-41101 mod_assign: replaced 'view batch set marker allocation' add…
Browse files Browse the repository at this point in the history
…_to_log call with an event
  • Loading branch information
mdjnelson authored and Petr Skoda committed Apr 17, 2014
1 parent eef4d59 commit 81f92c2
Show file tree
Hide file tree
Showing 5 changed files with 138 additions and 2 deletions.
77 changes: 77 additions & 0 deletions mod/assign/classes/event/batch_set_marker_allocation_viewed.php
@@ -0,0 +1,77 @@
<?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/>.

/**
* The mod_assign batch set marker allocation viewed event.
*
* @property-read array $other {
* Extra information about event.
*
* - int assignid: the id of the assignment.
* }
*
* @package mod_assign
* @since Moodle 2.7
* @copyright 2014 Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace mod_assign\event;

defined('MOODLE_INTERNAL') || die();

class batch_set_marker_allocation_viewed extends base {

/**
* Init method.
*/
protected function init() {
$this->data['crud'] = 'r';
$this->data['edulevel'] = self::LEVEL_TEACHING;
}

/**
* Returns localised general event name.
*
* @return string
*/
public static function get_name() {
return get_string('eventbatchsetmarkerallocationviewed', 'mod_assign');
}

/**
* Returns description of what happened.
*
* @return string
*/
public function get_description() {
return "The user with the id {$this->userid} viewed the batch set marker allocation for the assignment with the id
{$this->other['assignid']}.";
}

/**
* Custom validation.
*
* @throws \coding_exception
*/
protected function validate_data() {
parent::validate_data();

if (!isset($this->other['assignid'])) {
throw new \coding_exception('The \'assignid\' must be set in other.');
}
}
}
1 change: 1 addition & 0 deletions mod/assign/lang/en/assign.php
Expand Up @@ -142,6 +142,7 @@
$string['editaction'] = 'Actions...';
$string['eventallsubmissionsdownloaded'] = 'All the submissions are being downloaded.';
$string['eventassessablesubmitted'] = 'A submission has been submitted.';
$string['eventbatchsetmarkerallocationviewed'] = 'Batch set marker allocation viewed';
$string['eventbatchsetworkflowstateviewed'] = 'Batch set workflow state viewed.';
$string['eventextensiongranted'] = 'An extension has been granted.';
$string['eventfeedbackviewed'] = 'Feedback viewed';
Expand Down
13 changes: 11 additions & 2 deletions mod/assign/locallib.php
Expand Up @@ -3603,7 +3603,7 @@ protected function view_batch_set_workflow_state($mform) {
* @param moodleform $mform Set to a grading batch operations form
* @return string - the page to view after processing these actions
*/
private function view_batch_markingallocation($mform) {
public function view_batch_markingallocation($mform) {
global $CFG, $DB;

require_once($CFG->dirroot . '/mod/assign/batchsetallocatedmarkerform.php');
Expand Down Expand Up @@ -3654,7 +3654,16 @@ private function view_batch_markingallocation($mform) {
$o .= $this->get_renderer()->render(new assign_form('setworkflowstate', $mform));
$o .= $this->view_footer();

$this->add_to_log('view batch set marker allocation', get_string('viewbatchmarkingallocation', 'assign'));
$logmessage = new lang_string('viewbatchmarkingallocation', 'assign');
$event = \mod_assign\event\batch_set_marker_allocation_viewed::create(array(
'context' => $this->get_context(),
'other' => array(
'assignid' => $this->get_instance()->id
)
));
$event->set_legacy_logdata('view batch set marker allocation', $logmessage);
$event->trigger();

return $o;
}

Expand Down
22 changes: 22 additions & 0 deletions mod/assign/tests/base_test.php
Expand Up @@ -312,4 +312,26 @@ public function testable_view_batch_set_workflow_state() {

return parent::view_batch_set_workflow_state($mform);
}

public function testable_view_batch_markingallocation() {
global $CFG;

require_once($CFG->dirroot . '/mod/assign/batchsetallocatedmarkerform.php');

// Mock submit data.
$data = array();
$data['selectedusers'] = '1';
mod_assign_batch_set_allocatedmarker_form::mock_submit($data);

// Set required variables in the form - not valid just allows us to continue.
$formparams = array();
$formparams['users'] = array(1);
$formparams['usershtml'] = 1;
$formparams['cm'] = $this->get_course_module()->id;
$formparams['context'] = $this->get_context();
$formparams['markers'] = 1;
$mform = new mod_assign_batch_set_allocatedmarker_form('', $formparams);

return parent::view_batch_markingallocation($mform);
}
}
27 changes: 27 additions & 0 deletions mod/assign/tests/events_test.php
Expand Up @@ -880,4 +880,31 @@ public function test_batch_set_workflow_state_viewed() {
$this->assertEventLegacyLogData($expected, $event);
$this->assertEventContextNotUsed($event);
}

/**
* Test the batch_set_marker_allocation_viewed event.
*/
public function test_batch_set_marker_allocation_viewed() {
$assign = $this->create_instance();

// Trigger and capture the event.
$sink = $this->redirectEvents();
$assign->testable_view_batch_markingallocation();
$events = $sink->get_events();
$event = reset($events);

// Check that the event contains the expected values.
$this->assertInstanceOf('\mod_assign\event\batch_set_marker_allocation_viewed', $event);
$this->assertEquals($assign->get_context(), $event->get_context());
$expected = array(
$assign->get_course()->id,
'assign',
'view batch set marker allocation',
'view.php?id=' . $assign->get_course_module()->id,
get_string('viewbatchmarkingallocation', 'assign'),
$assign->get_course_module()->id
);
$this->assertEventLegacyLogData($expected, $event);
$this->assertEventContextNotUsed($event);
}
}

0 comments on commit 81f92c2

Please sign in to comment.