• Модуль: statistic
  • Путь к файлу: ~/bitrix/modules/statistic/classes/general/statistic.php
  • Класс: CAllStatistics
  • Вызов: CAllStatistics::GetDDL
static function GetDDL()
{
	$DB = CDatabase::GetModuleConnection('statistic');
	$result = array();
	$rs=$DB->Query("select * from b_stat_ddl order by ID", true);
	if($rs)
	{
		while($ar=$rs->Fetch())
			$result[]=$ar;
	}
	return $result;
}