• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/functions.php
  • Класс: CSocNetAllowed
  • Вызов: CSocNetAllowed::addAllowedEntityTypeDesc
static function addAllowedEntityTypeDesc($entityTypeDescCode, $arEntityTypeDesc)
{
	$entityTypeDescCode = trim($entityTypeDescCode);

	if (
		$entityTypeDescCode == ''
		|| array_key_exists($entityTypeDescCode, self::$arAllowedEntityTypesDesc)
		|| !is_array($arEntityTypeDesc)
	)
	{
		return false;
	}

	if (
		$entityTypeDescCode == SONET_SUBSCRIBE_ENTITY_GROUP
		&& !CBXFeatures::IsFeatureEnabled("Workgroups")
	)
	{
		return false;
	}

	self::$arAllowedEntityTypesDesc[$entityTypeDescCode] = $arEntityTypeDesc;

	return true;
}