本文整理汇总了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;
}
示例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);
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}
示例7: getIdentifierAttribute
/**
* Return the identifier attribute
*
* @return AttributeInterface|null
*/
protected function getIdentifierAttribute()
{
return $this->attributeRepository->findOneBy(['attributeType' => AttributeTypes::IDENTIFIER]);
}
示例8:
function it_provides_the_identifier_attribute(AttributeRepositoryInterface $attributeRepository, AttributeInterface $sku)
{
$attributeRepository->findOneBy(['attributeType' => 'pim_catalog_identifier'])->willReturn($sku);
$this->getIdentifierAttribute()->shouldReturn($sku);
}
示例9: getIdentifierAttribute
/**
* Return the identifier attribute
*
* @return AttributeInterface|null
*/
protected function getIdentifierAttribute()
{
return $this->attributeRepository->findOneBy(['attributeType' => 'pim_catalog_identifier']);
}