Jednym z rozwiązań jest dodanie backend model
do atrybutu atrybutu, który służy do formatowania / sprawdzania wartości atrybutu przed zapisaniem i / lub po załadowaniu.
Dodaj klasę zaplecza:
[
'type' => 'int',
'backend' => '\Foo\Bar\Model\Attribute\Backend\YourAttribute',
'frontend' => '',
'label' => 'XXXX',
'input' => 'text',
'frontend_class' => 'validate-greater-than-zero',
'source' => '',
'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_GLOBAL,
'visible' => true,
'required' => true,
'user_defined' => false,
'default' => 0,
'searchable' => false,
'filterable' => true,
'comparable' => false,
'visible_on_front' => false,
'used_in_product_listing' => true,
'unique' => false
]
Oto przykład Twojej niestandardowej klasy \Foo\Bar\Model\Attribute\Backend\YourAttribute
<?php
namespace Foo\Bar\Model\Attribute\Backend;
/**
* Class YourAttribute
*/
class YourAttribute extends \Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend
{
/**
* @var int $minimumValueLength
*/
protected $minimumValueLength = 0;
/**
* @param \Magento\Framework\DataObject $object
*
* @return $this
*/
public function afterLoad($object)
{
// your after load logic
return parent::afterLoad($object);
}
/**
* @param \Magento\Framework\DataObject $object
*
* @return $this
*/
public function beforeSave($object)
{
$this->validateLength($object);
return parent::beforeSave($object);
}
/**
* Validate length
*
* @param \Magento\Framework\DataObject $object
*
* @return bool
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function validateLength($object)
{
/** @var string $attributeCode */
$attributeCode = $this->getAttribute()->getAttributeCode();
/** @var int $value */
$value = (int)$object->getData($attributeCode);
/** @var int $minimumValueLength */
$minimumValueLength = $this->getMinimumValueLength();
if ($this->getAttribute()->getIsRequired() && $value <= $minimumValueLength) {
throw new \Magento\Framework\Exception\LocalizedException(
__('The value of attribute "%1" must be greater than %2', $attributeCode, $minimumValueLength)
);
}
return true;
}
/**
* Get minimum attribute value length
*
* @return int
*/
public function getMinimumValueLength()
{
return $this->minimumValueLength;
}
}
Jeśli chcesz prosty przykład tego rodzaju zajęć, możesz to sprawdzić
\Magento\Customer\Model\Customer\Attribute\Backend\Website
- wszystkie klasy, które rozszerzają
\Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend
- klasy do
backend_model
kolumny w eav_attribute
tabeli
EDYCJA
Jeśli chcesz mieć klasę, która robi prawie to samo, co chcesz, możesz rzucić okiem na
SKU
sprawdzanie poprawności atrybutu.
\Magento\Catalog\Model\Product\Attribute\Backend\Sku
Dodałem również metodę do przykładowej klasy
EDYCJA
Innym rozwiązaniem (może nie najlepszym) jest utworzenie wtyczki do funkcji
\Magento\Eav\Helper\Data::getFrontendClasses
i dodanie tutaj klasy frontendu, którą można zweryfikować z przodu.