カスタム モジュールでMagento\Eav\Model\ResourceModel\Entity\Attributeの_processAttributeOptions() メソッドをオーバーライドしようとしました。ただし、関数はオーバーライドしません。これが私のコードです:
名前空間\モジュール名\etc\di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="Magento\Eav\Model\ResourceModel\Entity\Attribute" type="Namespace\Module_Name\Model\ResourceModel\Entity\Attribute" />
</config>
Namespace\Module_Name\Model\ResourceModel\Entity\Attribute
<?php
namespace Namespace\Module_Name\Model\ResourceModel\Entity;
class Attribute extends \Magento\Eav\Model\ResourceModel\Entity\Attribute
{
protected function _processAttributeOptions($object, $option)
{
//here is my custom code with core
}
}
Magento 2.2 でこのメソッドをオーバーライドするのを手伝ってください。