tao-test/app/taoQtiItem/migrations/Version202009221521161101_taoQtiItem.php

84 lines
2.4 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) 2020 (original work) Open Assessment Technologies SA;
*/
declare(strict_types=1);
namespace oat\taoQtiItem\migrations;
use Doctrine\DBAL\Schema\Schema;
use common_ext_Extension as Extension;
use common_ext_ExtensionsManager as ExtensionsManager;
use oat\tao\scripts\tools\migrations\AbstractMigration;
use common_ext_ExtensionException as ExtensionException;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version202009221521161101_taoQtiItem extends AbstractMigration
{
/**
* @return string
*/
public function getDescription(): string
{
return 'Configure default `perInteractionRp` value for the qti creator config.';
}
/**
* @param Schema $schema
*/
public function up(Schema $schema): void
{
$extension = $this->getExtension();
$config = $extension->getConfig('qtiCreator');
$config['perInteractionRp'] = false;
$extension->setConfig('qtiCreator', $config);
}
/**
* @param Schema $schema
*/
public function down(Schema $schema): void
{
$extension = $this->getExtension();
$config = $extension->getConfig('qtiCreator');
if (array_key_exists('perInteractionRp', $config)) {
unset($config['perInteractionRp']);
}
$extension->setConfig('qtiCreator', $config);
}
/**
* @throws ExtensionException
*
* @return Extension
*/
private function getExtension(): Extension
{
/** @var ExtensionsManager $extensionManager */
$extensionManager = $this->getServiceLocator()->get(ExtensionsManager::SERVICE_ID);
return $extensionManager->getExtensionById('taoQtiItem');
}
}