• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/app.php
  • Класс: BitrixRestAppTable
  • Вызов: AppTable::canUninstallByType
static function canUninstallByType($code, $version = false)
{
	$result = true;

	$type = static::getAppType($code, $version);
	if($type == static::TYPE_CONFIGURATION)
	{
		$appList = BitrixRestConfigurationHelper::getInstance()->getBasicAppList();
		if(in_array($code, $appList))
		{
			$result = false;
		}
	}

	return $result;
}