• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_product_file.php
  • Класс: \CCrmProductFile
  • Вызов: CCrmProductFile::__construct
function __construct($element_id, $field_id, $file_id)
{
	$this->_element_id = intval($element_id);
	$this->_field_id = $field_id;
	$this->_file_id = intval($file_id);

	$this->_file = CFile::GetFileArray($this->_file_id);
	if(is_array($this->_file))
	{
		$this->_width = intval($this->_file['WIDTH']);
		$this->_height = intval($this->_file['HEIGHT']);
	}
}