• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/sitebutton/manager.php
  • Класс: Bitrix\Crm\SiteButton\Manager
  • Вызов: Manager::updateScriptCacheWithForm
static function updateScriptCacheWithForm($formId)
{
	$buttons = Internals\ButtonTable::getList(['filter' => ['=ACTIVE' => 'Y']]);
	foreach ($buttons as $buttonData)
	{
		$button = new Button();
		$button->loadByData($buttonData);
		if (in_array($formId, $button->getWebFormIdList()))
		{
			Script::saveCache($button);
		}
	}
}