70 lignes
2.3 KiB
PHP
70 lignes
2.3 KiB
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 <info@shopmodule.com>
|
||
|
* @link https://www.oxidmodule.com
|
||
|
*/
|
||
|
|
||
|
namespace D3\DataWizardTasks\Application\Model\Exports;
|
||
|
|
||
|
use D3\DataWizard\Application\Model\ExportBase;
|
||
|
use OxidEsales\Eshop\Application\Model\Content;
|
||
|
use OxidEsales\Eshop\Core\Registry;
|
||
|
|
||
|
class DestroyedWysiwygSpecialChars extends ExportBase
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getTitle() : string
|
||
|
{
|
||
|
return Registry::getLang()->translateString('D3_DATAWIZARDTASKS_EXPORTS_DESTROYEDWYSIWYGSPECIALCHARS');
|
||
|
}
|
||
|
|
||
|
public function getDescription() : string
|
||
|
{
|
||
|
return Registry::getLang()->translateString('D3_DATAWIZARDTASKS_EXPORTS_DESTROYEDWYSIWYGSPECIALCHARS_DESC');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getQuery() : array
|
||
|
{
|
||
|
$content = oxNew(Content::class);
|
||
|
$contentTableName = $content->getCoreTableName();
|
||
|
|
||
|
$titleTitle = Registry::getLang()->translateString('D3_DATAWIZARDTASKS_EXPORTS_DESTROYEDWYSIWYGSPECIALCHARS_TITLE');
|
||
|
$loadIdTitle = Registry::getLang()->translateString('D3_DATAWIZARDTASKS_EXPORTS_DESTROYEDWYSIWYGSPECIALCHARS_LOADID');
|
||
|
|
||
|
$currentLanguage = $content->getLanguage();
|
||
|
$whereFields = [];
|
||
|
foreach (array_keys(Registry::getLang()->getAllShopLanguageIds()) as $langId) {
|
||
|
$content->setLanguage($langId);
|
||
|
$whereFields[] = $content->getUpdateSqlFieldName('oxcontent').' LIKE :specialChars';
|
||
|
}
|
||
|
$content->setLanguage($currentLanguage);
|
||
|
|
||
|
return [
|
||
|
"SELECT
|
||
|
oc.OXID,
|
||
|
oc.OXSHOPID,
|
||
|
oc.OXLOADID as :loadId,
|
||
|
oc.OXTITLE as :titleTitle
|
||
|
FROM ".$contentTableName." oc
|
||
|
WHERE ".implode(' OR ', $whereFields)."
|
||
|
GROUP BY oc.oxloadid",
|
||
|
[
|
||
|
'specialChars' => '%->%',
|
||
|
'loadId' => $loadIdTitle,
|
||
|
'titleTitle' => $titleTitle
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
}
|