• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/form/feedbackform.php
  • Класс: BitrixUIFormFeedbackForm
  • Вызов: FeedbackForm::__construct
public function __construct(string $id)
{
	if ($id == '')
	{
		throw new ArgumentException(' Feedback form id can not be empty');
	}
	$this->id = $id;
	$this->isCloud = Loader::includeModule('bitrix24');
	$this->title = Loc::getMessage('UI_FEEDBACK_FORM_BUTTON');
	$this->portalUri = 'https://product-feedback.bitrix24.com';
}