- Модуль: imopenlines
- Путь к файлу: ~/bitrix/modules/imopenlines/lib/integrations/report/handlers/dialog.php
- Класс: BitrixImOpenLinesIntegrationsReportHandlersDialog
- Вызов: Dialog::getGeneratedDemoData
protected function getGeneratedDemoData()
{
$result = array();
$providers = array(
'viber', 'facebook', 'vkgroup', 'livechat'
);
for ($i = 0; $i < 30; $i++)
{
$result[] = array(
'date' => date('Y-m-d H:i', strtotime("-" . 30 - $i . " day", time() - (rand(0, 24) * 3600))),
'open_line_id' => '1',
'source_id' => $providers[rand(0, 3)],
'operator_id' => rand(1, 6),
'average_first_answer_time' => rand(1, 6),
);
}
return $result;
}