• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_tools.php
  • Класс: CSocNetLogTools
  • Вызов: CSocNetLogTools::ShowSourceType
static function ShowSourceType($source_type = false, $bMobile = false)
{
	if (!$source_type)
		return false;
	else
	{
		$events = GetModuleEvents("socialnetwork", "OnShowSocNetSourceType");
		while ($arEvent = $events->Fetch())
		{
			$arResult = ExecuteModuleEventEx($arEvent, array($source_type, $bMobile));
			if (is_array($arResult))
				return $arResult;
		}
	}
}