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-vault
Controller
Cards
ListAction.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Vault\Controller\Cards
;
7
8
use
Magento\Customer\Model\Session
;
9
use
Magento\Framework\App\Action\Context
;
10
use
Magento\Framework\App\ResponseInterface
;
11
use
Magento\Framework\View\Result\PageFactory
;
12
use
Magento\Vault\Controller\CardsManagement
;
13
14
class
ListAction
extends
CardsManagement
15
{
19
private
$pageFactory;
20
26
public
function
__construct
(
27
Context
$context,
28
Session
$customerSession
,
29
PageFactory
$pageFactory
30
) {
31
parent::__construct($context,
$customerSession
);
32
$this->pageFactory = $pageFactory;
33
}
34
41
public
function
execute
()
42
{
43
$resultPage = $this->pageFactory->create();
44
$resultPage->getConfig()->getTitle()->set(
__
(
'Stored Payment Methods'
));
45
46
return
$resultPage;
47
}
48
}
Magento\Vault\Controller\Cards
Definition:
DeleteAction.php:6
Magento\Customer\Model\Session
Definition:
Storage.php:8
__
__()
Definition:
__.php:13
Magento\Framework\View\Result\PageFactory
Definition:
PageFactory.php:19
Magento\Customer\Model\Session
Definition:
Session.php:22
Magento\Vault\Controller\CardsManagement
Definition:
CardsManagement.php:14
Magento\Vault\Controller\Cards\ListAction
Definition:
ListAction.php:14
Magento\Framework\App\Action\Context
Definition:
Context.php:24
Magento\Vault\Controller\Cards\ListAction\execute
execute()
Definition:
ListAction.php:41
Magento\Vault\Controller\CardsManagement\$customerSession
$customerSession
Definition:
CardsManagement.php:19
Magento\Framework\App\ResponseInterface
Definition:
ResponseInterface.php:14
Magento\Vault\Controller\Cards\ListAction\__construct
__construct(Context $context, Session $customerSession, PageFactory $pageFactory)
Definition:
ListAction.php:26