Your IP : 3.18.112.171


Current Path : /home/bitrix/ext_www/shuft.com.ua/bitrix/modules/_main/lib/text/
Upload File :
Current File : /home/bitrix/ext_www/shuft.com.ua/bitrix/modules/_main/lib/text/xmlconverter.php

<?php
namespace Bitrix\Main\Text;

class XmlConverter
	extends Converter
{
	public function encode($text, $textType = "")
	{
		if (is_object($text))
			return $text;

		return String::htmlEncode($text);
	}

	public function decode($text, $textType = "")
	{
		if (is_object($text))
			return $text;

		return String::htmlDecode($text);
	}
}