Como substituir function getAllowProducts()
a partir Magento\ConfigurableProduct\Block\Product\View\Type\Configurable.php
de Magento 2.
Desejo substituir a função acima, mas não obtendo alterações de função e nada exibe nenhum problema. Não há nenhum erro de exibição dentro do arquivo de log.
vou compartilhar meu código aqui,
registration.php
Arquivo,
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Test_Configuration',
__DIR__
);
pasta etc,
module.xml
código é
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Test_Configuration" setup_version="1.0.0"/>
</config>
eu tenho substituir bloco dentro do
di.xml
código é
<?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\ConfigurableProduct\Block\Product\View\Type\Configurable" type="Test\Configuration\Block\Outstock" />
</config>
Bloquear pasta,
Outstock.php
arquivo,
<?php
namespace Test\Configuration\Block;
class Outstock extends \Magento\ConfigurableProduct\Block\Product\View\Type\Configurable
{
public function getAllowProducts()
{
if (!$this->hasAllowProducts()) {
$products = [];
$skipSaleableCheck = $this->catalogProduct->getSkipSaleableCheck();
$allProducts = $this->getProduct()->getTypeInstance()->getUsedProducts($this->getProduct(), null);
foreach ($allProducts as $product) {
$products[] = $product;
}
$this->setAllowProducts($products);
}
return $this->getData('allow_products');
}
protected function _toHtml()
{
$this->setModuleName($this->extractModuleName('Magento\ConfigurableProduct\Block\Product\View\Type\Configurable'));
return parent::_toHtml();
}
}
não há exibição de erro nem geração de log para este arquivo e módulo está ativado. setup_module
entrada interna é gerada.
Qualquer sugestão para substituir a função do configurable.php
arquivo.
Obrigado.
Para a versão Magento2.1, você precisa substituir
Magento\Swatches\Block\Product\Renderer\Configurable
1) Crie um
di.xml
arquivo na pastaNamespace\Module\etc
2) Criar
Outstock.php
arquivo de bloco na pastaNamespace\Module\Block
fonte
Você precisa substituir
em vez de substituir
Arquivo.
fonte
Para substituir a função do arquivo configurable.php.
1) Primeiro crie o arquivo di.xml em Pasta Teste / Configuração / etc
2) Agora crie o arquivo Outstock.php Block na pasta Test \ Configuration \ Block
fonte