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-backend
App
BackendApp.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Backend\App
;
8
14
class
BackendApp
15
{
19
private
$cookiePath;
20
24
private
$startupPage;
25
29
private
$aclResourceName;
30
36
public
function
__construct
(
37
$cookiePath,
38
$startupPage,
39
$aclResourceName
40
) {
41
$this->cookiePath = $cookiePath;
42
$this->startupPage = $startupPage;
43
$this->aclResourceName = $aclResourceName;
44
}
45
51
public
function
getCookiePath
()
52
{
53
return
$this->cookiePath;
54
}
55
61
public
function
getStartupPage
()
62
{
63
return
$this->startupPage;
64
}
65
71
public
function
getAclResource
()
72
{
73
return
$this->aclResourceName;
74
}
75
}
Magento\Backend\App\BackendApp\getCookiePath
getCookiePath()
Definition:
BackendApp.php:51
Magento\Backend\App\BackendApp\getAclResource
getAclResource()
Definition:
BackendApp.php:71
Magento\Backend\App\BackendApp
Definition:
BackendApp.php:14
Magento\Backend\App\BackendApp\getStartupPage
getStartupPage()
Definition:
BackendApp.php:61
Magento\Backend\App\BackendApp\__construct
__construct( $cookiePath, $startupPage, $aclResourceName)
Definition:
BackendApp.php:36
Magento\Backend\App
Definition:
AbstractActionTest.php:6