• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/functions.php
  • Класс: CSocNetTextParser
  • Вызов: CSocNetTextParser::convert_emoticon
function convert_emoticon($code = "", $image = "", $description = "", $servername = "")
{
	if ($code == '' || $image == '') return;
	$code = stripslashes($code);
	$description = stripslashes($description);
	$image = stripslashes($image);
	if ($this->path_to_smile !== false)
		return 'smile'.$code.'';
	return 'smile'.$code.'';
}