• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/item/workgroup.php
  • Класс: BitrixSocialnetworkItemWorkgroup
  • Вызов: Workgroup::canWorkWithClosedWorkgroups
static function canWorkWithClosedWorkgroups(): bool
{
	static $optionValue = null;
	if ($optionValue === null)
	{
		$optionValue = Option::get('socialnetwork', 'work_with_closed_groups', 'N');
	}

	return ($optionValue === 'Y');
}