Files
Chamilo/main/common_cartridge/export/src/lib/assesment/Assesment1ResourceFile.php
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

75 lines
2.4 KiB
PHP

<?php
/* Source: https://github.com/moodle/moodle/blob/MOODLE_310_STABLE/backup/cc/cc_lib/cc_asssesment.php under GNU/GPL license */
class Assesment1ResourceFile extends CcGeneralFile
{
public const DEAFULTNAME = 'assessment.xml';
protected $rootns = 'xmlns';
protected $rootname = CcQtiTags::QUESTESTINTEROP;
protected $ccnamespaces = ['xmlns' => 'http://www.imsglobal.org/xsd/ims_qtiasiv1p2',
'xsi' => 'http://www.w3.org/2001/XMLSchema-instance', ];
protected $ccnsnames = ['xmlns' => 'http://www.imsglobal.org/profile/cc/ccv1p0/derived_schema/domainProfile_4/ims_qtiasiv1p2_localised.xsd'];
protected $assessmentTitle = 'Untitled';
protected $metadata = null;
protected $rubric = null;
protected $presentationMaterial = null;
protected $section = null;
public function setMetadata(CcAssesmentMetadata $object)
{
$this->metadata = $object;
}
public function setRubric(CcAssesmentRubricBase $object)
{
$this->rubric = $object;
}
public function setPresentationMaterial(CcAssesmentPresentationMaterialBase $object)
{
$this->presentationMaterial = $object;
}
public function setSection(CcAssesmentSection $object)
{
$this->section = $object;
}
public function setTitle($value)
{
$this->assessmentTitle = self::safexml($value);
}
protected function onSave()
{
$rns = $this->ccnamespaces[$this->rootns];
//root assesment element - required
$assessment = $this->appendNewElementNs($this->root, $rns, CcQtiTags::ASSESSMENT);
$this->appendNewAttributeNs($assessment, $rns, CcQtiTags::IDENT, CcHelpers::uuidgen('QDB_'));
$this->appendNewAttributeNs($assessment, $rns, CcQtiTags::TITLE, $this->assessmentTitle);
//metadata - optional
if (!empty($this->metadata)) {
$this->metadata->generate($this, $assessment, $rns);
}
//rubric - optional
if (!empty($this->rubric)) {
$this->rubric->generate($this, $assessment, $rns);
}
//presentation_material - optional
if (!empty($this->presentationMaterial)) {
$this->presentationMaterial->generate($this, $assessment, $rns);
}
//section - required
if (!empty($this->section)) {
$this->section->generate($this, $assessment, $rns);
}
return true;
}
}