8
0
Fork 0
DataWizard/tests/additional.inc.php

42 Zeilen
948 B
PHP

2021-11-24 23:38:28 +01:00
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
// Include datawizard test config
2022-01-17 10:59:18 +01:00
2021-11-24 23:38:28 +01:00
namespace D3\DataWizard\tests;
use D3\ModCfg\Tests\additional_abstract;
use Exception;
use OxidEsales\Eshop\Core\Exception\StandardException;
include(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'd3datawizard_config.php');
class additional extends additional_abstract
{
/**
* additional constructor.
* @throws StandardException
*/
public function __construct()
{
if (D3DATAWIZARD_REQUIRE_MODCFG) {
$this->reactivateModCfg();
}
}
}
try {
2024-05-10 12:18:33 +02:00
d3GetOxidDIC()->get(additional::class);
} catch (Exception) {
2022-01-17 10:59:18 +01:00
}