Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-customer
Model
Observer
Grid.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Customer\Model\Observer
;
7
8
use
Magento\Customer\Model\ResourceModel\Customer\Grid
as CustomerGrid;
9
13
class
Grid
14
{
18
protected
$customerGrid
;
19
23
public
function
__construct
(
24
CustomerGrid $grid
25
) {
26
$this->customerGrid = $grid;
27
}
28
34
public
function
syncCustomerGrid
()
35
{
36
$this->customerGrid->syncCustomerGrid();
37
}
38
}
Magento\Customer\Model\Observer
Definition:
Grid.php:6
Magento\Customer\Model\Observer\Grid\$customerGrid
$customerGrid
Definition:
Grid.php:18
Magento\Customer\Model\Observer\Grid\syncCustomerGrid
syncCustomerGrid()
Definition:
Grid.php:34
Magento\Customer\Model\Observer\Grid\__construct
__construct(CustomerGrid $grid)
Definition:
Grid.php:23
Magento\Customer\Model\Observer\Grid
Definition:
Grid.php:13
Magento\Customer\Model\ResourceModel\Customer\Grid
Definition:
Grid.php:16