Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-page-builder/Block/Element/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-page-builder/Block/Element/Editor.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\PageBuilder\Block\Element;

/**
 * Class Editor add logic to render PB instead of wysiwyg editor
 *
 * @api
 */
class Editor extends \Magento\Framework\Data\Form\Element\Editor
{
    /**
     * {@inheritdoc}
     */
    public function getElementHtml()
    {
        if ($this->isPageBuilderUsed()) {
            return '';
        }

        return parent::getElementHtml();
    }

    /**
     * {@inheritdoc}
     */
    public function isEnabled()
    {
        if ($this->isPageBuilderUsed()) {
            return true;
        }
        return parent::isEnabled();
    }

    /**
     * Is the stage aspect of the system enabled
     *
     * @return bool
     */
    protected function isStageEnabled() : bool
    {
        return true;
    }

    /**
     * {@inheritdoc}
     */
    protected function getInlineJs($jsSetupObject, $forceLoad)
    {
        if ($this->isPageBuilderUsed()) {
            return '';
        }

        return parent::getInlineJs($jsSetupObject, $forceLoad);
    }

    /**
     * Return if page builder will be used instead of wysiwyg editor
     *
     * @return bool
     */
    private function isPageBuilderUsed() : bool
    {
        $config = $this->getConfig();
        return $config->getData('activeEditorPath') === 'Magento_PageBuilder/pageBuilderAdapter'
            && $config->getData('is_pagebuilder_enabled') !== false;
    }
}