░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/datadrive/moodledata/filedir/aa/bb
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: aabb0ed84ed51831f23236c7b539a91dd10718f5
var H5PPresave = H5PPresave || {}; /** * Resolve the presave logic for the content type Question Set * * @param {object} content * @param finished * @constructor */ H5PPresave['H5P.QuestionSet'] = function (content, finished) { var presave = H5PEditor.Presave; if (isContentInvalid()) { throw new presave.exceptions.InvalidContentSemanticsException('Invalid Question Set Error'); } var 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
—
—
📄 aabb0ed84ed51831f23236c7b539a91dd10718f5
?
1.1 KB
2026-04-01 13:33
EDIT