• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/component/loglist/processor.php
  • Класс: BitrixSocialnetworkComponentLogListProcessor
  • Вызов: Processor::processDiskUFEntities
public function processDiskUFEntities(): void
{
	$diskUFEntityList = $this->getComponent()->getDiskUFEntityListValue();
	if (
		!empty($diskUFEntityList['SONET_LOG'])
		|| !empty($diskUFEntityList['BLOG_POST'])
	)
	{
		$res = getModuleEvents('socialnetwork', 'OnAfterFetchDiskUfEntity');
		while ($eventFields = $res->fetch())
		{
			executeModuleEventEx($eventFields, [ $diskUFEntityList ]);
		}
	}
}