• Модуль: mobileapp
  • Путь к файлу: ~/bitrix/modules/mobileapp/lib/janative/entity/extension.php
  • Класс: BitrixMobileAppJanativeEntityExtension
  • Вызов: Extension::onBeforeModificationMarkerSave
protected function onBeforeModificationMarkerSave(array &$value)
{
	$files = $this->getBundleFiles();
	foreach ($files as $path)
	{
		$file = new File($path);
		if ($file->isExists())
		{
			$value[] = Utils::getFileHash($file);
		}
	}
}