本文整理汇总了PHP中Pim\Bundle\CatalogBundle\Model\AttributeInterface::isUseableAsGridFilter方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeInterface::isUseableAsGridFilter方法的具体用法?PHP AttributeInterface::isUseableAsGridFilter怎么用?PHP AttributeInterface::isUseableAsGridFilter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pim\Bundle\CatalogBundle\Model\AttributeInterface
的用法示例。
在下文中一共展示了AttributeInterface::isUseableAsGridFilter方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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);
}
示例2:
function it_removes_indexes_for_attribute_when_removing_it($indexPurger, AttributeInterface $name, LifecycleEventArgs $args)
{
$name->isUseableAsGridFilter()->willReturn(true);
$name->getAttributeType()->willReturn('pim_catalog_text');
$name->isUnique()->willReturn(false);
$args->getEntity()->willReturn($name);
$indexPurger->purgeIndexesFromAttribute($name)->shouldBeCalled();
$this->postRemove($args);
}
示例3:
function it_logs_error_when_the_maximum_number_of_indexes_is_reached($collection, AttributeInterface $description, $namingUtility, $logger)
{
$description->getCode()->willReturn('description');
$description->getBackendType()->willReturn('varchar');
$description->isLocalizable()->willReturn(true);
$description->isScopable()->willReturn(false);
$description->isUseableAsGridFilter()->willReturn(true);
$description->getAttributeType()->willReturn('pim_catalog_textarea');
$namingUtility->getAttributeNormFields($description)->willReturn(['normalizedData.description-en_US', 'normalizedData.description-de_DE']);
$indexes = array_fill(0, 64, 'fake_index');
$collection->getIndexInfo()->willReturn($indexes);
$logger->error(Argument::any())->shouldBeCalled();
$collection->ensureIndex(Argument::any(), Argument::any())->shouldNotBeCalled();
$this->ensureIndexesFromAttribute($description);
}
示例4: ensureIndexesFromAttribute
/**
* Ensure indexes from attribute if needed
*
* @param AttributeInterface $attribute
*/
public function ensureIndexesFromAttribute(AttributeInterface $attribute)
{
if ($attribute->isUseableAsGridFilter() || AttributeTypes::IDENTIFIER === $attribute->getAttributeType() || $attribute->isUnique()) {
$this->indexCreator->ensureIndexesFromAttribute($attribute);
}
}