• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/volume/cleaner.php
  • Класс: Bitrix\Crm\Volume\Cleaner
  • Вызов: Cleaner::getProgressInfo
static function getProgressInfo($ownerId)
{
	$optionSerialized = Main\Config\Option::get(
		'main.stepper.crm',
		self::class. $ownerId,
		''
	);
	if (!empty($optionSerialized))
	{
		return \unserialize($optionSerialized, ['allowed_classes' => false]);
	}

	return null;
}