![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-sales/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Sales\Model; /** * Sales entity grids indexing observer. * * Performs handling of events and cron jobs related to indexing * of Order, Invoice, Shipment and Creditmemo grids. */ class GridAsyncInsert { /** * Entity grid model. * * @var \Magento\Sales\Model\ResourceModel\GridInterface */ protected $entityGrid; /** * Global configuration storage. * * @var \Magento\Framework\App\Config\ScopeConfigInterface */ protected $globalConfig; /** * @param \Magento\Sales\Model\ResourceModel\GridInterface $entityGrid * @param \Magento\Framework\App\Config\ScopeConfigInterface $globalConfig */ public function __construct( \Magento\Sales\Model\ResourceModel\GridInterface $entityGrid, \Magento\Framework\App\Config\ScopeConfigInterface $globalConfig ) { $this->entityGrid = $entityGrid; $this->globalConfig = $globalConfig; } /** * Handles asynchronous insertion of the new entity into * corresponding grid during cron job. * * Also method is used in the next events: * * - config_data_dev_grid_async_indexing_disabled * * Works only if asynchronous grid indexing is enabled * in global settings. * * @return void */ public function asyncInsert() { if ($this->globalConfig->getValue('dev/grid/async_indexing')) { $this->entityGrid->refreshBySchedule(); } } }