Skip to content
Snippets Groups Projects
Unverified Commit 7d714524 authored by Ryan Smith's avatar Ryan Smith Committed by GitHub
Browse files

feat: Adds statement for textfield feedback questions. (#216)

parent d44ff6df
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,8 @@ function handler(array $config, \stdClass $event, \stdClass $feedbackvalue) {
$feedbackitem = $repo->read_record_by_id('feedback_item', $feedbackvalue->item);
switch ($feedbackitem->typ) {
case 'textfield':
return textfield($config, $event, $feedbackvalue, $feedbackitem);
default:
return [];
}
......
<?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/>.
namespace src\transformer\events\mod_feedback\item_answered;
defined('MOODLE_INTERNAL') || die();
use src\transformer\utils as utils;
function textfield(array $config, \stdClass $event, \stdClass $feedbackvalue, \stdClass $feedbackitem) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$course = $repo->read_record_by_id('course', $event->courseid);
$feedback = $repo->read_record_by_id('feedback', $feedbackitem->feedback);
$lang = utils\get_course_lang($course);
return [[
'actor' => utils\get_user($config, $user),
'verb' => [
'id' => 'http://adlnet.gov/expapi/verbs/answered',
'display' => [
$lang => 'answered'
],
],
'object' => [
'id' => $config['app_url'].'/mod/feedback/edit_item.php?id='.$feedbackitem->id,
'definition' => [
'type' => 'http://adlnet.gov/expapi/activities/cmi.interaction',
'name' => [
$lang => $feedbackitem->name,
],
'interactionType' => 'fill-in',
]
],
'timestamp' => utils\get_event_timestamp($event),
'result' => [
'response' => $feedbackvalue->value,
'completion' => $feedbackvalue->value !== '',
],
'context' => [
'platform' => $config['source_name'],
'language' => $lang,
'extensions' => [
utils\INFO_EXTENSION => utils\get_info($config, $event),
],
'contextActivities' => [
'grouping' => [
utils\get_activity\site($config),
utils\get_activity\course($config, $course),
utils\get_activity\course_feedback($config, $event->contextinstanceid, $feedback, $lang),
],
'category' => [
utils\get_activity\source($config),
]
],
]
]];
}
\ No newline at end of file
{
"user": [
{
"id": 1,
"firstname": "test_fullname",
"email": "test@test.com"
}
],
"course": [
{
"id": 1,
"fullname": "test_name",
"lang": "en"
}
],
"feedback_completed": [
{
"id": 1,
"feedback": 1
}
],
"feedback": [
{
"id": 1,
"name": "test_feedback_name"
}
],
"feedback_item": [
{
"id": 1,
"feedback": 1,
"name": "test_feedback_item",
"typ": "textfield"
}
],
"feedback_value": [
{
"id": 1,
"item": 1,
"completed": 1,
"value": "test_short_text_answer"
}
]
}
\ No newline at end of file
{
"id": 1,
"userid": 1,
"courseid": 1,
"timecreated": 1433946701,
"objectid": 1,
"contextinstanceid": 1,
"eventname": "\\mod_feedback\\event\\response_submitted"
}
\ No newline at end of file
[
{
"actor": {
"name": "test_fullname",
"account": {
"homePage": "http:\/\/www.example.org",
"name": "1"
}
},
"verb": {
"id": "http:\/\/id.tincanapi.com\/verb\/submitted",
"display": {
"en": "submitted"
}
},
"object": {
"id": "http:\/\/www.example.org\/mod\/feedback\/view.php?id=1",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/survey",
"name": {
"en": "test_feedback_name"
}
}
},
"timestamp": "2015-06-10T15:31:41+01:00",
"context": {
"platform": "Moodle",
"language": "en",
"extensions": {
"http:\/\/lrs.learninglocker.net\/define\/extensions\/info": {
"http:\/\/moodle.org": "1.0.0",
"https:\/\/github.com\/xAPI-vle\/moodle-logstore_xapi": "0.0.0-development",
"event_name": "\\mod_feedback\\event\\response_submitted",
"event_function": "\\src\\transformer\\events\\mod_feedback\\response_submitted\\handler"
}
},
"contextActivities": {
"grouping": [
{
"id": "http:\/\/www.example.org",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/lms",
"name": {
"en": "test_name"
}
}
},
{
"id": "http:\/\/www.example.org\/course\/view.php?id=1",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/course",
"name": {
"en": "test_name"
}
}
}
],
"category": [
{
"id": "http:\/\/moodle.org",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/source",
"name": {
"en": "Moodle"
}
}
}
]
}
}
},
{
"actor": {
"name": "test_fullname",
"account": {
"homePage": "http:\/\/www.example.org",
"name": "1"
}
},
"verb": {
"id": "http:\/\/adlnet.gov\/expapi\/verbs\/answered",
"display": {
"en": "answered"
}
},
"object": {
"id": "http:\/\/www.example.org\/mod\/feedback\/edit_item.php?id=1",
"definition": {
"type": "http:\/\/adlnet.gov\/expapi\/activities\/cmi.interaction",
"name": {
"en": "test_feedback_item"
},
"interactionType": "fill-in"
}
},
"timestamp": "2015-06-10T15:31:41+01:00",
"result": {
"response": "test_short_text_answer",
"completion": true
},
"context": {
"platform": "Moodle",
"language": "en",
"extensions": {
"http:\/\/lrs.learninglocker.net\/define\/extensions\/info": {
"http:\/\/moodle.org": "1.0.0",
"https:\/\/github.com\/xAPI-vle\/moodle-logstore_xapi": "0.0.0-development",
"event_name": "\\mod_feedback\\event\\response_submitted",
"event_function": "\\src\\transformer\\events\\mod_feedback\\response_submitted\\handler"
}
},
"contextActivities": {
"grouping": [
{
"id": "http:\/\/www.example.org",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/lms",
"name": {
"en": "test_name"
}
}
},
{
"id": "http:\/\/www.example.org\/course\/view.php?id=1",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/course",
"name": {
"en": "test_name"
}
}
},
{
"id": "http:\/\/www.example.org\/mod\/feedback\/view.php?id=1",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/survey",
"name": {
"en": "test_feedback_name"
}
}
}
],
"category": [
{
"id": "http:\/\/moodle.org",
"definition": {
"type": "http:\/\/id.tincanapi.com\/activitytype\/source",
"name": {
"en": "Moodle"
}
}
}
]
}
}
}
]
\ No newline at end of file
<?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/>.
namespace tests\mod_feedback\response_submitted\textfield;
defined('MOODLE_INTERNAL') || die();
class test extends \tests\xapi_test_case {
protected function get_test_dir() {
return __DIR__;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment