...Человеческий поиск в разработке...
- Модуль: ui
- Путь к файлу: ~/bitrix/modules/ui/lib/Integration/Rest/MaskManifest.php
- Класс: BitrixUIIntegrationRestMaskManifest
- Вызов: MaskManifest::OnRestApplicationConfigurationExport
static function OnRestApplicationConfigurationExport(Event $event) { //region Check manifests intersection $manifest = $event->getParameter('MANIFEST'); $intersection = array_intersect($manifest['USES'], static::$manifestList); if (!$intersection) { return null; } //endregion $entityCode = $event->getParameter('CODE'); if ($entityCode === 'UI_MASK') { return MaskExport::fulfill($event); } return null; }