• Модуль: mobileapp
  • Путь к файлу: ~/bitrix/modules/mobileapp/lib/designer/manager.php
  • Класс: BitrixMobileAppDesignerManager
  • Вызов: Manager::unregisterFileInApp
static function unregisterFileInApp($fileId, $appCode)
{
	$result = AppTable::getById($appCode);
	$appData = $result->fetchAll();
	if (count($appData) > 0)
	{

		$index = array_search($fileId, $appData[0]["FILES"]);
		if ($index !== false)
		{
			unset($appData[0]["FILES"][$index]);
			AppTable::update($appCode, array("FILES" => $appData[0]["FILES"]));
		}
		die();

	}

}