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/main/interface/ |
Upload File : |
<?php define("NO_KEEP_STATISTIC", true); define("NO_AGENT_STATISTIC", true); define("NOT_CHECK_PERMISSIONS", true); define("BX_SEARCH_ADMIN", true); require($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_admin_before.php"); require($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_admin_js.php"); $start = microtime(true); $query = ltrim($_POST["q"] ?? ''); if( !empty($query) && $_REQUEST["ajax_call"] === "y" && CModule::IncludeModule("search") ): /** * @global CAdminPage $adminPage * @global CAdminMenu $adminMenu */ $adminPage->Init(); $adminMenu->Init($adminPage->aModules); $arResult = array( "CATEGORIES"=>array( "global_menu_content"=>array("ITEMS"=>array(), "TITLE"=>GetMessage('admin_lib_menu_content')), "global_menu_services"=>array("ITEMS"=>array(), "TITLE"=>GetMessage('admin_lib_menu_services')), "global_menu_store"=>array("ITEMS"=>array(), "TITLE"=>GetMessage('admin_lib_menu_store')), "global_menu_statistics"=>array("ITEMS"=>array(), "TITLE"=>GetMessage('admin_lib_menu_stat')), "global_menu_settings"=>array("ITEMS"=>array(), "TITLE"=>GetMessage('admin_lib_menu_settings')), ) ); $arStemFunc = stemming_init(LANGUAGE_ID); $arPhrase = stemming_split($query, LANGUAGE_ID); $preg_template = "/(^|[^".$arStemFunc["pcre_letters"]."])(".str_replace("/", "\\/", implode("|", array_map('preg_quote', array_keys($arPhrase)))).")/iu"; $bFound = false; function GetStrings(&$item, $key, $p) { global $arPhrase, $preg_template, $arResult, $bFound; $category = $p[0]; $icon = $p[1]; $arRes = null; if(!empty($item["url"])) { $searchstring = ''; if($item["text"]) { if(preg_match_all($preg_template, mb_strtoupper($item["text"]), $arMatches, PREG_OFFSET_CAPTURE)) { $c = count($arMatches[2]); for($j = $c-1; $j >= 0; $j--) { $prefix = substr($item["text"], 0, $arMatches[2][$j][1]); $instr = substr($item["text"], $arMatches[2][$j][1], strlen($arMatches[2][$j][0])); $suffix = substr($item["text"], (int)$arMatches[2][$j][1] + strlen($arMatches[2][$j][0]), strlen($item["text"])); $item["text"] = $prefix."<b>".$instr."</b>".$suffix; } } $searchstring .= $item["text"]; } if(!empty($item["title"])) $searchstring .= " ".$item["title"]; if(!empty($item["keywords"])) $searchstring .= " ".$item["keywords"]; if(empty($item["icon"])) $item["icon"] = $icon; if(preg_match_all($preg_template, mb_strtoupper($searchstring), $arMatches, PREG_OFFSET_CAPTURE)) { $ar = Array(); foreach($arMatches[0] as $m) $ar[] = trim($m[0], " ,;>"); if(count(array_unique($ar)) == count($arPhrase)) { $arRes = array("NAME"=>$item["text"], "URL"=>$item["url"], "TITLE"=>$item["title"], "ICON"=>$item['icon']); } } } if(is_array($arRes)) { if(empty($item['category'])) $item['category'] = $category; if(!is_array($arResult["CATEGORIES"][$item['category']])) { $arResult["CATEGORIES"][$item['category']] = Array('TITLE'=>'', 'ITEMS'=>Array()); if($item['category_name']!='') $arResult["CATEGORIES"][$item['category']]['TITLE'] = $item['category_name']; } $arResult["CATEGORIES"][$item['category']]["ITEMS"][] = $arRes; $bFound = true; } if(isset($item["items"]) && is_array($item["items"])) array_walk($item['items'], 'GetStrings', array($category, $item["icon"] ?? '')); } foreach($adminMenu->aGlobalMenu as $menu_id => $menu) array_walk($menu['items'], 'GetStrings', array($menu_id, '')); if($bFound) { ?> <table class="adm-search-result"> <?foreach($arResult["CATEGORIES"] as $category_id => $arCategory): if(empty($arCategory["ITEMS"])) continue; ?> <?foreach($arCategory["ITEMS"] as $i => $arItem): if($i>9) break; ?> <tr onclick="window.location='<?=CUtil::JSEscape($arItem["URL"]);?>';"> <?if($i == 0):?> <th> <?=$arCategory["TITLE"]?></th> <?else:?> <th> </th> <?endif?> <td class="adm-search-item" <?if($arItem["TITLE"]!='' && $arItem["TITLE"]!=$arItem["NAME"]):?>title="<?=$arItem["TITLE"]?>"<?endif?>> <a href="<?=$arItem["URL"]?>"><?if($arItem["ICON"]!=''):?><span class="adm-submenu-item-link-icon <?=$arItem["ICON"]?>"></span><?endif?><span class="adm-submenu-item-name-link-text"><?=$arItem["NAME"]?></span></a> </td> </tr> <?endforeach;?> <?endforeach;?> </table> <? } endif; require($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/epilog_admin_js.php");