Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions
BackendApp Class Reference

Public Member Functions

 __construct ( $cookiePath, $startupPage, $aclResourceName)
 
 getCookiePath ()
 
 getStartupPage ()
 
 getAclResource ()
 

Detailed Description

Backend Application which uses Magento Backend authentication process @api

Since
100.0.2

Definition at line 14 of file BackendApp.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $cookiePath,
  $startupPage,
  $aclResourceName 
)
Parameters
string$cookiePath
string$startupPage
string$aclResourceName

Definition at line 36 of file BackendApp.php.

40  {
41  $this->cookiePath = $cookiePath;
42  $this->startupPage = $startupPage;
43  $this->aclResourceName = $aclResourceName;
44  }

Member Function Documentation

◆ getAclResource()

getAclResource ( )

ACL resource name to authorize access to

Returns
string

Definition at line 71 of file BackendApp.php.

72  {
73  return $this->aclResourceName;
74  }

◆ getCookiePath()

getCookiePath ( )

Cookie path for the application to set cookie to

Returns
string

Definition at line 51 of file BackendApp.php.

52  {
53  return $this->cookiePath;
54  }

◆ getStartupPage()

getStartupPage ( )

Startup Page of the application to redirect after login

Returns
string

Definition at line 61 of file BackendApp.php.

62  {
63  return $this->startupPage;
64  }

The documentation for this class was generated from the following file: