63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<?php
|
|
IncludeModuleLangFile(__FILE__);
|
|
/** @global CMain $APPLICATION */
|
|
global $APPLICATION;
|
|
|
|
if ($APPLICATION->GetGroupRight('search') != 'D')
|
|
{
|
|
$aMenu = [
|
|
'parent_menu' => 'global_menu_settings',
|
|
'section' => 'search',
|
|
'sort' => 200,
|
|
'text' => GetMessage('mnu_search'),
|
|
'title' => GetMessage('mnu_search_title'),
|
|
'icon' => 'search_menu_icon',
|
|
'page_icon' => 'search_page_icon',
|
|
'items_id' => 'menu_search',
|
|
'items' => [
|
|
[
|
|
'text' => GetMessage('mnu_reindex'),
|
|
'url' => 'search_reindex.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_reindex.php'],
|
|
'title' => GetMessage('mnu_reindex_alt'),
|
|
],
|
|
[
|
|
'text' => GetMessage('mnu_sitemap'),
|
|
'url' => 'search_sitemap.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_sitemap.php'],
|
|
'title' => GetMessage('mnu_sitemap_alt'),
|
|
],
|
|
[
|
|
'text' => GetMessage('mnu_customrank'),
|
|
'url' => 'search_customrank_admin.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_customrank_admin.php', 'search_customrank_edit.php'],
|
|
'title' => GetMessage('mnu_customrank_alt'),
|
|
],
|
|
[
|
|
'text' => GetMessage('mnu_statistic'),
|
|
'title' => GetMessage('mnu_statistic_alt'),
|
|
'items_id' => 'menu_search_stat',
|
|
'items' => [
|
|
[
|
|
'text' => GetMessage('mnu_stat_phrase_list'),
|
|
'url' => 'search_phrase_list.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_phrase_list.php'],
|
|
],
|
|
[
|
|
'text' => GetMessage('mnu_stat_phrase_stat'),
|
|
'url' => 'search_phrase_stat.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_phrase_stat.php'],
|
|
],
|
|
[
|
|
'text' => GetMessage('mnu_stat_tags_stat'),
|
|
'url' => 'search_tags_stat.php?lang=' . LANGUAGE_ID,
|
|
'more_url' => ['search_tags_stat.php'],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
];
|
|
return $aMenu;
|
|
}
|
|
return false;
|