• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/grid/panel/productgroupaction.php
  • Класс: BitrixCatalogGridPanelProductGroupAction
  • Вызов: ProductGroupAction::checkIntValue
static function checkIntValue($value): ?int
{
	if (is_array($value) || $value === null)
	{
		return null;
	}
	if (((int)$value).'|' !== $value.'|')
	{
		return null;
	}

	return (int)$value;
}