Anladığım kadarıyla ifconfig
hareket halindeyken kullanamazsın . Sınıfta Magento\Framework\View\Layout\Reader\Block.php
özellik için bir kontrol var ifconfig
:
$configPath = (string)$currentElement->getAttribute('ifconfig');
kaynak:
https://github.com/magento/magento2/blob/2.3-develop/lib/internal/Magento/Framework/View/Layout/Reader/Block.php
Ancak taşıma bloğunda aslında özelliği kontrol etmez ifconfig
:
protected function scheduleMove(Layout\ScheduledStructure $scheduledStructure, Layout\Element $currentElement)
{
$elementName = (string)$currentElement->getAttribute('element');
$destination = (string)$currentElement->getAttribute('destination');
$alias = (string)$currentElement->getAttribute('as') ?: '';
if ($elementName && $destination) {
list($siblingName, $isAfter) = $this->beforeAfterToSibling($currentElement);
$scheduledStructure->setElementToMove(
$elementName,
[$destination, $siblingName, $isAfter, $alias]
);
} else {
throw new \Magento\Framework\Exception\LocalizedException(
new \Magento\Framework\Phrase('Element name and destination must be specified.')
);
}
return $this;
}
https://github.com/magento/magento2/blob/2.3-develop/lib/internal/Magento/Framework/View/Layout/Reader/Move.php#L49
Theroy'da, blokta bir ifconfig zaten varsa, çünkü blok oluşturulmayacak ve bu nedenle taşınmayacaksa, ifconfig'in hareket halindeyken gerekmez.
Umarım mantıklıdır.