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-authorization
Model
UserContextInterface.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Authorization\Model
;
8
15
interface
UserContextInterface
16
{
20
const
USER_TYPE_INTEGRATION
= 1;
21
const
USER_TYPE_ADMIN
= 2;
22
const
USER_TYPE_CUSTOMER
= 3;
23
const
USER_TYPE_GUEST
= 4;
32
public
function
getUserId
();
33
40
public
function
getUserType
();
41
}
Magento\Authorization\Model\UserContextInterface\USER_TYPE_GUEST
const USER_TYPE_GUEST
Definition:
UserContextInterface.php:23
Magento\Authorization\Model\UserContextInterface
Definition:
UserContextInterface.php:15
Magento\Authorization\Model\UserContextInterface\getUserId
getUserId()
Magento\Authorization\Model
Magento\Authorization\Model\UserContextInterface\USER_TYPE_ADMIN
const USER_TYPE_ADMIN
Definition:
UserContextInterface.php:21
Magento\Authorization\Model\UserContextInterface\USER_TYPE_INTEGRATION
const USER_TYPE_INTEGRATION
Definition:
UserContextInterface.php:20
Magento\Authorization\Model\UserContextInterface\USER_TYPE_CUSTOMER
const USER_TYPE_CUSTOMER
Definition:
UserContextInterface.php:22
Magento\Authorization\Model\UserContextInterface\getUserType
getUserType()