| Current Path : /home/rtorresani/www/vendor/magento/module-catalog-inventory/Model/Config/Backend/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog-inventory/Model/Config/Backend/Backorders.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Catalog Inventory Backorders Config Backend Model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
namespace Magento\CatalogInventory\Model\Config\Backend;
class Backorders extends AbstractValue
{
/**
* After change Catalog Inventory Backorders value process
*
* @return $this
*/
public function afterSave()
{
if ($this->isValueChanged() && (
$this->getOldValue() == \Magento\CatalogInventory\Model\Stock::BACKORDERS_NO
|| $this->getValue() == \Magento\CatalogInventory\Model\Stock::BACKORDERS_NO
)
) {
$this->_stockIndexerProcessor->markIndexerAsInvalid();
}
return parent::afterSave();
}
}