• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Controller/Chat.php
  • Класс: BitrixImV2ControllerChat
  • Вызов: Chat::setColorAction
public function setColorAction(BitrixImV2Chat $chat, string $color)
{
	$result = $chat->validateColor();
	if (!$result->isSuccess())
	{
		return $this->convertKeysToCamelCase($result->getErrors());
	}

	$chat->setColor($color);
	$result = $chat->save();

	if (!$result->isSuccess())
	{
		return $this->convertKeysToCamelCase($result->getErrors());
	}

	return $result->isSuccess();
}