• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/controller/store.php
  • Класс: BitrixCatalogControllerStore
  • Вызов: Store::checkReadPermissionEntity
protected function checkReadPermissionEntity()
{
	$r = new Result();

	if (
		!(
			$this->accessController->check(ActionDictionary::ACTION_CATALOG_READ)
			|| $this->accessController->check(ActionDictionary::ACTION_STORE_VIEW)
			|| $this->accessController->check(ActionDictionary::ACTION_STORE_MODIFY)
		)
	)
	{
		$r->addError(new Error('Access Denied', 200040300010));
	}
	return $r;
}