tinymce-editor/Application/Core/ViewConfig.php

46 lignes
1.4 KiB
PHP
Brut Vue normale Historique

2020-06-09 03:09:43 +02:00
<?php
2023-04-02 23:00:41 +02:00
/**
* 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.
2020-06-09 03:09:43 +02:00
*
2023-04-02 23:00:41 +02:00
* 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/>
2020-06-09 03:09:43 +02:00
*
* @copyright Copyright (c) 2022 Marat Bedoev, bestlife AG
2023-04-02 23:00:41 +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)
2020-06-09 03:09:43 +02:00
*/
2023-04-05 08:27:08 +02:00
declare(strict_types=1);
2023-04-02 23:49:41 +02:00
namespace O3\TinyMCE\Application\Core;
2023-04-05 08:27:08 +02:00
use O3\TinyMCE\Application\Core\TinyMCE\Loader;
2023-04-07 23:34:59 +02:00
use OxidEsales\Eshop\Core\Exception\FileException;
2023-04-02 23:49:41 +02:00
use OxidEsales\Eshop\Core\Registry;
2022-06-09 21:11:02 +02:00
2020-06-09 03:09:43 +02:00
class ViewConfig extends ViewConfig_parent
{
2023-04-05 08:27:08 +02:00
/**
* @return string
2023-04-07 23:34:59 +02:00
* @throws FileException
2023-04-05 08:27:08 +02:00
*/
public function loadTinyMce(): string
2020-06-09 03:09:43 +02:00
{
2023-04-05 08:27:08 +02:00
$config = Registry::getConfig();
$language = Registry::getLang();
2023-04-02 23:49:41 +02:00
2023-04-05 08:27:08 +02:00
$loader = oxNew(Loader::class, $config, $language);
2023-04-02 23:49:41 +02:00
2023-04-05 08:53:11 +02:00
return $loader->getEditorCode();
2020-06-09 03:09:43 +02:00
}
2023-04-05 08:27:08 +02:00
}