• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/integrations/report/handlers/dialog.php
  • Класс: BitrixImOpenLinesIntegrationsReportHandlersDialog
  • Вызов: Dialog::getPreparedDemoRow
protected function getPreparedDemoRow($row)
{

	/** @var DropDown $whatWillCalculate */
	$whatWillCalculate = $this->getFormElement('calculate');
	$whatWillCalculateValue = $whatWillCalculate->getValue();
	$result = array();
	switch ($whatWillCalculateValue)
	{
		case self::WHAT_WILL_CALCULATE_AVERAGE_TIME_TO_ANSWER:
			$result['value'] = $row['average_first_answer_time'];
			break;
	}

	return $result;
}