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-wishlist
Observer
CustomerLogin.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Wishlist\Observer
;
8
9
use
Magento\Framework\Event\Observer
;
10
use
Magento\Framework\Event\ObserverInterface
;
11
use
Magento\Wishlist\Helper\Data
;
12
17
class
CustomerLogin
implements
ObserverInterface
18
{
22
protected
$wishlistData
;
23
27
public
function
__construct
(
Data
$wishlistData
)
28
{
29
$this->wishlistData =
$wishlistData
;
30
}
31
36
public
function
execute
(
Observer
$observer
)
37
{
38
$this->wishlistData->calculate();
39
}
40
}
Magento\Wishlist\Observer
Definition:
AddToCart.php:7
Magento\Framework\Event\ObserverInterface
Definition:
ObserverInterface.php:16
$observer
$observer
Definition:
second_website_with_second_currency.php:38
Magento\Framework\Event\Observer
Definition:
Collection.php:12
Magento\Wishlist\Observer\CustomerLogin\$wishlistData
$wishlistData
Definition:
CustomerLogin.php:22
Magento\Wishlist\Observer\CustomerLogin
Definition:
CustomerLogin.php:17
Magento\Wishlist\Helper\Data
Definition:
Data.php:20
Magento\Wishlist\Observer\CustomerLogin\execute
execute(Observer $observer)
Definition:
CustomerLogin.php:36
Magento\Wishlist\Observer\CustomerLogin\__construct
__construct(Data $wishlistData)
Definition:
CustomerLogin.php:27
Magento\Framework\Event\Observer
Definition:
Observer.php:14