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-paypal
Block
Express
Review
Details.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Paypal\Block\Express\Review
;
7
8
use
Magento\Sales\Model\Order\Address
;
9
16
class
Details
extends
\Magento\Checkout\Block\Cart\Totals
17
{
21
protected
$_address
;
22
28
public
function
getAddress
()
29
{
30
if
(empty($this->_address)) {
31
$this->_address = $this->
getQuote
()->getShippingAddress();
32
}
33
return
$this->_address
;
34
}
35
41
public
function
getTotals
()
42
{
43
return
$this->
getQuote
()->getTotals();
44
}
45
}
Magento\Paypal\Block\Express\Review
Definition:
BillingTest.php:6
Magento\Paypal\Block\Express\Review\Details\$_address
$_address
Definition:
Details.php:21
Magento\Paypal\Block\Express\Review\Details
Definition:
Details.php:16
Magento\Sales\Model\Order\Address
Definition:
RendererTest.php:6
Magento\Paypal\Block\Express\Review\Details\getTotals
getTotals()
Definition:
Details.php:41
Magento\Paypal\Block\Express\Review\Details\getAddress
getAddress()
Definition:
Details.php:28
Magento\Checkout\Block\Cart\Totals\getQuote
getQuote()
Definition:
Totals.php:200