• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Message.php
  • Класс: BitrixImV2Message
  • Вызов: Message::getFiles
public function getFiles(): FileCollection
{
	if (!$this->files instanceof FileCollection)
	{
		$fileIds = $this->getFileIds();
		if (!empty($fileIds))
		{
			$this->files = FileCollection::initByDiskFilesIds($fileIds, $this->getChatId());
		}
		else
		{
			$this->files = new FileCollection;
		}
	}

	return $this->files;
}