![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-backend/App/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Backend\App; /** * Backend Application which uses Magento Backend authentication process * @api * @since 100.0.2 */ class BackendApp { /** * @var null */ private $cookiePath; /** * @var null */ private $startupPage; /** * @var null */ private $aclResourceName; /** * @param string $cookiePath * @param string $startupPage * @param string $aclResourceName */ public function __construct( $cookiePath, $startupPage, $aclResourceName ) { $this->cookiePath = $cookiePath; $this->startupPage = $startupPage; $this->aclResourceName = $aclResourceName; } /** * Cookie path for the application to set cookie to * * @return string */ public function getCookiePath() { return $this->cookiePath; } /** * Startup Page of the application to redirect after login * * @return string */ public function getStartupPage() { return $this->startupPage; } /** * ACL resource name to authorize access to * * @return string */ public function getAclResource() { return $this->aclResourceName; } }