38 lines
920 B
PHP
38 lines
920 B
PHP
<?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 <support@shopmodule.com>
|
|
* @link https://www.oxidmodule.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
// Include modules test config
|
|
namespace D3\Linkmobility4OXID\tests;
|
|
|
|
use D3\ModCfg\Tests\additional_abstract;
|
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
|
|
|
include(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'd3linkmobility_config.php');
|
|
|
|
class additional extends additional_abstract
|
|
{
|
|
/**
|
|
* additional constructor.
|
|
* @throws StandardException
|
|
*/
|
|
public function __construct()
|
|
{
|
|
if (D3LINKMOBILITY_REQUIRE_MODCFG) {
|
|
$this->reactivateModCfg();
|
|
}
|
|
}
|
|
}
|
|
|
|
oxNew(additional::class); |