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
framework
Notification
MessageInterface.php
Go to the documentation of this file.
1
<?php
9
namespace
Magento\Framework\Notification
;
10
19
interface
MessageInterface
20
{
21
const
SEVERITY_CRITICAL
= 1;
22
23
const
SEVERITY_MAJOR
= 2;
24
25
const
SEVERITY_MINOR
= 3;
26
27
const
SEVERITY_NOTICE
= 4;
28
34
public
function
getIdentity
();
35
41
public
function
isDisplayed
();
42
48
public
function
getText
();
49
55
public
function
getSeverity
();
56
}
Magento\Framework\Notification\MessageInterface\getIdentity
getIdentity()
Magento\Framework\Notification\MessageInterface\getText
getText()
Magento\Framework\Notification\MessageInterface\getSeverity
getSeverity()
Magento\Framework\Notification\MessageInterface\SEVERITY_CRITICAL
const SEVERITY_CRITICAL
Definition:
MessageInterface.php:21
Magento\Framework\Notification\MessageInterface\isDisplayed
isDisplayed()
Magento\Framework\Notification\MessageInterface\SEVERITY_MAJOR
const SEVERITY_MAJOR
Definition:
MessageInterface.php:23
Magento\Framework\Notification\MessageInterface\SEVERITY_NOTICE
const SEVERITY_NOTICE
Definition:
MessageInterface.php:27
Magento\Framework\Notification\MessageInterface
Definition:
MessageInterface.php:19
Magento\Framework\Notification
Definition:
MessageInterface.php:9
Magento\Framework\Notification\MessageInterface\SEVERITY_MINOR
const SEVERITY_MINOR
Definition:
MessageInterface.php:25