• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/classes/general/sticker.php
  • Класс: CSticker
  • Вызов: CSticker::GetById
static function GetById($id)
{
	global $USER;
	$res = CSticker::GetList(
		array(
			'arFilter' => array(
				'USER_ID' => $USER->GetId(),
				'ID' => intval($id),
			)
		));
	if ($res && is_array($res) && count($res) > 0)
		return $res[0];
	return false;
}