• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/general/prop_element_sku.php
  • Класс: CIBlockPropertySKU
  • Вызов: CIBlockPropertySKU::getAdminListViewHTMLExtended
static function getAdminListViewHTMLExtended(array $property, array $value, $control): string
{
	$result = '';
	if ($value['VALUE'])
	{
		$isPublicMode = (defined("PUBLIC_MODE") && (int)PUBLIC_MODE === 1);

		if ($isPublicMode)
		{
			$result .= self::GetPublicViewHTML($property, $value, $control);
		}
		else
		{
			$result .= self::GetAdminListViewHTML($property, $value, $control);
		}
	}

	return $result;
}