Editor.php 549 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Tinymce3\Model\Config\Source\Wysiwyg;
  8. /**
  9. * Class Editor provides configuration value for TinyMCE3 editor
  10. * @deprecated 100.3.0 use as configuration value tinymce4 path: mage/adminhtml/wysiwyg/tiny_mce/tinymce4Adapter
  11. */
  12. class Editor
  13. {
  14. /**
  15. * Configuration value for TinyMCE3 editor
  16. * @var string
  17. */
  18. const WYSIWYG_EDITOR_CONFIG_VALUE = 'Magento_Tinymce3/tinymce3Adapter';
  19. }