*/ namespace oat\taoQtiTest\models; use common_ext_Extension; use common_ext_ExtensionsManager; use oat\oatbox\AbstractRegistry; class TestCategoryPresetRegistry extends AbstractRegistry { /** * Specify in which extensions the config will be stored * * @return common_ext_Extension */ protected function getExtension() { return common_ext_ExtensionsManager::singleton()->getExtensionById('taoQtiTest'); } /** * config file in which the data will be stored * * @return string */ protected function getConfigId() { return 'test_category_preset_registry'; } }