• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/grid/panel/productgroupaction.php
  • Класс: BitrixCatalogGridPanelProductGroupAction
  • Вызов: ProductGroupAction::getBinaryList
static function getBinaryList(): array
{
	$result = [];

	$result[] = [
		'NAME' => Loc::getMessage('IBLOCK_GRID_PANEL_ACTION_MESS_STATUS_YES'),
		'VALUE' => CatalogProductTable::STATUS_YES
	];
	$result[] = [
		'NAME' => Loc::getMessage('IBLOCK_GRID_PANEL_ACTION_MESS_STATUS_NO'),
		'VALUE' => CatalogProductTable::STATUS_NO
	];

	return $result;
}