tinymce-editor/Application/Core/TinyMCE/Loader.php

155 lines
4.7 KiB
PHP
Raw Permalink Normal View History

2023-04-05 08:27:08 +02:00
<?php
/**
* This file is part of O3-Shop TinyMCE editor module.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
*
* @copyright Copyright (c) 2022 Marat Bedoev, bestlife AG
2023-04-05 08:27:08 +02:00
* @copyright Copyright (c) 2023 O3-Shop (https://www.o3-shop.com)
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
*/
declare(strict_types=1);
namespace O3\TinyMCE\Application\Core\TinyMCE;
use OxidEsales\Eshop\Application\Model\Content;
use OxidEsales\Eshop\Core\Config;
2023-04-07 23:34:59 +02:00
use OxidEsales\Eshop\Core\Exception\FileException;
2023-04-05 08:27:08 +02:00
use OxidEsales\Eshop\Core\Language;
use OxidEsales\Eshop\Core\Model\BaseModel;
use OxidEsales\Eshop\Core\Registry;
class Loader
{
protected Config $config;
protected Language $language;
public function __construct(Config $config, Language $language)
{
$this->config = $config;
$this->language = $language;
}
/**
* @return string
2023-04-07 23:34:59 +02:00
* @throws FileException
2023-04-05 08:27:08 +02:00
*/
2023-04-05 08:53:11 +02:00
public function getEditorCode(): string
2023-04-05 08:27:08 +02:00
{
2023-04-10 22:47:06 +02:00
if (!$this->isEnabledForCurrentController()) {
return '';
}
2023-04-05 08:27:08 +02:00
2023-04-08 22:47:11 +02:00
if ($this->contentIsPlain()) {
/** @var string $message */
$message = $this->language->translateString('TINYMCE_PLAINCMS');
return $message;
}
2023-04-05 08:27:08 +02:00
$configuration = oxNew(Configuration::class, $this);
$configuration->build();
$this->registerScripts($configuration);
$this->registerIncludes();
$smarty = Registry::getUtilsView()->getSmarty();
return $smarty->fetch('EditorSwitch.tpl');
}
/**
* @return bool
*/
protected function isEnabledForCurrentController(): bool
{
2023-04-08 22:47:11 +02:00
/** @var string[] $aEnabledClasses */
2023-04-10 22:47:06 +02:00
$aEnabledClasses = $this->getShopConfig()->getConfigParam("aTinyMCE_classes", []);
2023-04-05 08:27:08 +02:00
2023-04-10 22:47:06 +02:00
return in_array($this->getShopConfig()->getActiveView()->getClassKey(), $aEnabledClasses);
2023-04-05 08:27:08 +02:00
}
/**
* @return bool
*/
protected function contentIsPlain(): bool
{
// D3 disabled, because isPlain method doesn't exist in OXID eShop
return false;
2023-04-07 23:34:59 +02:00
/** @var BaseModel|Content $oEditObject */
2023-04-10 22:47:06 +02:00
$oEditObject = $this->getShopConfig()->getActiveView()->getViewDataElement("edit");
2023-04-05 08:27:08 +02:00
return $oEditObject instanceof Content && $oEditObject->isPlain();
}
/**
* @return Language
*/
public function getLanguage(): Language
{
return $this->language;
}
/**
* @return Config
*/
public function getShopConfig(): Config
{
return $this->config;
}
/**
* @param Configuration $configuration
*
* @return void
*/
protected function registerScripts(Configuration $configuration): void
{
$sCopyLongDescFromTinyMCE = file_get_contents(__DIR__.'/../../../out/scripts/copyLongDesc.js');
$sUrlConverter = file_get_contents(__DIR__.'/../../../out/scripts/urlConverter.js');
$sInit = str_replace(
"'CONFIG':'VALUES'",
$configuration->getConfig(),
2023-04-08 22:47:11 +02:00
(string) file_get_contents(__DIR__.'/../../../out/scripts/init.js')
2023-04-05 08:27:08 +02:00
);
$smarty = Registry::getUtilsView()->getSmarty();
$sSufix = ($smarty->_tpl_vars["__oxid_include_dynamic"]) ? '_dynamic' : '';
$aScript = (array) Registry::getConfig()->getGlobalParameter('scripts' . $sSufix);
$aScript[] = $sCopyLongDescFromTinyMCE;
$aScript[] = $sUrlConverter;
$aScript[] = $sInit;
Registry::getConfig()->setGlobalParameter('scripts' . $sSufix, $aScript);
}
/**
* @return void
2023-04-07 23:34:59 +02:00
* @throws FileException
2023-04-05 08:27:08 +02:00
*/
protected function registerIncludes(): void
{
$smarty = Registry::getUtilsView()->getSmarty();
$sSuffix = ($smarty->_tpl_vars["__oxid_include_dynamic"]) ? '_dynamic' : '';
2023-04-08 22:47:11 +02:00
/** @var array<int, string[]> $aInclude */
2023-04-05 08:27:08 +02:00
$aInclude = (array) Registry::getConfig()->getGlobalParameter('includes' . $sSuffix);
2023-04-07 22:48:34 +02:00
$aInclude[3][] = Registry::getConfig()->getActiveView()->getViewConfig()->getModuleUrl(
2023-04-19 15:18:03 +02:00
'o3-tinymce-editor',
2023-04-07 22:48:34 +02:00
'out/tinymce/tinymce.min.js'
);
2023-04-05 08:27:08 +02:00
Registry::getConfig()->setGlobalParameter('includes' . $sSuffix, $aInclude);
}
2023-04-10 22:47:06 +02:00
}