tao-test/app/taoQtiTest/models/classes/export/class.QtiTestExporter22.php

52 lines
1.7 KiB
PHP
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?php
/**
* 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; under version 2
* of the License (non-upgradable).
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2014-2016 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*
*/
class taoQtiTest_models_classes_export_QtiTestExporter22 extends taoQtiTest_models_classes_export_QtiTestExporter
{
protected function createItemExporter(core_kernel_classes_Resource $item)
{
return new taoQtiTest_models_classes_export_QtiItemExporter22($item, $this->getZip(), $this->getManifest());
}
protected function getTestResourceType()
{
return 'imsqti_test_xmlv2p2';
}
protected function postProcessing($testXmlDocument)
{
$testXmlDocument = str_replace(
'http://www.imsglobal.org/xsd/imsqti_v2p1',
'http://www.imsglobal.org/xsd/imsqti_v2p2',
$testXmlDocument
);
$testXmlDocument = str_replace(
'http://www.imsglobal.org/xsd/qti/qtiv2p1/imsqti_v2p1.xsd',
'http://www.imsglobal.org/xsd/qti/qtiv2p2/imsqti_v2p2p1.xsd',
$testXmlDocument
);
return $testXmlDocument;
}
}