• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/chat.php
  • Класс: BitrixImOpenLinesChat
  • Вызов: Chat::validationAction
protected function validationAction($loadChatId): bool
{
	$result = false;

	if ($this->isDataLoaded())
	{
		if (
			(int)$loadChatId > 0
			&& (int)$this->chat['ID'] > 0
			&& (int)$this->chat['ID'] == (int)$loadChatId
		)
		{
			$result = true;
		}
	}

	return $result;
}