1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
circle.php
См. документацию.
1<?php
2
3namespace Bitrix\Report\VisualConstructor\Views\JsComponent;
4
5use Bitrix\Report\VisualConstructor\Config\Common;
6
11class Circle extends Base
12{
13 const VIEW_KEY = 'circle';
14
18 public function __construct()
19 {
20 $this->setLabel('Circle');
21 $this->setLogoUri('/bitrix/images/report/visualconstructor/view-circle.jpg');
22 $this->setCompatibleDataType(Common::SINGLE_REPORT_TYPE);
23 $this->setJsClassName('BX.Report.VisualConstructor.Widget.Content.Circle');
24 }
25
32 public function handlerFinallyBeforePassToView($dataFromReport)
33 {
34 return $dataFromReport;
35 }
36}
setLogoUri($logoUri)
Определения view.php:102
setJsClassName($jsClassName)
Определения view.php:383
setCompatibleDataType($compatibleDataType)
Определения view.php:121
setLabel($label)
Определения view.php:83
handlerFinallyBeforePassToView($dataFromReport)
Определения circle.php:32