Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/statistic/admin/ |
Upload File : |
<?php define("STOP_STATISTICS", true); require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_admin_before.php"); /** @var CMain $APPLICATION */ $STAT_RIGHT = $APPLICATION->GetGroupRight("statistic"); if($STAT_RIGHT=="D") $APPLICATION->AuthForm(GetMessage("ACCESS_DENIED")); include($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/statistic/colors.php"); require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/img.php"); $diameter = COption::GetOptionString("statistic", "DIAGRAM_DIAMETER"); $ImageHandle = CreateImageHandle($diameter, $diameter); $arr = array(); $arFilter = Array( "ID" => implode(" | ",$find_searchers), "DATE1_PERIOD" => $find_date1, "DATE2_PERIOD" => $find_date2 ); if ($find_date1 <> '' || $find_date2 <> '') $period = "Y"; $by = ($period=="Y") ? "s_period_hits" : "s_total_hits"; $w = CSearcher::GetList($by, "desc", $arFilter); while($wr = $w->Fetch()) { $total++; $count = ($period=="Y") ? $wr["PERIOD_HITS"] : $wr["TOTAL_HITS"]; if($count>0) $arr[] = array("COUNTER"=>$count); } $arChart = array(); foreach($arr as $key=>$sector) { $color = GetNextRGB($color, $total); $arChart[] = array("COUNTER"=>$sector["COUNTER"], "COLOR"=>$color); } Circular_Diagram($ImageHandle, $arChart, "FFFFFF", $diameter, $diameter/2, $diameter/2); ShowImageHeader($ImageHandle);