123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cms\Model\Wysiwyg;
- use Magento\Framework\Filesystem;
- use Magento\Framework\App\Filesystem\DirectoryList;
- use Magento\Ui\Component\Wysiwyg\ConfigInterface;
- use Magento\Framework\App\ObjectManager;
- /**
- * Wysiwyg Config for Editor HTML Element
- *
- * @api
- * @since 100.0.2
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class Config extends \Magento\Framework\DataObject implements ConfigInterface
- {
- /**
- * Wysiwyg status enabled
- */
- const WYSIWYG_ENABLED = 'enabled';
- /**
- * Wysiwyg status configuration path
- */
- const WYSIWYG_STATUS_CONFIG_PATH = 'cms/wysiwyg/enabled';
- /**
- *
- */
- const WYSIWYG_SKIN_IMAGE_PLACEHOLDER_ID = 'Magento_Cms::images/wysiwyg_skin_image.png';
- /**
- * Wysiwyg status hidden
- */
- const WYSIWYG_HIDDEN = 'hidden';
- /**
- * Wysiwyg status disabled
- */
- const WYSIWYG_DISABLED = 'disabled';
- /**
- * Wysiwyg image directory
- */
- const IMAGE_DIRECTORY = 'wysiwyg';
- /**
- * @var \Magento\Framework\AuthorizationInterface
- */
- protected $_authorization;
- /**
- * @var \Magento\Framework\View\Asset\Repository
- */
- protected $_assetRepo;
- /**
- * @var \Magento\Variable\Model\Variable\Config
- * @deprecated 103.0.0
- * @see \Magento\Cms\Model\ConfigProvider::processVariableConfig
- */
- protected $_variableConfig;
- /**
- * @var \Magento\Widget\Model\Widget\Config
- * @deprecated 103.0.0
- * @see \Magento\Cms\Model\ConfigProvider::processWidgetConfig
- */
- protected $_widgetConfig;
- /**
- * Core event manager proxy
- *
- * @var \Magento\Framework\Event\ManagerInterface
- */
- protected $_eventManager;
- /**
- * Core store config
- *
- * @var \Magento\Framework\App\Config\ScopeConfigInterface
- */
- protected $_scopeConfig;
- /**
- * @var array
- */
- protected $_windowSize;
- /**
- * @var \Magento\Backend\Model\UrlInterface
- */
- protected $_backendUrl;
- /**
- * @var \Magento\Store\Model\StoreManagerInterface
- */
- protected $_storeManager;
- /**
- * @var Filesystem
- * @since 101.0.0
- */
- protected $filesystem;
- /**
- * @var \Magento\Cms\Model\Wysiwyg\CompositeConfigProvider
- */
- private $configProvider;
- /**
- * Config constructor.
- * @param \Magento\Backend\Model\UrlInterface $backendUrl
- * @param \Magento\Framework\Event\ManagerInterface $eventManager
- * @param \Magento\Framework\AuthorizationInterface $authorization
- * @param \Magento\Framework\View\Asset\Repository $assetRepo
- * @param \Magento\Variable\Model\Variable\Config $variableConfig
- * @param \Magento\Widget\Model\Widget\Config $widgetConfig
- * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
- * @param \Magento\Store\Model\StoreManagerInterface $storeManager
- * @param Filesystem $filesystem
- * @param array $windowSize
- * @param array $data
- * @param CompositeConfigProvider|null $configProvider
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- \Magento\Backend\Model\UrlInterface $backendUrl,
- \Magento\Framework\Event\ManagerInterface $eventManager,
- \Magento\Framework\AuthorizationInterface $authorization,
- \Magento\Framework\View\Asset\Repository $assetRepo,
- \Magento\Variable\Model\Variable\Config $variableConfig,
- \Magento\Widget\Model\Widget\Config $widgetConfig,
- \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
- \Magento\Store\Model\StoreManagerInterface $storeManager,
- Filesystem $filesystem,
- array $windowSize = [],
- array $data = [],
- \Magento\Cms\Model\Wysiwyg\CompositeConfigProvider $configProvider = null
- ) {
- $this->_backendUrl = $backendUrl;
- $this->_eventManager = $eventManager;
- $this->_scopeConfig = $scopeConfig;
- $this->_authorization = $authorization;
- $this->_assetRepo = $assetRepo;
- $this->_variableConfig = $variableConfig;
- $this->_widgetConfig = $widgetConfig;
- $this->_windowSize = $windowSize;
- $this->_storeManager = $storeManager;
- $this->filesystem = $filesystem;
- $this->configProvider = $configProvider ?: ObjectManager::getInstance()
- ->get(\Magento\Cms\Model\Wysiwyg\CompositeConfigProvider ::class);
- parent::__construct($data);
- }
- /**
- * Return Wysiwyg config as \Magento\Framework\DataObject
- *
- * Config options description:
- *
- * enabled: Enabled Visual Editor or not
- * hidden: Show Visual Editor on page load or not
- * use_container: Wrap Editor contents into div or not
- * no_display: Hide Editor container or not (related to use_container)
- * translator: Helper to translate phrases in lib
- * files_browser_*: Files Browser (media, images) settings
- * encode_directives: Encode template directives with JS or not
- *
- * @param array|\Magento\Framework\DataObject $data Object constructor params to override default config values
- * @return \Magento\Framework\DataObject
- */
- public function getConfig($data = [])
- {
- $config = new \Magento\Framework\DataObject();
- $config->setData(
- [
- 'enabled' => $this->isEnabled(),
- 'hidden' => $this->isHidden(),
- 'baseStaticUrl' => $this->_assetRepo->getStaticViewFileContext()->getBaseUrl(),
- 'baseStaticDefaultUrl' => str_replace('index.php/', '', $this->_backendUrl->getBaseUrl())
- . $this->filesystem->getUri(DirectoryList::STATIC_VIEW) . '/',
- 'directives_url' => $this->_backendUrl->getUrl('cms/wysiwyg/directive'),
- 'use_container' => false,
- 'add_variables' => true,
- 'add_widgets' => true,
- 'no_display' => false,
- 'add_directives' => true,
- 'width' => '100%',
- 'height' => '500px',
- 'plugins' => [],
- ]
- );
- $config->setData('directives_url_quoted', preg_quote($config->getData('directives_url')));
- if (is_array($data)) {
- $config->addData($data);
- }
- if ($this->_authorization->isAllowed('Magento_Cms::media_gallery')) {
- $this->configProvider->processGalleryConfig($config);
- $config->addData(
- [
- 'files_browser_window_width' => $this->_windowSize['width'],
- 'files_browser_window_height' => $this->_windowSize['height'],
- ]
- );
- }
- if ($config->getData('add_widgets')) {
- $this->configProvider->processWidgetConfig($config);
- }
- if ($config->getData('add_variables')) {
- $this->configProvider->processVariableConfig($config);
- }
- return $this->configProvider->processWysiwygConfig($config);
- }
- /**
- * Return path for skin images placeholder
- *
- * @return string
- */
- public function getSkinImagePlaceholderPath()
- {
- $staticPath = $this->_storeManager->getStore()->getBaseStaticDir();
- $placeholderPath = $this->_assetRepo->createAsset(self::WYSIWYG_SKIN_IMAGE_PLACEHOLDER_ID)->getPath();
- return $staticPath . '/' . $placeholderPath;
- }
- /**
- * Check whether Wysiwyg is enabled or not
- *
- * @return bool
- */
- public function isEnabled()
- {
- $wysiwygState = $this->_scopeConfig->getValue(
- self::WYSIWYG_STATUS_CONFIG_PATH,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE,
- $this->getStoreId()
- );
- return in_array($wysiwygState, [self::WYSIWYG_ENABLED, self::WYSIWYG_HIDDEN]);
- }
- /**
- * Check whether Wysiwyg is loaded on demand or not
- *
- * @return bool
- */
- public function isHidden()
- {
- $status = $this->_scopeConfig->getValue(
- self::WYSIWYG_STATUS_CONFIG_PATH,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- );
- return $status == self::WYSIWYG_HIDDEN;
- }
- }
|