Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
baseviewcomponent.php
1<?php
2
4
6
11abstract class BaseViewComponent extends \CBitrixComponent
12{
17 public function executeComponent()
18 {
22 $this->arResult['CALCULATION_RESULT'] = $this->arParams['RESULT'];
23 $this->arResult['WIDGET'] = $this->arParams['WIDGET'];
24 $this->arResult['HEIGHT'] = $this->arParams['HEIGHT'];
25 $this->arResult['WIDGET_COLOR'] = $this->arParams['WIDGET_COLOR'];
26 $this->includeComponentTemplate();
27 }
28}