• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/document/filedata.php
  • Класс: BitrixDiskDocumentFileData
  • Вызов: FileData::toArray
public function toArray()
{
	return array(
		'id' => $this->getId(),
		'name' => $this->getName(),
		'mimeType' => $this->getMimeType(),
		'src' => $this->getSrc(true),
		'size' => $this->getSize(),
		'needConvert' => $this->isNeededToConvert(),
		'linkInService' => $this->getLinkInService(),
		'file' => $this->getFile(),
		'metaData' => $this->getMetaData(),
	);
}