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

166 lines
6.0 KiB
PHP
Raw 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 OXID Marat Bedoev, bestlife AG
* @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 O3\TinyMCE\Application\Core\TinyMCE\Options\BaseUrl;
use O3\TinyMCE\Application\Core\TinyMCE\Options\CacheSuffix;
use O3\TinyMCE\Application\Core\TinyMCE\Options\ContentCss;
use O3\TinyMCE\Application\Core\TinyMCE\Options\ContextMenu;
use O3\TinyMCE\Application\Core\TinyMCE\Options\DocumentBaseUrl;
use O3\TinyMCE\Application\Core\TinyMCE\Options\EntityEncoding;
use O3\TinyMCE\Application\Core\TinyMCE\Options\ExternalPlugins;
use O3\TinyMCE\Application\Core\TinyMCE\Options\FilemanagerUrl;
use O3\TinyMCE\Application\Core\TinyMCE\Options\ImageAdvtab;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Language;
use O3\TinyMCE\Application\Core\TinyMCE\Options\MaxHeight;
use O3\TinyMCE\Application\Core\TinyMCE\Options\MaxWidth;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Menubar;
use O3\TinyMCE\Application\Core\TinyMCE\Options\MinHeight;
use O3\TinyMCE\Application\Core\TinyMCE\Options\OptionInterface;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Plugins;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Protect;
use O3\TinyMCE\Application\Core\TinyMCE\Options\QuickbarsInsertToolbar;
use O3\TinyMCE\Application\Core\TinyMCE\Options\RelativeUrls;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Selector;
use O3\TinyMCE\Application\Core\TinyMCE\Options\Toolbar;
use O3\TinyMCE\Application\Core\TinyMCE\Options\ToolbarSticky;
class Configuration
{
protected Loader $loader;
protected array $options = [];
public function __construct(Loader $loader)
{
$this->loader = $loader;
}
public function build(): void
{
$this->addIntegrateOptions();
$this->addGuiOptions();
$this->addContentAppearance();
$this->addContentFiltering();
$this->addLocalizationOptions();
$this->addUrlHandling();
$this->addPlugins();
$this->addToolbar();
}
protected function addOption($key, OptionInterface $optionInstance): void
{
if (!$optionInstance->requireRegistration()) return;
$option = $optionInstance->get();
if ($optionInstance->mustQuote()) {
$option = (oxNew(Utils::class))->quote($option);
}
$this->options[$key] = $option;
}
public function getConfig()
{
/*
return implode(', ', array_map(
function ($v, $k) {
if (is_array($v)) {
return $k.'[]='.implode('&'.$k.'[]=', $v);
} else {
return $k.': '.$v;
}
},
$this->options,
array_keys($this->options)
));
http_build_query($this->options,'',', ')
*/
// $config = json_encode($this->options);
foreach ($this->options as $param => $value) {
$sConfig .= "$param: $value, ";
}
return $sConfig;
}
/**
* @return void
*/
protected function addIntegrateOptions(): void
{
$this->addOption( BaseUrl::KEY, oxNew( BaseUrl::class, $this->loader));
$this->addOption( CacheSuffix::KEY, oxNew( CacheSuffix::class, $this->loader));
$this->addOption( Selector::KEY, oxNew( Selector::class, $this->loader));
}
protected function addGuiOptions(): void
{
$this->addOption(ContextMenu::KEY, oxNew(ContextMenu::class, $this->loader));
$this->addOption(MinHeight::KEY, oxNew(MinHeight::class, $this->loader));
$this->addOption(MaxHeight::KEY, oxNew(MaxHeight::class, $this->loader));
$this->addOption(MaxWidth::KEY, oxNew(MaxWidth::class, $this->loader));
$this->addOption(Menubar::KEY, oxNew(Menubar::class, $this->loader));
$this->addOption(ToolbarSticky::KEY, oxNew(ToolbarSticky::class, $this->loader));
}
protected function addContentAppearance(): void
{
$this->addOption(ContentCss::KEY, oxNew(ContentCss::class,$this->loader));
}
protected function addContentFiltering(): void
{
$this->addOption(EntityEncoding::KEY, oxNew(EntityEncoding::class,$this->loader));
$this->addOption(Protect::KEY, oxNew(Protect::class,$this->loader));
}
protected function addLocalizationOptions(): void
{
$this->addOption( Language::KEY, oxNew( Language::class, $this->loader));
}
protected function addUrlHandling(): void
{
$this->addOption( DocumentBaseUrl::KEY, oxNew( DocumentBaseUrl::class, $this->loader));
$this->addOption( RelativeUrls::KEY, oxNew( RelativeUrls::class, $this->loader));
}
protected function addPlugins(): void
{
$this->addOption( ImageAdvtab::KEY, oxNew( ImageAdvtab::class, $this->loader));
$this->addOption( Plugins::KEY, oxNew( Plugins::class, $this->loader));
$this->addOption( ExternalPlugins::KEY, oxNew( ExternalPlugins::class, $this->loader));
$this->addOption( FilemanagerUrl::KEY, oxNew( FilemanagerUrl::class, $this->loader));
$this->addOption(QuickbarsInsertToolbar::KEY, oxNew(QuickbarsInsertToolbar::class, $this->loader));
}
protected function addToolbar(): void
{
$this->addOption( Toolbar::KEY, oxNew( Toolbar::class, $this->loader));
}
}