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


PHP AttributeInterface::getAttributeType方法代码示例

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


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

示例1: supportsAttributes

 /**
  * {@inheritdoc}
  */
 public function supportsAttributes(AttributeInterface $fromAttribute, AttributeInterface $toAttribute)
 {
     $supportsFrom = in_array($fromAttribute->getAttributeType(), $this->supportedFromTypes);
     $supportsTo = in_array($toAttribute->getAttributeType(), $this->supportedToTypes);
     $sameType = $fromAttribute->getAttributeType() === $toAttribute->getAttributeType();
     return $supportsFrom && $supportsTo && $sameType;
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:10,代码来源:BaseAttributeCopier.php

示例2:

 function it_supports_boolean_attributes(AttributeInterface $booleanAttribute, AttributeInterface $textareaAttribute)
 {
     $booleanAttribute->getAttributeType()->willReturn('pim_catalog_boolean');
     $this->supports($booleanAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supports($textareaAttribute)->shouldReturn(false);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:7,代码来源:BooleanValueSetterSpec.php

示例3:

 function it_supports_simpleselect_attributes(AttributeInterface $simpleSelectAttribute, AttributeInterface $textareaAttribute)
 {
     $simpleSelectAttribute->getAttributeType()->willReturn('pim_catalog_simpleselect');
     $this->supports($simpleSelectAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supports($textareaAttribute)->shouldReturn(false);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:7,代码来源:SimpleSelectValueSetterSpec.php

示例4:

 function it_supports_number_attributes(AttributeInterface $numberAttribute, AttributeInterface $textareaAttribute)
 {
     $numberAttribute->getAttributeType()->willReturn('pim_catalog_number');
     $this->supports($numberAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supports($textareaAttribute)->shouldReturn(false);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:7,代码来源:NumberValueSetterSpec.php

示例5:

 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

示例6:

 function it_supports_multi_select_attribute(AttributeInterface $attribute)
 {
     $attribute->getAttributeType()->willReturn('pim_catalog_multiselect');
     $this->supportsAttribute($attribute)->shouldReturn(true);
     $attribute->getAttributeType()->willReturn(Argument::any());
     $this->supportsAttribute($attribute)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:OptionsFilterSpec.php

示例7:

 function it_supports_metric_attributes(AttributeInterface $metrictAttribute, AttributeInterface $textareaAttribute)
 {
     $metrictAttribute->getAttributeType()->willReturn('pim_catalog_metric');
     $this->supportsAttribute($metrictAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supportsAttribute($textareaAttribute)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:MetricAttributeSetterSpec.php

示例8:

 function it_supports_reference_data_attributes(AttributeInterface $refDataAttribute, AttributeInterface $textareaAttribute)
 {
     $refDataAttribute->getAttributeType()->willReturn('pim_reference_data_simpleselect');
     $this->supportsAttribute($refDataAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supportsAttribute($textareaAttribute)->shouldReturn(false);
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:7,代码来源:ReferenceDataSetterSpec.php

示例9:

 function it_adds_missing_product_values_from_family_on_new_product($valuesResolver, FamilyInterface $family, ProductInterface $product, AttributeInterface $sku, AttributeInterface $name, AttributeInterface $desc, ProductValueInterface $skuValue)
 {
     $sku->getCode()->willReturn('sku');
     $sku->getAttributeType()->willReturn('pim_catalog_identifier');
     $sku->isLocalizable()->willReturn(false);
     $sku->isScopable()->willReturn(false);
     $name->getCode()->willReturn('name');
     $name->getAttributeType()->willReturn('pim_catalog_text');
     $name->isLocalizable()->willReturn(true);
     $name->isScopable()->willReturn(false);
     $desc->getCode()->willReturn('description');
     $desc->getAttributeType()->willReturn('pim_catalog_text');
     $desc->isLocalizable()->willReturn(true);
     $desc->isScopable()->willReturn(true);
     // get expected attributes
     $product->getAttributes()->willReturn([$sku]);
     $family->getAttributes()->willReturn([$sku, $name, $desc]);
     $product->getFamily()->willReturn($family);
     // get eligible values
     $valuesResolver->resolveEligibleValues(['sku' => $sku, 'name' => $name, 'description' => $desc])->willReturn([['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']]);
     // get existing values
     $skuValue->getAttribute()->willReturn($sku);
     $skuValue->getLocale()->willReturn(null);
     $skuValue->getScope()->willReturn(null);
     $product->getValues()->willReturn([$skuValue]);
     // add 6 new values : 4 desc (locales x scopes) + 2 name (locales
     $product->addValue(Argument::any())->shouldBeCalledTimes(6);
     $this->addMissingProductValues($product);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:29,代码来源:ProductBuilderSpec.php

示例10:

 function it_supports_price_collection_attributes(AttributeInterface $price_collectionAttribute, AttributeInterface $textareaAttribute)
 {
     $price_collectionAttribute->getAttributeType()->willReturn('pim_catalog_price_collection');
     $this->supportsAttribute($price_collectionAttribute)->shouldReturn(true);
     $textareaAttribute->getAttributeType()->willReturn('pim_catalog_textarea');
     $this->supportsAttribute($textareaAttribute)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:PriceCollectionAttributeSetterSpec.php

示例11:

 function it_does_not_support_other_attributes($identifier, $textarea, AttributeInterface $image)
 {
     $this->supportAttribute($identifier)->shouldReturn(false);
     $this->supportAttribute($textarea)->shouldReturn(false);
     $image->getAttributeType()->willReturn('pim_catalog_image');
     $this->supportAttribute($image)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:UrlGuesserSpec.php

示例12:

 function it_supports_metric_attribute(AttributeInterface $metric)
 {
     $metric->getAttributeType()->willReturn('pim_catalog_metric');
     $this->supportsAttribute($metric)->shouldReturn(true);
     $metric->getAttributeType()->willReturn(Argument::any());
     $this->supportsAttribute($metric)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:MetricSorterSpec.php

示例13:

 function it_supports_date_attributes(AttributeInterface $dateAtt, AttributeInterface $otherAtt)
 {
     $dateAtt->getAttributeType()->willReturn('pim_catalog_date');
     $this->supportsAttribute($dateAtt)->shouldReturn(true);
     $otherAtt->getAttributeType()->willReturn('pim_catalog_other');
     $this->supportsAttribute($otherAtt)->shouldReturn(false);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:7,代码来源:DateFilterSpec.php

示例14:

 function it_throws_an_exception_when_the_locale_is_not_provided($qb, AttributeInterface $attribute)
 {
     $attribute->getCode()->willReturn('my_code');
     $attribute->getBackendType()->willReturn('options');
     $attribute->getAttributeType()->willReturn('pim_catalog_simpleselect');
     $this->shouldThrow('\\InvalidArgumentException')->duringAddAttributeSorter($attribute, 'desc', null, 'ecommerce');
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:7,代码来源:EntitySorterSpec.php

示例15: getEmptyValue

 /**
  * Get empty value for specified attribute depending on its type
  *
  * @param AttributeInterface $attribute
  *
  * @return array|bool|string|null
  */
 protected function getEmptyValue(AttributeInterface $attribute)
 {
     switch ($attribute->getAttributeType()) {
         case 'pim_catalog_metric':
             $emptyValue = ['data' => null, 'unit' => $attribute->getDefaultMetricUnit()];
             break;
         case 'pim_catalog_multiselect':
         case 'pim_reference_data_multiselect':
             $emptyValue = [];
             break;
         case 'pim_catalog_text':
             $emptyValue = '';
             break;
         case 'pim_catalog_boolean':
             $emptyValue = false;
             break;
         case 'pim_catalog_price_collection':
             $emptyValue = [];
             break;
         default:
             $emptyValue = null;
             break;
     }
     return $emptyValue;
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:32,代码来源:AttributeNormalizer.php


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