2024-09-03 14:13:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace D3\Ordermanager\Application\Controller\Admin;
|
|
|
|
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
|
|
|
use D3\Ordermanager\Application\Model\Constants;
|
|
|
|
use D3\Ordermanager\Application\Model\d3ordermanager as Manager;
|
|
|
|
use D3\ModCfg\Application\Controller\Admin\d3_cfg_mod_main;
|
|
|
|
use D3\Ordermanager\Application\Model\d3ordermanager_conf as ConfModel;
|
|
|
|
use D3\Ordermanager\Application\Model\d3ordermanager_vars as VariablesTrait;
|
|
|
|
use Doctrine\DBAL\Exception as DBALException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
|
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
|
|
|
use OxidEsales\Eshop\Core\Request;
|
|
|
|
|
|
|
|
class d3_cfg_ordermanageritem_trigger extends d3_cfg_mod_main
|
|
|
|
{
|
|
|
|
use VariablesTrait;
|
|
|
|
|
|
|
|
protected $_sSavedId;
|
|
|
|
|
|
|
|
protected $_sSetModId = 'd3_ordermanager';
|
|
|
|
|
|
|
|
protected $_sModId = 'd3_ordermanager';
|
|
|
|
|
|
|
|
protected $_sMenuItemTitle = 'd3mxordermanager';
|
|
|
|
|
|
|
|
protected $_sMenuSubItemTitle = 'd3mxordermanager_items';
|
|
|
|
|
|
|
|
protected $_sThisTemplate = '@'. Constants::OXID_MODULE_ID .'/admin/d3_cfg_ordermanageritem_trigger';
|
|
|
|
|
|
|
|
protected $_blUseOwnOxid = true;
|
|
|
|
|
|
|
|
protected $_aNaviItems = [
|
|
|
|
'new' => [
|
|
|
|
'sScript' => 'top.oxid.admin.editThis( -1 );return false;',
|
|
|
|
'sTranslationId' => 'D3_TOOLTIPS_NEWORDERMANAGER',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $_sD3ObjectClass = Manager::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets default values for empty article (currently does nothing), returns
|
|
|
|
* array with parameters.
|
|
|
|
*
|
|
|
|
* @param array $aParams Parameters, to set default values
|
|
|
|
*/
|
|
|
|
public function addDefaultValues($aParams): array
|
|
|
|
{
|
|
|
|
$aParams = parent::addDefaultValues($aParams);
|
|
|
|
|
|
|
|
/** @var Manager $oManager */
|
|
|
|
$oManager = d3GetOxidDIC()->get(Manager::class);
|
|
|
|
$sFieldLongName = $oManager->d3GetFieldLongName('d3_cronjobid');
|
|
|
|
|
|
|
|
/** @var Request $request */
|
|
|
|
$request = d3GetOxidDIC()->get($this->_DIC_OxInstance_Id.Request::class);
|
|
|
|
$aRequestParameter = $request->getRequestEscapedParameter("editval");
|
|
|
|
|
|
|
|
if (is_array($aRequestParameter) && isset($aRequestParameter[$sFieldLongName])) {
|
|
|
|
$aRequestParameter[$sFieldLongName] = $this->fixCronjobId($aRequestParameter[$sFieldLongName]);
|
|
|
|
if (isset($_POST['editval'])) {
|
|
|
|
$_POST['editval'] = $aRequestParameter;
|
|
|
|
} elseif (isset($_GET['editval'])) {
|
|
|
|
$_GET['editval'] = $aRequestParameter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $aParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $sId
|
|
|
|
*/
|
|
|
|
public function fixCronjobId($sId): string|array
|
|
|
|
{
|
|
|
|
$aSearch = [
|
|
|
|
' ',
|
|
|
|
];
|
|
|
|
$sReplace = '_';
|
|
|
|
|
|
|
|
return str_replace($aSearch, $sReplace, $sId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws DBALException
|
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
|
|
|
* @throws StandardException
|
|
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
|
|
* @throws d3_cfg_mod_exception
|
|
|
|
*/
|
|
|
|
public function triggersAreAllowed(): bool
|
|
|
|
{
|
|
|
|
if ($this->d3GetSet()->isDemo()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return in_array(
|
|
|
|
true,
|
|
|
|
array_map([$this->d3GetSet(),'getLicenseConfigData'], [ConfModel::SERIAL_BIT_STANDARD_EDITION])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws DBALException
|
|
|
|
* @throws DatabaseConnectionException
|
|
|
|
* @throws DatabaseErrorException
|
|
|
|
* @throws StandardException
|
|
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
|
|
* @throws d3_cfg_mod_exception
|
|
|
|
*/
|
|
|
|
public function scriptsAreAllowed(): bool
|
|
|
|
{
|
|
|
|
if ($this->d3GetSet()->isDemo()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return in_array(
|
|
|
|
true,
|
|
|
|
array_map([$this->d3GetSet(),'getLicenseConfigData'], [ConfModel::SERIAL_BIT_PREMIUM_EDITION])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|