Base::get

  1. Bitrix24 API (v. 23.675.0)
  2. catalog
  3. Base
  4. get
  • Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/product/base.php
  • Класс: BitrixCatalogControllerProductBase
  • Вызов: Base::get
protected function get($id)
{
	$result = parent::get($id);

	if (empty($result) === false)
	{
		if (in_array($result['TYPE'], $this->getAllowedProductTypes()))
		{
			return $result;
		}
	}

	return false;
}

Добавить комментарий