• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/text.php
  • Класс: BitrixImText
  • Вызов: Text::modifyIcon
static function modifyIcon($params)
{
	$text = $params[1];

	$title = Loc::getMessage('IM_MESSAGE_ICON');

	preg_match('/title=(.*[^s]])/i', $text, $match);
	if ($match)
	{
		$title = $match[1];
		if (mb_strpos($title, 'width=') !== false)
		{
			$title = mb_substr($title, 0, mb_strpos($title, 'width='));
		}
		if (mb_strpos($title, 'height=') !== false)
		{
			$title = mb_substr($title, 0, mb_strpos($title, 'height='));
		}
		if (mb_strpos($title, 'size=') !== false)
		{
			$title = mb_substr($title, 0, mb_strpos($title, 'size='));
		}
		$title = trim($title);
	}

	return '('.$title.')';
}