• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/admin/helper.php
  • Класс: BitrixSaleLocationAdminHelper
  • Вызов: Helper::getWidgetAppearance
static function getWidgetAppearance()
{
	$appearance = ConfigOption::get("sale", "sale_location_selector_appearance");

	if(!mb_strlen($appearance) || !in_array($appearance, array('search', 'steps')))
		return 'steps';

	return $appearance;
}