The module enables a teacher to create a resource using the text editor.
The resource can display text, images, sound, video and web links.
External content activities and Single Activity courses can be bulk loaded and updated using moodle-tool_uploadexternalcontent
Advantages of using the External content module rather than the standard page module is that optionally if the content has links to an external site that records a completion status the completion can then be imported using moodle-tool_uploadexternalcontentresults
-
Install the External content activity module:
git clone https://github.com/lushonline/moodle-mod_externalcontent.git mod/externalcontent
Or install via the Moodle plugin directory:
The xAPI Tracking implements basic LRS Statement API functionality.
This allows an Activity Provider (AP) to send statements for External Content Activity items, that can be used to set the Moodle Viewed status, External Completed status and scores for the item.
The External Content Activity items need to be configured to be marked completed externally when created.
The xAPI statements are not saved to Moodle, but processed on receipt.
The Statement Object Id is used to identify the External Content Activity Item, the External Content Activity Item ID Number needs to be set to this value.
The Statement Actor Account Name is used to identify the Moodle User using their Moodle Username.
Any Statement Verb Id received results in the Viewed status of the Activity been set. As Moodle does not support setting the timestamp for theses events it will be the time that the statement was processed by the module.
If the Statement Verb Id is one of those configured to indicate completion (Defaults are: http://adlnet.gov/expapi/verbs/completed and http://adlnet.gov/expapi/verbs/passed) the Activity Item "Completed Externally" value is set to true.
If the Statement Results contains a score the score is stored.
Resource | HTTP Methods | Comments |
---|---|---|
Statements Resource | GET, PUT, POST | This is WRITE ONLY and so supports POST, PUT only. GET requests return a "null" response so as to be "valid" but the functionality is not implemented. The JSON statements received are parsed using TinCan PHP, and used to set the viewed status, completion status and score for the content if available. |
About Resource | GET | This returns tha xAPI version supported which for this is 1.0.0 |
Name | Setting | Description |
---|---|---|
Enable xAPI LRS basic support | xapienable | Enable the basic xAPI support, if disabled all calls to the xAPI endpoint return a 401 Unauthorized status. The default is enabled. |
xAPI LRS Username | xapiusername | Configure the username which is used for basic authentication of the basic LRS endpoint. The default is a random string, setup when module is installed. |
xAPI LRS Password | xapipassword | Configure the password which is used for basic authentication of the basic LRS endpoint. The default is a random string, setup when module is installed. |
List of completion xAPI verbs | xapicompletionverbs | Set the xAPI verbs that will be used to indicate the content has been "completed", if a verb that matches one of these values is received the completed externally flag is updated. Any other verb simply sets the viewed flag. The defaults are http://adlnet.gov/expapi/verbs/completed and http://adlnet.gov/expapi/verbs/passed |
Setup | Description |
---|---|
LRS Endpoint | In your activity provider you need to configure the path to this modules LRS endpoint. This will be https://{moodlehostname}/mod/externalcontent/lrs/index.php |
Authentication | The modules LRS only supports Basic Authentication and so you will need to use the username/password you configured above. |
2019-2023 LushOnline
This program 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.
This program 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 this program. If not, see http://www.gnu.org/licenses/.
This was inspired in part by the great work of Petr Skoda on the core mod\page