• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/component/userlist.php
  • Класс: BitrixIntranetComponentUserList
  • Вызов: UserList::setUserPropertyList
public function setUserPropertyList(array $value = [])
{
	$optionValue = $this->getUserPropertyListValue();
	$diff1 = array_diff($value, $optionValue);
	$diff2 = array_diff($optionValue, $value);
	if (
		!empty($diff1)
		|| !empty($diff2)
	)
	{
		Option::set('intranet', 'user_list_user_property_available', serialize($value), SITE_ID);
	}
}