本文整理汇总了PHP中Pim\Component\Catalog\Model\AttributeInterface::getGroup方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeInterface::getGroup方法的具体用法?PHP AttributeInterface::getGroup怎么用?PHP AttributeInterface::getGroup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Component\Catalog\Model\AttributeInterface
的用法示例。
在下文中一共展示了AttributeInterface::getGroup方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_normalizes_attribute($transNormalizer, $dateTimeNormalizer, AttributeInterface $attribute, AttributeGroupInterface $attributeGroup)
{
$transNormalizer->normalize(Argument::cetera())->willReturn([]);
$dateMin = new \DateTime('2015-05-23 15:55:50');
$dateMax = new \DateTime('2015-06-23 15:55:50');
$attribute->getAttributeType()->willReturn('Yes/No');
$attribute->getCode()->willReturn('attribute_size');
$attribute->getGroup()->willReturn($attributeGroup);
$attributeGroup->getCode()->willReturn('size');
$attribute->isUnique()->willReturn(true);
$attribute->isUseableAsGridFilter()->willReturn(true);
$attribute->getAllowedExtensions()->willReturn(['csv', 'xml', 'json']);
$attribute->getMetricFamily()->willReturn('Length');
$attribute->getDefaultMetricUnit()->willReturn('Centimenter');
$attribute->getReferenceDataName()->willReturn('color');
$attribute->isLocalizable()->willReturn(true);
$attribute->isScopable()->willReturn(true);
$attribute->getLocaleSpecificCodes()->willReturn(['en_US', 'fr_FR']);
$attribute->getMaxCharacters()->willReturn(255);
$attribute->getValidationRule()->willReturn('email');
$attribute->getValidationRegexp()->willReturn('[0-9]*');
$attribute->isWysiwygEnabled()->willReturn(true);
$attribute->getNumberMin()->willReturn('0.55');
$attribute->getNumberMax()->willReturn('1500.55');
$attribute->isDecimalsAllowed()->willReturn(true);
$attribute->isNegativeAllowed()->willReturn(true);
$attribute->getDateMin()->willReturn($dateMin);
$attribute->getDateMax()->willReturn($dateMax);
$attribute->getMaxFileSize()->willReturn(1024);
$attribute->getMinimumInputLength()->willReturn(2);
$attribute->getSortOrder()->willReturn(4);
$dateTimeNormalizer->normalize($dateMin)->willReturn('2015-05-23T15:55:50+01:00');
$dateTimeNormalizer->normalize($dateMax)->willReturn('2015-06-23T15:55:50+01:00');
$this->normalize($attribute)->shouldReturn(['code' => 'attribute_size', 'type' => 'Yes/No', 'group' => 'size', 'unique' => true, 'useable_as_grid_filter' => true, 'allowed_extensions' => ['csv', 'xml', 'json'], 'metric_family' => 'Length', 'default_metric_unit' => 'Centimenter', 'reference_data_name' => 'color', 'available_locales' => ['en_US', 'fr_FR'], 'max_characters' => 255, 'validation_rule' => 'email', 'validation_regexp' => '[0-9]*', 'wysiwyg_enabled' => true, 'number_min' => '0.55', 'number_max' => '1500.55', 'decimals_allowed' => true, 'negative_allowed' => true, 'date_min' => '2015-05-23T15:55:50+01:00', 'date_max' => '2015-06-23T15:55:50+01:00', 'max_file_size' => '1024', 'minimum_input_length' => 2, 'sort_order' => 4, 'localizable' => true, 'scopable' => true, 'labels' => []]);
}
示例2: let
function let(TranslationNormalizer $transnormalizer, AttributeInterface $attribute, AttributeGroupInterface $attributeGroup)
{
$this->beConstructedWith($transnormalizer);
$transnormalizer->normalize(Argument::cetera())->willReturn([]);
$attribute->getAttributeType()->willReturn('Yes/No');
$attribute->getCode()->willReturn('attribute_size');
$attribute->getGroup()->willReturn($attributeGroup);
$attributeGroup->getCode()->willReturn('size');
$attribute->isUnique()->willReturn(true);
$attribute->isUseableAsGridFilter()->willReturn(false);
$attribute->getAllowedExtensions()->willReturn(['csv', 'xml', 'json']);
$attribute->getMetricFamily()->willReturn('Length');
$attribute->getDefaultMetricUnit()->willReturn('Centimenter');
$attribute->getReferenceDataName()->willReturn('color');
$attribute->isLocalizable()->willReturn(true);
$attribute->isScopable()->willReturn(false);
$attribute->getLocaleSpecificCodes()->willReturn(['en_US', 'fr_FR']);
$attribute->getMaxCharacters()->willReturn(null);
$attribute->getValidationRule()->willReturn(null);
$attribute->getValidationRegexp()->willReturn(null);
$attribute->isWysiwygEnabled()->willReturn(false);
$attribute->getNumberMin()->willReturn('');
$attribute->getNumberMax()->willReturn('');
$attribute->isDecimalsAllowed()->willReturn(false);
$attribute->isNegativeAllowed()->willReturn(false);
$attribute->getDateMin()->willReturn(null);
$attribute->getDateMax()->willReturn(null);
$attribute->getMaxFileSize()->willReturn(null);
$attribute->getMinimumInputLength()->willReturn(null);
$attribute->getSortOrder()->willReturn(0);
}
示例3:
function it_renders_a_product_with_an_image($templating, ProductInterface $blender, AttributeGroupInterface $media, AttributeInterface $mainImage, ProductValueInterface $productValue, FileInfoInterface $fileInfo, CacheManager $cacheManager)
{
$blender->getAttributes()->willReturn([$mainImage]);
$blender->getValue("main_image", "en_US", "ecommerce")->willReturn($productValue);
$productValue->getMedia()->willReturn($fileInfo);
$fileInfo->getKey()->willReturn('fookey');
$cacheManager->isStored('fookey', 'thumbnail')->willReturn(true);
$mainImage->getGroup()->willReturn($media);
$media->getLabel()->willReturn('Media');
$mainImage->getCode()->willReturn('main_image');
$mainImage->getAttributeType()->willReturn('pim_catalog_image');
$templating->render(self::TEMPLATE_NAME, ['product' => $blender, 'locale' => 'en_US', 'scope' => 'ecommerce', 'groupedAttributes' => ['Media' => ['main_image' => $mainImage]], 'imageAttributes' => ['main_image' => $mainImage], 'uploadDir' => '/tmp/' . DIRECTORY_SEPARATOR, 'customFont' => null])->shouldBeCalled();
$this->render($blender, 'pdf', ['locale' => 'en_US', 'scope' => 'ecommerce']);
}
示例4: let
function let(TranslationNormalizer $transnormalizer, AttributeInterface $attribute, AttributeGroupInterface $attributeGroup)
{
$this->beConstructedWith($transnormalizer);
$transnormalizer->normalize(Argument::cetera())->willReturn([]);
$attribute->getAttributeType()->willReturn('Yes/No');
$attribute->getCode()->willReturn('attribute_size');
$attribute->getGroup()->willReturn($attributeGroup);
$attributeGroup->getCode()->willReturn('size');
$attribute->isUnique()->willReturn(true);
$attribute->isUseableAsGridFilter()->willReturn(false);
$attribute->getAllowedExtensions()->willReturn(['csv', 'xml', 'json']);
$attribute->getMetricFamily()->willReturn('Length');
$attribute->getDefaultMetricUnit()->willReturn('Centimenter');
$attribute->getReferenceDataName()->willReturn('color');
$attribute->isLocalizable()->willReturn(true);
$attribute->isScopable()->willReturn(false);
}
示例5: hideGroupElement
/**
* Hide the group field with a default value = "Other"
*
* @param FormInterface $form Form
* @param AttributeInterface $data
*/
protected function hideGroupElement(FormInterface $form, AttributeInterface $data)
{
if (null !== $data->getId()) {
$group = $data->getGroup();
} else {
$group = $this->groupRepository->findDefaultAttributeGroup();
}
$formField = $form->get('group');
$options = $formField->getConfig()->getOptions();
$newOptions = ['data' => $group, 'class' => $options['class'], 'choices' => [$group], 'required' => true, 'multiple' => false, 'read_only' => true, 'attr' => ['class' => 'hide']];
$form->add('group', 'entity', $newOptions);
}
示例6:
function it_gets_all_product_attributes_and_sets_correct_locale($attributeRepository, $massActionManager, AttributeInterface $attr1, AttributeInterface $attr2, AttributeGroupInterface $attrGroup, LocaleInterface $enLocale)
{
$enLocale->getCode()->willReturn('en_US');
$this->setLocale($enLocale);
$attributeRepository->findWithGroups([], ['conditions' => ['unique' => 0]])->shouldBeCalled()->willReturn([$attr1, $attr2]);
$attr1->setLocale('en_US')->shouldBeCalled();
$attr2->setLocale('en_US')->shouldBeCalled();
$attr1->getGroup()->willReturn($attrGroup);
$attr2->getGroup()->willReturn($attrGroup);
$massActionManager->filterLocaleSpecificAttributes([$attr1, $attr2], 'en_US')->willReturn([$attr1, $attr2]);
$attrGroup->setLocale('en_US')->shouldBeCalledTimes(2);
$this->getAllAttributes()->shouldReturn([$attr1, $attr2]);
}
示例7: getAttributeValues
/**
* @param AttributeInterface $attribute
* @param string $locale
*
* @return ArrayCollection
*/
protected function getAttributeValues(AttributeInterface $attribute, $locale)
{
$group = $attribute->getGroup();
$key = $attribute->getCode();
if ($locale) {
$key .= '_' . $locale;
}
if (!isset($this->view[$group->getId()]['attributes'][$key]['values'])) {
return [];
}
return $this->view[$group->getId()]['attributes'][$key]['values'];
}
示例8: normalize
/**
* {@inheritdoc}
*
* @param AttributeInterface $attribute
*/
public function normalize($attribute, $format = null, array $context = [])
{
return ['code' => $attribute->getCode(), 'type' => $attribute->getAttributeType(), 'group' => $attribute->getGroup() ? $attribute->getGroup()->getCode() : null, 'unique' => (bool) $attribute->isUnique(), 'useable_as_grid_filter' => (bool) $attribute->isUseableAsGridFilter(), 'allowed_extensions' => $attribute->getAllowedExtensions(), 'metric_family' => '' === $attribute->getMetricFamily() ? null : $attribute->getMetricFamily(), 'default_metric_unit' => '' === $attribute->getDefaultMetricUnit() ? null : $attribute->getDefaultMetricUnit(), 'reference_data_name' => $attribute->getReferenceDataName(), 'available_locales' => $attribute->getLocaleSpecificCodes(), 'max_characters' => null === $attribute->getMaxCharacters() ? null : (int) $attribute->getMaxCharacters(), 'validation_rule' => '' === $attribute->getValidationRule() ? null : $attribute->getValidationRule(), 'validation_regexp' => '' === $attribute->getValidationRegexp() ? null : $attribute->getValidationRegexp(), 'wysiwyg_enabled' => (bool) $attribute->isWysiwygEnabled(), 'number_min' => null === $attribute->getNumberMin() ? null : (string) $attribute->getNumberMin(), 'number_max' => null === $attribute->getNumberMax() ? null : (string) $attribute->getNumberMax(), 'decimals_allowed' => (bool) $attribute->isDecimalsAllowed(), 'negative_allowed' => (bool) $attribute->isNegativeAllowed(), 'date_min' => $this->dateTimeNormalizer->normalize($attribute->getDateMin()), 'date_max' => $this->dateTimeNormalizer->normalize($attribute->getDateMax()), 'max_file_size' => null === $attribute->getMaxFileSize() ? null : (string) $attribute->getMaxFileSize(), 'minimum_input_length' => null === $attribute->getMinimumInputLength() ? null : (int) $attribute->getMinimumInputLength(), 'sort_order' => (int) $attribute->getSortOrder(), 'localizable' => (bool) $attribute->isLocalizable(), 'scopable' => (bool) $attribute->isScopable(), 'labels' => $this->translationNormalizer->normalize($attribute, $format, $context)];
}