123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Data\Wysiwyg;
- /**
- * Normalize widget content in Wysiwyg editor
- */
- class Normalizer
- {
- const WYSIWYG_RESERVED_CHARACTERS_REPLACEMENT_MAP = [
- '{' => '^[',
- '}' => '^]',
- '"' => '`',
- '\\' => '|',
- '<' => '^(',
- '>' => '^)'
- ];
- /**
- * Replace the reserved characters in the content
- *
- * @param string $content
- * @return string
- */
- public function replaceReservedCharacters($content)
- {
- return str_replace(
- array_keys(Normalizer::WYSIWYG_RESERVED_CHARACTERS_REPLACEMENT_MAP),
- array_values(Normalizer::WYSIWYG_RESERVED_CHARACTERS_REPLACEMENT_MAP),
- $content
- );
- }
- /**
- * Restore the reserved characters in the content
- *
- * @param string $content
- * @return string
- */
- public function restoreReservedCharacters($content)
- {
- return str_replace(
- array_values(Normalizer::WYSIWYG_RESERVED_CHARACTERS_REPLACEMENT_MAP),
- array_keys(Normalizer::WYSIWYG_RESERVED_CHARACTERS_REPLACEMENT_MAP),
- $content
- );
- }
- }
|