░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/datadrive/moodledata/filedir/51/19
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: 5119808e04e5fae0ece080a10fe9d570b0e11511
var H5PPresave = H5PPresave || {}; /** * Resolve the presave logic for the content type Speak the Words Set * * @param {object} content * @param finished * @constructor */ H5PPresave['H5P.SpeakTheWordsSet'] = function (content, finished) { var presave = H5PEditor.Presave; var score = 0; if (isContentInvalid()) { throw new presave.exceptions.InvalidContentSemanticsException('Invalid Speak The Words Set Error'); } score = content.questions .filter(function (action) { return action.hasOwnProperty('library') && action.hasOwnProperty('params'); }) .map(function (action) { return (new presave).process(action.library, action.params).maxScore; }) .reduce(function (currentScore, scoreToAdd) { if (presave.isInt(scoreToAdd)) { currentScore += scoreToAdd; } return currentScore; }, 0); presave.validateScore(score); finished({maxScore: score}); /** * Check if required parameters is present * @return {boolean} */ function isContentInvalid() { return !presave.checkNestedRequirements(content, 'content.questions') || !Array.isArray(content.questions); } };
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 5119808e04e5fae0ece080a10fe9d570b0e11511
?
1.1 KB
2025-02-01 12:33
EDIT