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


PHP AttributeRepositoryInterface::findOneBy方法代码示例

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


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

示例1: getAttribute

 /**
  * Fetch the attribute by its code
  *
  * @param string $code
  *
  * @throws \LogicException
  *
  * @return AttributeInterface
  */
 protected function getAttribute($code)
 {
     $attribute = $this->attributeRepository->findOneBy(['code' => $code]);
     if ($attribute === null) {
         throw new \LogicException(sprintf('Unknown attribute "%s".', $code));
     }
     return $attribute;
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:17,代码来源:ProductUpdater.php

示例2: getFilter

 /**
  * {@inheritdoc}
  */
 public function getFilter($code)
 {
     $attribute = $this->attributeRepository->findOneBy(['code' => FieldFilterHelper::getCode($code)]);
     if (null !== $attribute) {
         return $this->getAttributeFilter($attribute);
     }
     return $this->getFieldFilter($code);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:11,代码来源:FilterRegistry.php

示例3: convertDefaultToLocalizedValue

 /**
  * {@inheritdoc}
  */
 public function convertDefaultToLocalizedValue($code, $data, $options = [])
 {
     $attribute = $this->attributeRepository->findOneBy(['code' => $code]);
     if (null === $attribute) {
         return $data;
     }
     $attributeType = $attribute->getAttributeType();
     if (null === $attributeType) {
         return $data;
     }
     $localizer = $this->localizerRegistry->getLocalizer($attributeType);
     if (null === $localizer) {
         return $data;
     }
     return $localizer->convertDefaultToLocalized($data, $options);
 }
开发者ID:qrz-io,项目名称:pim-community-dev,代码行数:19,代码来源:LocalizedAttributeConverter.php

示例4: addSorter

 /**
  * {@inheritdoc}
  */
 public function addSorter($field, $direction, array $context = [])
 {
     $attribute = $this->attributeRepository->findOneBy(['code' => $field]);
     if ($attribute !== null) {
         $sorter = $this->sorterRegistry->getAttributeSorter($attribute);
     } else {
         $sorter = $this->sorterRegistry->getFieldSorter($field);
     }
     if ($sorter === null) {
         throw new \LogicException(sprintf('Sorter on field "%s" is not supported', $field));
     }
     $context = $this->getFinalContext($context);
     if ($attribute !== null) {
         $this->addAttributeSorter($sorter, $attribute, $direction, $context);
     } else {
         $this->addFieldSorter($sorter, $field, $direction, $context);
     }
     return $this;
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:22,代码来源:ProductQueryBuilder.php

示例5: updateProduct

 /**
  * Set data from $actions to the given $product
  *
  * Actions should looks like that
  *
  * $actions =
  * [
  *     [
  *          'field'   => 'group',
  *          'value'   => 'summer_clothes',
  *          'options' => null
  *      ],
  *      [
  *          'field'   => 'category',
  *          'value'   => 'catalog_2013,catalog_2014',
  *          'options' => null
  *      ],
  * ]
  *
  * @param ProductInterface $product
  * @param array            $actions
  *
  * @throws \LogicException
  *
  * @return ProductInterface $product
  */
 protected function updateProduct(ProductInterface $product, array $actions)
 {
     $modifiedAttributesNb = 0;
     foreach ($actions as $action) {
         $attribute = $this->attributeRepository->findOneBy(['code' => $action['field']]);
         if (null === $attribute) {
             throw new \LogicException(sprintf('Attribute with code %s does not exist'), $action['field']);
         }
         if ($product->isAttributeEditable($attribute)) {
             $this->propertySetter->setData($product, $action['field'], $action['value'], $action['options']);
             $modifiedAttributesNb++;
         }
     }
     if (0 === $modifiedAttributesNb) {
         $this->stepExecution->incrementSummaryInfo('skipped_products');
         $this->stepExecution->addWarning($this->getName(), 'pim_enrich.mass_edit_action.edit-common-attributes.message.no_valid_attribute', [], $product);
         return null;
     }
     return $product;
 }
开发者ID:umpirsky,项目名称:pim-community-dev,代码行数:46,代码来源:EditCommonAttributesProcessor.php

示例6: getAttribute

 /**
  * Fetch the attribute by its code
  *
  * @param string $code
  *
  * @throws \LogicException
  *
  * @return AttributeInterface|null
  */
 protected function getAttribute($code)
 {
     $attribute = $this->attributeRepository->findOneBy(['code' => $code]);
     return $attribute;
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:14,代码来源:ProductUpdater.php

示例7: getIdentifierAttribute

 /**
  * Return the identifier attribute
  *
  * @return AttributeInterface|null
  */
 protected function getIdentifierAttribute()
 {
     return $this->attributeRepository->findOneBy(['attributeType' => AttributeTypes::IDENTIFIER]);
 }
开发者ID:paulclarkin,项目名称:pim-community-dev,代码行数:9,代码来源:ProductRepository.php

示例8:

 function it_provides_the_identifier_attribute(AttributeRepositoryInterface $attributeRepository, AttributeInterface $sku)
 {
     $attributeRepository->findOneBy(['attributeType' => 'pim_catalog_identifier'])->willReturn($sku);
     $this->getIdentifierAttribute()->shouldReturn($sku);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:5,代码来源:ProductManagerSpec.php

示例9: getIdentifierAttribute

 /**
  * Return the identifier attribute
  *
  * @return AttributeInterface|null
  */
 protected function getIdentifierAttribute()
 {
     return $this->attributeRepository->findOneBy(['attributeType' => 'pim_catalog_identifier']);
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:9,代码来源:ProductRepository.php


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