• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/componenthelper.php
  • Класс: BitrixSocialnetworkComponentHelper
  • Вызов: ComponentHelper::getUrlContext
static function getUrlContext(): array
{
	$result = [];

	if (
		isset($_GET["entityType"])
		&& $_GET["entityType"] <> ''
	)
	{
		$result["ENTITY_TYPE"] = $_GET["entityType"];
	}

	if (
		isset($_GET["entityId"])
		&& (int)$_GET["entityId"] > 0
	)
	{
		$result["ENTITY_ID"] = (int)$_GET["entityId"];
	}

	return $result;
}