• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/report/dashboard/ad/adpayback.php
  • Класс: Bitrix\Crm\Integration\Report\Dashboard\Ad\AdPayback
  • Вызов: AdPayback::buildGridWidget
static function buildGridWidget()
{
	$widget = new VC\Entity\Widget();
	$widget->setGId(VC\Helper\Util::generateUserUniqueId());
	$widget->setWidgetClass(VC\Handler\BaseWidget::getClassName());
	$widget->setViewKey(View\AdsGrid::VIEW_KEY);
	$widget->setCategoryKey('crm');
	$widget->setBoardId(self::BOARD_KEY);

	$widget->getWidgetHandler(true)->updateFormElementValue('label',  Loc::getMessage("CRM_INTEGRATION_REPORT_AD_PAYBACK_GRID_TITLE"));
	$widget->addConfigurations($widget->getWidgetHandler(true)->getConfigurations());

	return $widget;
}