Одне з рішень - додати backend model
атрибут до свого атрибута, який використовується для форматування / перевірки значення атрибута перед збереженням та / або після завантаження.
Додайте бекенд-клас:
[
'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
]
Ось приклад вашого індивідуального класу \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;
}
}
Якщо ви хочете простий приклад такого класу, ви можете перевірити
\Magento\Customer\Model\Customer\Attribute\Backend\Website
- всі класи, які розширюються
\Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend
- класи в
backend_model
колонку в eav_attribute
табл
EDIT
Якщо ви хочете клас, який робить майже те саме, що ви хочете, ви можете подивитися на
SKU
перевірку атрибутів,
\Magento\Catalog\Model\Product\Attribute\Backend\Sku
я також додав метод у прикладі класу
EDIT
Ще одне рішення (можливо, не найкраще) - створити плагін для функції
\Magento\Eav\Helper\Data::getFrontendClasses
та додати сюди свій клас frontend, який можна перевірити попереду.