* @link https://www.oxidmodule.com */ namespace D3\DataWizardTasks\Modules\DataWizard\Application\Model; use D3\DataWizard\Application\Model\Configuration as ConfigurationParent; use D3\DataWizardTasks\Application\Model\Actions\FixArtextendsItems; use D3\DataWizardTasks\Application\Model\Exports\InactiveCategories; use D3\DataWizardTasks\Application\Model\Exports\KeyFigures; class Configuration extends Configuration_parent { public function configure() { parent::configure(); $this->registerAction( ConfigurationParent::GROUP_ARTICLES, oxNew( FixArtextendsItems::class)); $this->registerExport( ConfigurationParent::GROUP_CATEGORY, oxNew( InactiveCategories::class)); $this->registerExport( ConfigurationParent::GROUP_SHOP, oxNew( KeyFigures::class)); } }