本文整理汇总了PHP中Pim\Component\Catalog\Model\AttributeInterface::getLabel方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeInterface::getLabel方法的具体用法?PHP AttributeInterface::getLabel怎么用?PHP AttributeInterface::getLabel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Component\Catalog\Model\AttributeInterface
的用法示例。
在下文中一共展示了AttributeInterface::getLabel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function it_provides_available_axis_as_a_sorted_choice($attRepository, AttributeInterface $attribute1, AttributeInterface $attribute2)
{
$attribute1->getId()->willReturn(1);
$attribute1->getLabel()->willReturn('Foo');
$attribute2->getId()->willReturn(2);
$attribute2->getLabel()->willReturn('Bar');
$attRepository->findAllAxis()->willReturn([$attribute1, $attribute2]);
$this->getAvailableAxisChoices()->shouldReturn([2 => 'Bar', 1 => 'Foo']);
}
示例2: prepareAttributeView
/**
* Prepare attribute view
*
* @param AttributeInterface $attribute
* @param ProductValueInterface $value
* @param FormView $view
*
* @return array
*/
protected function prepareAttributeView(AttributeInterface $attribute, ProductValueInterface $value, FormView $view)
{
$attributeView = ['id' => $attribute->getId(), 'isRemovable' => $value->isRemovable(), 'code' => $attribute->getCode(), 'label' => $attribute->getLabel(), 'sortOrder' => $attribute->getSortOrder(), 'allowValueCreation' => in_array($attribute->getAttributeType(), $this->choiceAttributeTypes), 'locale' => $value->getLocale()];
if ($attribute->isScopable()) {
$attributeView['values'] = array_merge($this->getAttributeValues($attribute, $value->getLocale()), [$value->getScope() => $view]);
ksort($attributeView['values']);
} else {
$attributeView['value'] = $view;
}
$classes = $this->getAttributeClasses($attribute);
if (!empty($classes)) {
$attributeView['classes'] = $classes;
}
return $attributeView;
}