• Модуль: storeassist
  • Путь к файлу: ~/bitrix/modules/storeassist/classes/general/storeassist.php
  • Класс: CStoreAssist
  • Вызов: CStoreAssist::getProgressPercent
static function getProgressPercent()
{
	$progress =	BitrixMainConfigOption::get("storeassist", "progress_percent", 0);

	if ($progress < 0)
		$progress = 0;
	elseif ($progress > 10)
		$progress = 10;

	return $progress;
}