• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/roundingrule.php
  • Класс: BitrixCatalogControllerRoundingRule
  • Вызов: RoundingRule::exists
protected function exists($id)
{
	$r = new Result();
	if (isset($this->get($id)['ID']) == false)
	{
		$r->addError(new Error('Rounding does not exist'));
	}

	return $r;
}