当前位置: 首页>>代码示例>>PHP>>正文


PHP AttributeInterface::isScopable方法代码示例

本文整理汇总了PHP中Pim\Bundle\CatalogBundle\Model\AttributeInterface::isScopable方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeInterface::isScopable方法的具体用法?PHP AttributeInterface::isScopable怎么用?PHP AttributeInterface::isScopable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pim\Bundle\CatalogBundle\Model\AttributeInterface的用法示例。


在下文中一共展示了AttributeInterface::isScopable方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getNormalizedValueFieldFromAttribute

 /**
  * Normalize the field name from attribute and catalog context
  *
  * @param AttributeInterface $attribute
  * @param string             $locale
  * @param string             $scope
  *
  * @return string
  */
 public static function getNormalizedValueFieldFromAttribute(AttributeInterface $attribute, $locale = null, $scope = null)
 {
     if ($attribute->isLocalizable() && null === $locale) {
         throw new \LogicException('Locale is not configured');
     }
     if ($attribute->isScopable() && null === $scope) {
         throw new \LogicException('Scope is not configured');
     }
     return self::getNormalizedValueField($attribute->getCode(), $attribute->isLocalizable(), $attribute->isScopable(), $attribute->isLocalizable() ? $locale : null, $attribute->isScopable() ? $scope : null);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:19,代码来源:ProductQueryUtility.php

示例2:

 function it_throws_exception_when_scope_is_not_provided_but_expected(ProductInterface $product, AttributeInterface $price)
 {
     $price->getCode()->willReturn('price');
     $price->isLocalizable()->willReturn(false);
     $price->isScopable()->willReturn(true);
     $this->shouldThrow(new \InvalidArgumentException('A scope must be provided to create a value for the scopable attribute price'))->duringAddProductValue($product, $price);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:7,代码来源:ProductBuilderSpec.php

示例3:

 function it_resolves_eligible_values_for_a_set_of_attributes($localeRepository, $channelRepository, AttributeInterface $sku, AttributeInterface $name, AttributeInterface $desc, AttributeInterface $tax, LocaleInterface $fr, LocaleInterface $en, ChannelInterface $ecom, ChannelInterface $print)
 {
     $sku->getCode()->willReturn('sku');
     $sku->getAttributeType()->willReturn('pim_catalog_identifier');
     $sku->isLocalizable()->willReturn(false);
     $sku->isScopable()->willReturn(false);
     $sku->isLocaleSpecific()->willReturn(false);
     $name->getCode()->willReturn('name');
     $name->getAttributeType()->willReturn('pim_catalog_text');
     $name->isLocalizable()->willReturn(true);
     $name->isScopable()->willReturn(false);
     $name->isLocaleSpecific()->willReturn(false);
     $desc->getCode()->willReturn('description');
     $desc->getAttributeType()->willReturn('pim_catalog_text');
     $desc->isLocalizable()->willReturn(true);
     $desc->isScopable()->willReturn(true);
     $desc->isLocaleSpecific()->willReturn(false);
     $tax->getCode()->willReturn('tax');
     $tax->getAttributeType()->willReturn('pim_catalog_text');
     $tax->isLocalizable()->willReturn(true);
     $tax->isScopable()->willReturn(false);
     $tax->isLocaleSpecific()->willReturn(true);
     $tax->getLocaleSpecificCodes()->willReturn(['fr_FR']);
     $fr->getCode()->willReturn('fr_FR');
     $en->getCode()->willReturn('en_US');
     $localeRepository->getActivatedLocales()->willReturn([$fr, $en]);
     $ecom->getCode()->willReturn('ecommerce');
     $ecom->getLocales()->willReturn([$en, $fr]);
     $print->getCode()->willReturn('print');
     $print->getLocales()->willReturn([$en, $fr]);
     $channelRepository->findAll()->willReturn([$ecom, $print]);
     $this->resolveEligibleValues([$sku, $name, $desc, $tax])->shouldReturn([['attribute' => 'sku', 'type' => 'pim_catalog_identifier', 'locale' => null, 'scope' => null], ['attribute' => 'name', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => null], ['attribute' => 'name', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => null], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => 'ecommerce'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => 'ecommerce'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => 'print'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => 'print'], ['attribute' => 'tax', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => null]]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:33,代码来源:AttributeValuesResolverSpec.php

示例4:

 function it_throws_an_exception_when_scope_is_not_activated($scopeRepository, AttributeInterface $description)
 {
     $scopeRepository->getChannelCodes()->willReturn([]);
     $description->isScopable()->willReturn(true);
     $description->getCode()->willReturn('description');
     $this->shouldThrow(new \LogicException('Attribute "description" expects an existing scope, "print" given.'))->during('validateScope', [$description, 'print']);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:AttributeValidatorHelperSpec.php

示例5: let

 function let(SerializerInterface $serializer, AttributeInterface $simpleAttribute)
 {
     $serializer->implement('Symfony\\Component\\Serializer\\Normalizer\\NormalizerInterface');
     $this->setSerializer($serializer);
     $simpleAttribute->isLocalizable()->willReturn(false);
     $simpleAttribute->isScopable()->willReturn(false);
     $simpleAttribute->getCode()->willReturn('simple');
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:8,代码来源:ProductValueNormalizerSpec.php

示例6:

 function it_throws_an_exception_when_the_scope_is_not_provided(AttributeInterface $price)
 {
     $price->getId()->willReturn(42);
     $price->isLocalizable()->willReturn(false);
     $price->isScopable()->willReturn(true);
     $price->getCode()->willReturn('price');
     $this->shouldThrow('\\InvalidArgumentException')->duringPrepareCondition($price, 'alias', 'en_US', null);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:8,代码来源:ValueJoinSpec.php

示例7: let

 function let(Builder $qb, AttributeInterface $image, AttributeValidatorHelper $attrValidatorHelper)
 {
     $this->beConstructedWith($attrValidatorHelper, ['pim_catalog_image', 'pim_catalog_file'], ['STARTS WITH', 'ENDS WITH', 'CONTAINS', 'DOES NOT CONTAIN', '=', 'EMPTY']);
     $this->setQueryBuilder($qb);
     $image->getCode()->willReturn('picture');
     $image->isLocalizable()->willReturn(false);
     $image->isScopable()->willReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:8,代码来源:MediaFilterSpec.php

示例8: prepareCondition

 /**
  * Prepare join to attribute condition with current locale and scope criterias
  *
  * @param AttributeInterface $attribute the attribute
  * @param string             $joinAlias the value join alias
  * @param string             $locale    the locale
  * @param string             $scope     the scope
  *
  * @return string
  */
 public function prepareCondition(AttributeInterface $attribute, $joinAlias, $locale = null, $scope = null)
 {
     $condition = $joinAlias . '.attribute = ' . $attribute->getId();
     if ($attribute->isLocalizable() && null === $locale) {
         throw new \InvalidArgumentException(sprintf('Cannot prepare condition on localizable attribute "%s" without locale', $attribute->getCode()));
     }
     if ($attribute->isLocalizable()) {
         $condition .= ' AND ' . $joinAlias . '.locale = ' . $this->qb->expr()->literal($locale);
     }
     if ($attribute->isScopable() && null === $scope) {
         throw new \InvalidArgumentException(sprintf('Cannot prepare condition on scopable attribute "%s" without scope', $attribute->getCode()));
     }
     if ($attribute->isScopable()) {
         $condition .= ' AND ' . $joinAlias . '.scope = ' . $this->qb->expr()->literal($scope);
     }
     return $condition;
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:27,代码来源:ValueJoin.php

示例9:

 function it_adds_a_order_by_on_an_attribute_value_in_the_query(Builder $queryBuilder, AttributeInterface $sku)
 {
     $sku->getCode()->willReturn('sku');
     $sku->isLocalizable()->willReturn(false);
     $sku->isScopable()->willReturn(false);
     $queryBuilder->sort('normalizedData.sku', 'desc')->willReturn($queryBuilder);
     $queryBuilder->sort('_id')->shouldBeCalled();
     $this->addAttributeSorter($sku, 'desc');
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:9,代码来源:BaseSorterSpec.php

示例10: validateScope

 /**
  * Check if scope data is consistent with the attribute scopable property
  *
  * @param AttributeInterface $attribute
  * @param string             $scope
  *
  * @throws \LogicException
  */
 public function validateScope(AttributeInterface $attribute, $scope)
 {
     if (!$attribute->isScopable() && null === $scope) {
         return;
     }
     if ($attribute->isScopable() && null === $scope) {
         throw new \LogicException(sprintf('Attribute "%s" expects a scope, none given.', $attribute->getCode()));
     }
     if (!$attribute->isScopable() && null !== $scope) {
         throw new \LogicException(sprintf('Attribute "%s" does not expect a scope, "%s" given.', $attribute->getCode(), $scope));
     }
     if (null === static::$scopeCodes) {
         static::$scopeCodes = $this->getScopeCodes();
     }
     if (!in_array($scope, static::$scopeCodes)) {
         throw new \LogicException(sprintf('Attribute "%s" expects an existing scope, "%s" given.', $attribute->getCode(), $scope));
     }
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:26,代码来源:AttributeValidatorHelper.php

示例11:

 function it_normalizes_value_with_decimal_support_backend(ProductValueInterface $value, AttributeInterface $attribute)
 {
     $attribute->getCode()->willReturn('code');
     $attribute->getBackendType()->willReturn('decimal');
     $attribute->isLocalizable()->willReturn(false);
     $attribute->isScopable()->willReturn(false);
     $value->getData()->willReturn('42.42');
     $value->getAttribute()->willReturn($attribute);
     $this->normalize($value, 'mongodb_json', [])->shouldReturn(['code' => 42.42]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:10,代码来源:ProductValueNormalizerSpec.php

示例12:

 function it_throws_an_exception_when_scope_is_expected_but_not_existing($attrValidatorHelper, AttributeInterface $attribute)
 {
     $e = new \LogicException('Attribute "attributeCode" expects an existing scope, "ecommerce" given.');
     $attribute->getCode()->willReturn('attributeCode');
     $attribute->isLocalizable()->willReturn(false);
     $attribute->isScopable()->willReturn(true);
     $attrValidatorHelper->validateLocale($attribute, null)->shouldBeCalled();
     $attrValidatorHelper->validateScope($attribute, 'ecommerce')->willThrow($e);
     $this->shouldThrow(InvalidArgumentException::expectedFromPreviousException($e, 'attributeCode', 'setter', 'concrete'))->during('testLocaleAndScope', [$attribute, null, 'ecommerce']);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:10,代码来源:AbstractAttributeSetterSpec.php

示例13:

 function it_denormalizes_variant_group_values($fieldNameBuilder, $valueDenormalizer, AttributeInterface $description)
 {
     $fieldNameBuilder->extractAttributeFieldNameInfos('description-ecommerce-en_US')->willReturn(['attribute' => $description, 'locale_code' => 'en_US', 'scope_code' => 'ecommerce'])->shouldBeCalled();
     $fieldNameBuilder->extractAttributeFieldNameInfos('description-ecommerce-fr_FR')->willReturn(['attribute' => $description, 'locale_code' => 'fr_FR', 'scope_code' => 'ecommerce'])->shouldBeCalled();
     $description->getCode()->willReturn('description');
     $description->isLocalizable()->willReturn(true);
     $description->isScopable()->willReturn(true);
     $valueDenormalizer->denormalize('My en_US desc', self::VALUE_CLASS, self::FORMAT_CSV, Argument::any())->shouldBeCalled();
     $valueDenormalizer->denormalize('My fr_FR desc', self::VALUE_CLASS, self::FORMAT_CSV, Argument::any())->shouldBeCalled();
     $csvData = ['description-ecommerce-en_US' => 'My en_US desc', 'description-ecommerce-fr_FR' => 'My fr_FR desc'];
     $this->denormalize($csvData, 'ProductValue[]', 'csv');
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:12,代码来源:ProductValuesDenormalizerSpec.php

示例14: let

 function let(QueryBuilder $qb, AttributeValidatorHelper $attrValidatorHelper, Expr $expr, AttributeInterface $image)
 {
     $this->beConstructedWith($attrValidatorHelper, ['pim_catalog_image', 'pim_catalog_file'], ['STARTS WITH', 'ENDS WITH', 'CONTAINS', 'DOES NOT CONTAIN', '=', 'EMPTY']);
     $this->setQueryBuilder($qb);
     $qb->getRootAlias()->willReturn('p');
     $qb->expr()->willReturn($expr);
     $image->getId()->willReturn(1);
     $image->getCode()->willReturn('picture');
     $image->isLocalizable()->willReturn(false);
     $image->isScopable()->willReturn(false);
     $image->getBackendType()->willReturn('media');
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:12,代码来源:MediaFilterSpec.php

示例15:

 function it_sets_the_locale_and_scope_when_denormalizing_values($serializer, AttributeInterface $attribute)
 {
     $attribute->getAttributeType()->willReturn('pim_catalog_number');
     $attribute->getBackendType()->willReturn('decimal');
     $attribute->isLocalizable()->willReturn(true);
     $attribute->isScopable()->willReturn(true);
     $serializer->denormalize(1, 'pim_catalog_number', 'json', Argument::type('array'))->shouldBeCalled()->willReturn(1);
     $value = $this->denormalize(['value' => 1, 'locale' => 'en_US', 'scope' => 'ecommerce'], 'Pim\\Bundle\\CatalogBundle\\Model\\ProductValue', 'json', ['attribute' => $attribute]);
     $value->shouldBeAnInstanceOf('Pim\\Bundle\\CatalogBundle\\Model\\ProductValue');
     $value->getData()->shouldReturn(1);
     $value->getLocale()->shouldReturn('en_US');
     $value->getScope()->shouldReturn('ecommerce');
 }
开发者ID:jacko972,项目名称:pim-community-dev,代码行数:13,代码来源:ProductValueDenormalizerSpec.php


注:本文中的Pim\Bundle\CatalogBundle\Model\AttributeInterface::isScopable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。